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 <script>
4 function doe2() {
5 document.getElementById('b').style.position = 'static';
6 document.getElementById('a').setAttribute('style', 'position: absolute; -moz-column-count: 2;');
7 document.documentElement.removeAttribute("class");
8 }
9 </script>
10 </head>
11 <style>body * {border: 1px solid black;}</style>
12 <body onload="doe2();">
13 <div style="width: 500px;border: 1px solid black;">
14 <div style="display: inline-block; width: 100px; height: 100px;"></div>
15 <span style="position: absolute;"></span>
16 mmmmmmmmmmmmmmmmmmmmmmm
18 <span id="a">mmmmmmmmmmmmmmmmmmmm
20 <div id="b" style="display: inline-block; width: 240px; height: 100px; position: absolute;"></div>
21 m mm mm mm mm mm mm mm mm m
22 <span style="float: left;">m</span>
23 </span>
24 </div>
25 </body>
27 </html>