344228-1.xhtml (511B)
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom, 30);" class="reftest-wait"> 2 3 <script> 4 5 function remove(q1) { q1.parentNode.removeChild(q1); } 6 7 function boom() 8 { 9 var x = document.getElementById("x"); 10 var y = document.getElementById("y"); 11 remove(x); 12 remove(y); 13 14 document.documentElement.removeAttribute("class"); 15 } 16 17 </script> 18 19 <tree> 20 <treechildren id="y"/> 21 <richlistbox> 22 <hbox id="x"/> 23 <menulist/> 24 </richlistbox> 25 </tree> 26 27 </window>