invalid-needs-layout-crash.html (343B)
1 <!DOCTYPE html> 2 <style> 3 #target::-webkit-scrollbar { position: absolute; } 4 #target.crash::-webkit-scrollbar { right: 0 } 5 </style> 6 <div id="target" style="width: 100px; height: 100px; overflow: auto;"><div style="height: 200px;"></div></div> 7 <script> 8 document.body.offsetTop; 9 document.getElementById('target').classList.add('crash'); 10 </script>