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 <style>
5 #colset {
6 width: 300pt;
7 height: 2in;
8 -moz-column-count: 3;
9 }
11 .container {
12 height: 1in;
13 }
15 .b6 {
16 height: 10in;
17 }
19 .c3 {
20 position: absolute;
21 }
23 .c4 {
24 height: 3in;
25 }
27 </style>
29 <script>
31 function boom()
32 {
33 document.getElementById("x").setAttribute("class", "c4");
34 setTimeout(boom2, 10);
35 }
37 function boom2()
38 {
39 document.getElementById("x").setAttribute("class", "");
40 setTimeout(boom3, 10);
41 }
43 function boom3()
44 {
45 document.documentElement.removeAttribute("class");
46 }
48 </script>
49 </head>
51 <body onload="boom();">
53 <div id="colset">
54 <div id="x"></div>
55 <div class="container">
56 <div class="b6"></div>
57 <div>
58 <div class="c3"></div>
59 </div>
60 </div>
61 </div>
63 </body>
64 </html>