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 <html class="reftest-wait">
3 <head>
7 <script>
9 function foo()
10 {
11 setTimeout(bar, 30);
12 }
14 function bar()
15 {
16 document.getElementById("TT").style.position = "absolute";
17 document.documentElement.removeAttribute("class");
18 }
20 </script>
22 </head>
24 <body onload="foo();">
27 <div id="TT"><div style="position: fixed;"><div style="display: -moz-box;"><div style="float: left;"></div></div></div></div>
29 </body>
31 </html>