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 xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <style>
5 body {
6 height: 50px;
7 -moz-column-count: 2;
8 }
9 .container {
10 height: 10px;
11 }
12 .overflow {
13 height: 100px;
14 }
15 .bb {
16 border-bottom: solid 4px magenta;
17 }
19 </style>
21 <script>
23 function boom()
24 {
25 document.getElementById("x").setAttribute("class", "");
26 document.getElementById("y").setAttribute("class", "bb");
27 }
29 </script>
30 </head>
32 <body onload="boom();">
33 <div class="container"><div class="overflow" id="x"></div></div>
34 <div id="y"></div>
35 <div class="container"><div class="overflow"></div></div>
36 </body>
38 </html>