Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>