309732-2.xul 764 B

1234567891011121314151617181920212223242526272829303132
  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.getElementById('TI').hidden = false;
  9. document.documentElement.removeAttribute("class");
  10. }
  11. </script>
  12. <tree flex="1">
  13. <treecols>
  14. <treecol label="Name" flex="1"/>
  15. </treecols>
  16. <treechildren id="TC">
  17. <treeitem>
  18. <treerow>
  19. <treecell label="First treecell"/>
  20. </treerow>
  21. </treeitem>
  22. </treechildren>
  23. </tree>
  24. <treeitem id="TI" hidden="true"/>
  25. </window>