blob: aecd859567b8f34b3a7410a64dcba64c8dc48977 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>ScrollTimeline snapshotting</title>
<link rel="help" href="https://wicg.github.io/scroll-animations/#avoiding-cycles">
<script src='../../../resources/testharness.js'></script>
<script src='../../../resources/testharnessreport.js'></script>
<script src='../../../external/wpt/web-animations/testcommon.js'></script>
<style>
body {
height: 800px;
width: 800px;
}
</style>
<div id="log"></div>
<script>
'use strict';
promise_test(async t => {
internals.settings.setScrollAnimatorEnabled(true);
const scroller = document.scrollingElement;
const maxScroll = scroller.scrollHeight - scroller.clientHeight;
const timeline = new ScrollTimeline(
{scrollSource: scroller, timeRange: maxScroll});
eventSender.keyDown("ArrowDown");
// Wait for the scroll to change.
const startScroll = scroller.scrollTop;
do {
await waitForNextFrame();
} while(scroller.scrollTop == startScroll);
assert_times_equal(timeline.currentTime, scroller.scrollTop,
'Scroll timeline current time corresponds to the scroll position.');
}, 'Scroll timeline current time is updated after handling user-driven scroll.');
</script>