overflow-hidden-smooth-scroll-crash.html (634B)
1 <!DOCTYPE html> 2 <html class="test-wait"> 3 <link rel="help" href="https://drafts.csswg.org/cssom-view/#concept-smooth-scroll"> 4 <link rel="help" href="https://crbug.com/356436619"> 5 <body style="font-size: 4000px"> 6 A 7 <div id=container style="overflow: hidden"> 8 B 9 <div style="overflow: scroll">C</div> 10 </div> 11 </div> 12 </body> 13 <script> 14 function doTest() { 15 container.scrollLeft = 1; 16 container.addEventListener('scrollend', () => { 17 document.documentElement.classList.remove('test-wait'); 18 }); 19 container.style.scrollBehavior = 'smooth'; 20 container.scrollLeft = 20; 21 } 22 window.addEventListener('load', doTest); 23 </script>