Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 <?xml version="1.0"?>
3 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
5 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="setTimeout(boom, 30)">
7 <script>
8 function boom()
9 {
10 document.documentElement.appendChild(document.getElementById('TC'));
11 document.getElementById('TI').hidden = false;
13 document.documentElement.removeAttribute("class");
14 }
15 </script>
18 <tree flex="1">
19 <treecols>
20 <treecol label="Name" flex="1"/>
21 </treecols>
22 <treechildren id="TC">
23 <treeitem>
24 <treerow>
25 <treecell label="First treecell"/>
26 </treerow>
27 </treeitem>
28 </treechildren>
29 </tree>
30 <treeitem id="TI" hidden="true"/>
31 </window>