366203-1.xhtml (885B)
1 <?xml version="1.0"?> 2 3 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> 4 5 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom, 500);"> 6 7 <script> 8 function boom() 9 { 10 tc1 = document.getElementById("tc1"); 11 tc1.parentNode.removeChild(tc1); 12 } 13 </script> 14 15 <tree rows="6"> 16 <treecols> 17 <treecol id="firstname" label="First Name" primary="true" style="-moz-box-flex: 3"/> 18 <treecol id="lastname" label="Last Name" style="-moz-box-flex: 7"/> 19 </treecols> 20 21 <treechildren id="tc1"> 22 <treeitem container="true" open="true"> 23 <treerow> 24 <treecell label="Foo"/> 25 </treerow> 26 </treeitem> 27 </treechildren> 28 29 <treechildren> 30 <treeitem container="true" open="true"> 31 <treerow> 32 <treecell label="Bar"/> 33 </treerow> 34 </treeitem> 35 </treechildren> 36 </tree> 37 38 39 </window>