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> |
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 | -moz-column-gap: 0; |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | .ocontainer { |
michael@0 | 13 | height: 0; |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | .overflow { |
michael@0 | 17 | height: 5in; |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | </style> |
michael@0 | 21 | |
michael@0 | 22 | <script> |
michael@0 | 23 | function boom() |
michael@0 | 24 | { |
michael@0 | 25 | var newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
michael@0 | 26 | var colset = document.getElementById("colset"); |
michael@0 | 27 | colset.insertBefore(newDiv, colset.childNodes[1]); |
michael@0 | 28 | } |
michael@0 | 29 | </script> |
michael@0 | 30 | |
michael@0 | 31 | </head> |
michael@0 | 32 | |
michael@0 | 33 | <body onload="boom();"> |
michael@0 | 34 | |
michael@0 | 35 | <div id="colset"><div class="ocontainer"><div class="overflow"></div></div> </div> |
michael@0 | 36 | |
michael@0 | 37 | </body> |
michael@0 | 38 | </html> |