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