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>
4 <script>
6 function init()
7 {
8 var c1 = document.getElementById("c1");
9 var f1 = document.getElementById("f1");
10 var a1 = document.getElementById("a1");
12 function first()
13 {
14 f1.style.display = "-moz-popup";
15 c1.style.height = "2em";
16 window.status = "A";
17 }
19 function second()
20 {
21 c1.style.position = "absolute";
22 c1.style.overflow = "auto";
23 a1.style.position = "absolute";
24 window.status = "B";
25 }
27 first();
28 document.documentElement.offsetHeight;
29 second();
30 }
32 </script>
33 </head>
35 <body onload="init();">
36 <div id="c1">
37 <div id="f1">
38 <table>
39 <tr>
40 <td>
42 <span id="a1">Foo</span>
43 </td>
44 </tr>
45 </table>
46 </div>
47 </div>
48 </body>
50 </html>