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 id="ss" type="text/css">
5 #o {
6 height: 65px;
7 }
9 </style>
10 <script type="text/javascript">
12 function boom()
13 {
14 document.getElementById("ss").disabled = true;
15 document.documentElement.offsetHeight;
16 document.getElementById("ss").disabled = false;
17 }
19 </script>
20 </head>
21 <body onload="boom();">
23 <div style="-moz-column-width: 0;">
24 <colgroup></colgroup>
25 <div>
26 <div id="o" style="float: left;"></div>
27 <div style="clear: both;">A B<div style="float: left;"></div></div>
28 </div>
29 </div>
31 </body>
32 </html>