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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
7 {
8 document.documentElement.offsetHeight;
10 var c = document.getElementById("c");
11 var t1 = document.createTextNode("x x x x x x x x x x x x x x x x x x x x");
12 var t2 = document.createTextNode("y y y y y y y y y y y y y y y y y y y y y");
13 c.appendChild(t1);
14 c.appendChild(t2);
15 document.documentElement.offsetHeight;
17 var div = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
18 c.insertBefore(div, t2);
19 document.documentElement.offsetHeight;
20 }
22 </script>
23 </head>
25 <body onload="boom();" style="width: 5ch; font-family: monospace; margin: 0;">
26 <table><tbody><tr><td id="c"></td></tr></tbody></table>
27 </body>
28 </html>