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">
2 <head>
3 <script>
5 function boom()
6 {
7 document.getElementById("ta").style.overflow = "scroll";
8 setTimeout(boom2, 12);
9 }
11 function boom2()
12 {
13 document.getElementById("ta").style.overflow = "";
14 setTimeout(boom, 12);
15 }
17 function cont()
18 {
19 document.documentElement.removeAttribute("class");
20 }
21 </script>
22 </head>
24 <body onload="boom(); setTimeout(cont, 800);">
26 <textarea id="ta">x</textarea>
28 </body>
29 </html>