1 2 3 4 5 6 7 8 9 10 11
<!-- Must be in quirks mode --> <html> <body> <script> var docEl = document.documentElement; var b = document.body; docEl.removeChild(b); docEl.appendChild(document.createElement("table")); docEl.offsetWidth; </script> </html>