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>
2 <head>
3 <style>
5 .colset {
6 -moz-column-count: 2;
7 -moz-column-width: 50px;
8 float: left;
9 border: 2px solid black;
10 height: 10em;
11 font: 12px monospace;
12 }
14 #t {
15 display: inline-block;
16 background: lightgreen;
17 height: 7em;
18 width: 29px;
19 }
21 </style>
22 </head>
24 <body onload="document.getElementById('t').style.width = '30px';">
26 <div class="colset">The quick <span><div id="t"></div>brown</span></div>
28 </body></html>