layout/reftests/bugs/482592-1a.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!DOCTYPE html>
michael@0 2 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
michael@0 3 <head>
michael@0 4 <bindings xmlns="http://www.mozilla.org/xbl">
michael@0 5 <binding id="a">
michael@0 6 <content>
michael@0 7 <html:span xmlns:html="http://www.w3.org/1999/xhtml"
michael@0 8 id="hasAfter"><children/></html:span>
michael@0 9 </content>
michael@0 10 </binding>
michael@0 11 </bindings>
michael@0 12 <style>
michael@0 13 #hasAfter::after { content: "y"; }
michael@0 14 #l { display: none; }
michael@0 15 </style>
michael@0 16 <script>
michael@0 17 function doTest() {
michael@0 18 var l = document.getElementById("l");
michael@0 19 l.parentNode.insertBefore(document.createTextNode("x"), l);
michael@0 20 document.documentElement.removeAttribute("class");
michael@0 21 }
michael@0 22 </script>
michael@0 23 </head>
michael@0 24 <body onload="doTest()">
michael@0 25 <div style="-moz-binding: url(#a)"><span id="l"></span></div>
michael@0 26 </body>
michael@0 27 </html>

mercurial