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