Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
2 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(doe, 30);" class="reftest-wait">
3 <popupgroup id="a"/>
4 <listcols>
5 <nativescrollbar id="c">
6 <treecols/>
7 </nativescrollbar>
8 </listcols>
10 <script>
11 function doe() {
12 document.documentElement.id = "true";
13 document.documentElement.removeChild(document.getElementById('a'));
14 var ne = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'popupgroup');
15 document.documentElement.appendChild(ne);
16 document.getElementById('c').appendChild(document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'treecols'));
17 document.documentElement.removeChild(ne);
18 document.documentElement.removeAttribute("class");
19 }
20 </script>
21 </window>