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 version="1.0"?>
2 <?xml-stylesheet href="chrome://global/skin/global.css"?>
4 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
5 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6 onload="boom();">
9 <bindings xmlns="http://www.mozilla.org/xbl">
11 <binding id="chil"><content><children/></content></binding>
13 <binding id="ichil"><content>
14 <xul:hbox style="-moz-binding: url(#chil)"><children/></xul:hbox>
15 </content></binding>
17 </bindings>
20 <script type="text/javascript">
22 function boom()
23 {
24 document.getElementById("inner").removeChild(document.getElementById("lbb"));
25 document.getElementById("outer").style.MozBinding = "";
26 }
28 </script>
31 <hbox id="outer" style="-moz-binding: url(#chil)"><hbox id="inner" style="-moz-binding: url(#ichil)"><listboxbody id="lbb" /></hbox></hbox>
34 </window>