1398500-1.html (494B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 body { overflow: scroll; border: 1px solid green; } 6 </style> 7 <script> 8 onload = function() { 9 var newBody = document.createElement("body"); 10 newBody.textContent = "This element should not have scrollbars!"; 11 document.documentElement.appendChild(newBody); 12 window.nooptimize = newBody.offsetWidth; 13 document.body.remove(); 14 } 15 </script> 16 </head> 17 <body> 18 First body 19 </body> 20 </html>