summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/scroll-animations/scroll-timelines/animation-with-delay-crash.html
blob: 9d821f9e20f58eef9ff5aa0706fa528f3250935f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/web-animations-1/#the-effecttiming-dictionaries">
<style>
.scroller {
  overflow: auto;
  height: 100px;
  width: 100px;
  will-change: transform;
}

.contents {
  height: 1000px;
  width: 100%;
}
</style>
<div class="scroller">
  <div class="contents"></div>
</div>
<script>
  // Test passes if it does not crash.
  // Scroll timeline animations are progress-based and not compatible with
  // delays specified in milliseconds.
  const timeline = new ScrollTimeline();
  const options = {
    timeline: timeline,
    endDelay: 200
  };
  const keyframes = { opacity: [0, 1]};
  const element = document.querySelector('.contents');
  element.animate(keyframes, options);
</script>