summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-selectors/sibling-combinators-on-anon-content-2.xhtml
blob: c38ba9cef5a64c7bff60536bbc3058f40b6f0345 (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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" reftest-wait="">
  <head>
    <bindings xmlns="http://www.mozilla.org/xbl"
              xmlns:html="http://www.w3.org/1999/xhtml">
      <binding id="x">
        <content>
          <html:span class="a">Some text</html:span>
          <html:span class="b">This should be green</html:span>
          <children/>
        </content>
        <implementation>
          <method name="nixText">
            <body>
              document.getAnonymousNodes(this)[0].textContent = "";
            </body>
          </method>
        </implementation>
      </binding>
    </bindings>
    <style>
      #foo { -moz-binding: url("#x"); }
      .a:empty + .b { color: green; }
    </style>
  </head>
  <body>
    <span id="foo"></span>
    <script>
      window.onload = function() {
        var el = document.getElementById("foo");
        // Flush its layout
        el.offsetWidth;
        el.nixText();
        document.documentElement.className = "";
      }
    </script>
  </body>
</html>