1 2 3 4 5 6 7 8 9 10
<!DOCTYPE HTML> <html style="width:1px"> <body><span><span id="y"></span>a b</span> <script> var y = document.getElementById("y"); document.documentElement.offsetHeight; y.appendChild(document.createTextNode("c d")); </script> </body> </html>