363791-1.xhtml (919B)
1 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> 2 3 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 4 onload="setTimeout(boom, 30);" class="reftest-wait"> 5 6 <script> 7 8 function boom() 9 { 10 var tree = document.getElementById("tree"); 11 var treecols = document.getElementById("treecols"); 12 var treechildren = document.getElementById("treechildren"); 13 14 tree.appendChild(treechildren); // no real change 15 16 function boom2() { 17 treecols.parentNode.removeChild(treecols); 18 document.documentElement.removeAttribute("class"); 19 } 20 21 setTimeout(boom2, 30); 22 } 23 24 </script> 25 26 27 <tree rows="6" id="tree"> 28 29 <treecols id="treecols"> 30 <treecol id="firstname" label="First Name"/> 31 </treecols> 32 33 <treechildren id="treechildren"> 34 <treeitem> 35 <treerow> 36 <treecell label="Bob"/> 37 </treerow> 38 </treeitem> 39 </treechildren> 40 41 </tree> 42 43 44 </window>