Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <html xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:xbl="http://www.mozilla.org/xbl">
3 <head>
4 <style>
5 .forced { display:block; }
6 </style>
7 </head>
8 <body>
9 <xbl:children>
10 FAIL
11 </xbl:children>
13 <xbl:children class="forced">
14 FAIL
15 </xbl:children>
17 <xbl:children />
19 <script>
20 var third = document.body.children[2];
21 third.appendChild(document.createTextNode("FAIL"));
23 var fourth = document.createElementNS("http://www.mozilla.org/xbl", "children");
24 fourth.appendChild(document.createTextNode("FAIL"));
25 document.body.appendChild(fourth);
26 </script>
27 </body>
28 </html>