Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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>