604843.html (702B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 document.documentElement.offsetHeight; 9 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; 16 17 var div = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 18 c.insertBefore(div, t2); 19 document.documentElement.offsetHeight; 20 } 21 22 </script> 23 </head> 24 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>