viewport-units-scrollbars-crash.html (373B)
1 <!doctype html> 2 <style> 3 body { 4 overflow: scroll; 5 height: 470px; 6 width: 520px; 7 } 8 #spacer { 9 height: 10000px; 10 } 11 </style> 12 <html> 13 <body> 14 Pass if no crash. 15 <div id=spacer></div> 16 </body> 17 </html> 18 <script> 19 document.body.offsetTop; 20 document.body.style.padding = "10px"; 21 document.documentElement.style.overflow = "scroll"; 22 </script>