overflow-negative-margin-dynamic.html (663B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1157299"> 3 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 4 <p>Test passes if there is a filled green square.</p> 5 <div style="position: relative; width: 100px; height: 100px; box-sizing: border-box; overflow: auto; padding-bottom: 10px;"> 6 <div style="background: green; margin-bottom: 10px;"> 7 <div style="height: 100px; margin-bottom: -20px;"></div> 8 </div> 9 <div id="target" style="position: absolute; top: 0; left: 0;"></div> 10 </div> 11 <script> 12 document.body.offsetTop; 13 document.getElementById('target').style.top = '10px'; 14 </script>