position-absolute-dynamic-auto-overflow.html (598B)
1 <!DOCTYPE html> 2 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1225548"> 4 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 5 <div style="position: fixed; background: red; max-height: 150px; overflow-y: auto;"> 6 <div id="target" style="width: 100px; background: green;"></div> 7 </div> 8 <script> 9 document.body.offsetTop; 10 const target = document.getElementById('target'); 11 target.style.height = '200px'; 12 document.body.offsetTop; 13 target.style.height = '100px'; 14 </script>