309732-1.xul 742 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="setTimeout(boom, 30)">
  4. <script>
  5. function boom()
  6. {
  7. document.documentElement.appendChild(document.getElementById("TC"));
  8. document.documentElement.appendChild(document.getElementById("TI"));
  9. document.documentElement.removeAttribute("class");
  10. }
  11. </script>
  12. <tree flex="1">
  13. <treecols>
  14. <treecol label="Name"/>
  15. </treecols>
  16. <treechildren id="TC">
  17. <treeitem id="TI">
  18. <treerow>
  19. <treecell label="First treecell"/>
  20. </treerow>
  21. </treeitem>
  22. </treechildren>
  23. </tree>
  24. </window>