xbl-children-2.xhtml 608 B

1234567891011121314151617181920212223242526272829
  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>
  12. <xbl:children class="forced">
  13. FAIL
  14. </xbl:children>
  15. <xbl:children />
  16. <script>
  17. var third = document.body.children[2];
  18. third.appendChild(document.createTextNode("FAIL"));
  19. var fourth = document.createElementNS("http://www.mozilla.org/xbl", "children");
  20. fourth.appendChild(document.createTextNode("FAIL"));
  21. document.body.appendChild(fourth);
  22. </script>
  23. </body>
  24. </html>