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 <!DOCTYPE HTML>
2 <html class="reftest-wait">
3 <head>
4 <script>
6 function boom()
7 {
8 document.getElementById("b").style.overflow = "hidden";
9 setTimeout(boom2, 30);
10 }
12 function boom2()
13 {
14 document.getElementById("g").style.display = "none";
15 document.documentElement.removeAttribute("class");
16 }
18 </script>
20 </head>
22 <body onload="boom();">
24 <div style="float: left;">
25 <div id="b" style="display: -moz-box; border: 1px solid black;"><img width="16" height="16" src="../../../testing/crashtest/images/tree.gif"/></div>
26 <div style="position: fixed;"></div>
27 </div>
29 <div id="g" style="display: inline"><div></div></div>
31 </body>
33 </html>