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 var i = 0;
7 function boom()
8 {
9 ++i;
11 while (document.body.firstChild)
12 document.body.removeChild(document.body.firstChild);
14 var table = document.createElement("table");
15 document.body.appendChild(table);
16 document.documentElement.style.color = (i % 2) ? "red" : "magenta";
17 table.setAttribute("align", "right");
19 setTimeout(boom, 15);
20 }
22 function cont()
23 {
24 document.documentElement.removeAttribute("class");
25 }
27 </script>
28 </head>
29 <body onload="boom(); setTimeout(cont, 1000);"></body>
30 </html>