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