author | Olga Gerchikov <gerchiko@microsoft.com> |
Wed, 13 May 2020 03:58:49 +0000 | |
changeset 531043 | d59d05a6f27e53965af7bd1a2144980acdd0c5ca |
parent 531042 | 73dfb76e1bf5808c55af973fe1f92df7c165e0a7 |
child 531044 | 542c6e7ff5812c2ba8c94d76552c59b82c7a44b1 |
push id | 116503 |
push user | wptsync@mozilla.com |
push date | Wed, 20 May 2020 10:37:27 +0000 |
treeherder | autoland@135acd548abf [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1634136, 23322, 944449, 2161317, 764686 |
milestone | 78.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
testing/web-platform/tests/scroll-animations/scroll-timeline-snapshotting.html | file | annotate | diff | comparison | revisions |
new file mode 100644 --- /dev/null +++ b/testing/web-platform/tests/scroll-animations/scroll-timeline-snapshotting.html @@ -0,0 +1,41 @@ +<!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="/resources/testdriver.js"></script> +<script src="/resources/testdriver-vendor.js"></script> +<script src="/resources/testdriver-actions.js"></script> +<script src="/web-animations/testcommon.js"></script> + +<style> + body { + height: 800px; + width: 800px; + } +</style> +<div id="log"></div> + +<script> +'use strict'; + +promise_test(async t => { + const scroller = document.scrollingElement; + const maxScroll = scroller.scrollHeight - scroller.clientHeight; + const timeline = new ScrollTimeline( + {scrollSource: scroller, timeRange: maxScroll}); + scroller.scrollTo(0, 0); + assert_equals(scroller.scrollTop, 0, "verify test pre-condition"); + + scroller.scrollBy({top:100, behavior:'smooth'}) + // 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.'); +}, 'ScrollTimeline current time is updated after programmatic animated scroll.'); + +</script>