Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/anchor-scroll-005.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Tests scrolling with anchor in fixed-positioned scroller</title>
<link rel="author" href="mailto:xiaochengh@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/test-common.js"></script>
<style>
body {
margin: 0;
height: 200vh;
}
#scroller {
position: fixed;
width: 200px;
height: 200px;
overflow-y: scroll;
}
#anchor {
position: absolute;
width: 100px;
height: 100px;
top: 200px;
background: orange;
anchor-name: --a;
}
#target {
position: fixed;
width: 100px;
height: 100px;
bottom: anchor(top);
position-anchor: --a;
background: lime;
}
</style>
<div id=scroller>
<div id=anchor></div>
</div>
<div id=target></div>
<script>
promise_test(async () => {
await waitUntilNextAnimationFrame();
assert_equals(target.getBoundingClientRect().top, 100);
document.documentElement.scrollTop = 100;
await waitUntilNextAnimationFrame();
assert_equals(target.getBoundingClientRect().top, 100);
}, 'Target should not scroll with viewport when anchor is in fixed-positioned scroller');
</script>