fune/testing/web-platform/tests/css/css-scroll-anchoring/focused-element-nested-anchor.html
Nikos Mouchtaris bbe6cf82df Bug 1873069 [wpt PR 43855] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=267005, a=testonly
Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=267005 (#43855)

--

wpt-commits: 2c7200ae8808844cd933295e1744aa38205e5f95
wpt-pr: 43855
2024-01-10 01:15:35 +00:00

69 lines
No EOL
1.5 KiB
HTML

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-scroll-anchoring/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
body { height: 4000px; }
div { height: 100px; }
.scroller {
overflow: scroll;
position: fixed;
width: 300px;
height: 300px;
background-color: green;
}
#posSticky {
top: 300px;
position: relative;
height: 50px;
width: 50px;
background-color: blue;
}
#content {
background-color: #D3D3D3;
height: 50px;
width: 50px;
position: relative;
top: 500px;
}
#anchor {
background-color: brown;
height: 50px;
width: 50px;
position: relative;
top: 200px;
}
</style>
<div id="scroller" class="scroller">
<div id="content" tabindex="-1"></div>
<div id="anchor" tabindex="-1"></div>
</div>
<script>
// Tests that a focused element doesn't become the
// priority candidate of the main frame if it is
// the anchor element of a subscroller
promise_test(async function() {
var scroller = document.querySelector("#scroller");
var focusElement = document.querySelector("#anchor");
focusElement.focus();
scroller.scrollBy(0,150);
document.scrollingElement.scrollBy(0,100);
scroller.scrollBy(0, 50);
await new Promise(resolve => {
scroller.addEventListener("scroll", () => step_timeout(resolve, 0));
});
assert_equals(document.scrollingElement.scrollTop, 100);
}, "Ensure there is no scroll anchoring adjustment in the main frame.");
</script>