391178-2.xul 704 B

123456789101112131415161718192021
  1. <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
  2. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" class="reftest-wait">
  3. <tree id="a" style="position: fixed;">
  4. <box style=" display: -moz-box; position: fixed;">
  5. <treecol style=" display: -moz-box;"/>
  6. </box>
  7. <box style="position: fixed;">
  8. <treechildren style="display: -moz-box; position: absolute;"/>
  9. </box>
  10. </tree>
  11. <script xmlns="http://www.w3.org/1999/xhtml">
  12. function removestyles(){
  13. document.getElementById('a').removeAttribute('style');
  14. document.documentElement.removeAttribute("class");
  15. }
  16. setTimeout(removestyles, 100);
  17. </script>
  18. </window>