Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-position/position-absolute-under-non-containing-stacking-context.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="position-absolute-under-non-containing-stacking-context-ref.html">
<script src="/common/rendering-utils.js"></script>
<script src="/common/reftest-wait.js"></script>
<div id="scroller" style="width:200px; height: 200px; overflow: auto; position: relative">
<div style="height: 0; overflow: hidden; opacity: 0.5; margin: 250px">
<div style="width: 100px; height: 100px; position: absolute; background: green"></div>
</div>
</div>
<script>
waitForAtLeastOneFrame().then(() => {
scroller.scrollTo(200, 200);
takeScreenshot();
});
</script>