Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> CSS Scroll Snap 2 Test: scrollsnapchange events</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/dom/events/scrolling/scroll_support.js"></script>
</head>
<body>
<style>
#container {
overflow-y: scroll;
height: 500px;
width: 300px;
border: solid 1px black;
position: absolute;
scroll-snap-type: y mandatory;
}
.snap_area {
scroll-snap-align: start;
height: 400px;
width: 200px;
left: 50px;
position: absolute;
}
#area1 {
background-color: blue;
}
#area2 {
top: 400px;
background-color: yellow;
}
#area3 {
top: 800px;
background-color: green;
}
</style>
<div id="container">
<div id="area1" class="snap_area"></div>
<div id="area2" class="snap_area"></div>
<div id="area3" class="snap_area"></div>
</div>
<script>
promise_test(async (t) => {
await waitForCompositorCommit();
container.addEventListener("scrollsnapchange",
t.unreached_func("scrollsnapchange should not fire"));
let reset = () => {
container.scrollTo({ top: 0, behavior: "smooth"});
container.removeEventListener("scroll", reset);
};
container.addEventListener("scroll", reset);
let scrollend_promise = waitForScrollendEventNoTimeout(container);
container.scrollTo({ top: 250, behavior: "smooth"});
await scrollend_promise;
assert_equals(container.scrollTop, 0, "scroll position is reset");
// scrollsnapchange should not fire since the scroll ended on the same snap
// target as the one it started on.
await waitForCompositorCommit();
}, "scrollsnapchange doesn't fire if interrupting scroll cancels snap");
</script>
</body>
</html>