hypothetical-box-scroll-viewport.html (508B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title></title> 4 <link rel=match href=hypothetical-box-scroll-viewport-ref.html> 5 <link rel="help" 6 href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-width"> 7 <div style="position: absolute">Original text</div> 8 <div style="width: 200vw; height: 10px"></div> 9 <script> 10 // Scroll the viewport. 11 window.scrollTo(window.innerWidth * 2, 0); 12 13 // Now force relayout of the abs pos div. 14 document.querySelector("div").textContent = "Modified text"; 15 </script>