position-sticky-escape-scroller-004.html (825B)
1 <!DOCTYPE html> 2 <title>CSS Positioned Layout Test: a sticky element contained by absolute under a scroller not containing absolute</title> 3 <link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos"> 4 <link rel="help" href="https://crbug.com/881555"> 5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3185"> 6 <link rel="match" href="position-sticky-escape-scroller-004-ref.html"> 7 <style>body { margin: 0 }</style> 8 <div id="scroller" style="width: 200px; height: 200px; overflow: scroll"> 9 <div style="position: absolute; top: 100px; height: 2000px"> 10 <div style="position: sticky; top: 0; width: 200px; height: 200px; background: green"></div> 11 </div> 12 <div style="height: 1000px; background: red"></div> 13 </div> 14 <div style="height: 3000px"></div> 15 <script> 16 window.scrollTo(0, 1000); 17 </script>