summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/scroll-animations/css/view-timeline-delay-animation.html
blob: dfb0e59f5d7798ab4958373fd5f3ff8208e13b96 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<title>Animations using named timeline ranges</title>
<link rel="help" src="https://drafts.csswg.org/scroll-animations-1/#named-timeline-range">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/web-animations/testcommon.js"></script>
<script src="support/testcommon.js"></script>
<style>
  @keyframes anim {
    from { z-index: 0; background-color: skyblue;}
    to { z-index: 100; background-color: coral; }
  }
  #scroller {
    border:  10px solid lightgray;
    overflow-y: scroll;
    width: 200px;
    height: 200px;
  }
  #target {
    margin: 800px 0px;
    width: 100px;
    height: 100px;
    z-index: -1;
    background-color: green;
  }
</style>
<main id=main>
</main>
<template>
  <div id=scroller>
    <div id=target></div>
  </div>
</template>
<script>
  setup(assert_implements_animation_timeline);

  function inflate(t, template) {
    t.add_cleanup(() => main.replaceChildren());
    main.append(template.content.cloneNode(true));
  }
  async function scrollTop(e, value) {
    e.scrollTop = value;
    await waitForNextFrame();
  }
  async function waitForAnimationReady(target) {
    await waitForNextFrame();
    await Promise.all(target.getAnimations().map(x => x.promise));
  }
  async function assertValueAt(scroller, target, args) {
    await waitForAnimationReady(target);
    await scrollTop(scroller, args.scrollTop);
    assert_equals(getComputedStyle(target).zIndex, args.expected.toString());
  }
  function test_animation_delay(options) {
    promise_test(async (t) => {
      inflate(t, document.querySelector('template'));
      let scroller = main.querySelector('#scroller');
      let target = main.querySelector('#target');

      target.style.viewTimeline = 't1 block';
      // TODO(crbug.com/1375998): Create the timeline in a separate frame to
      // work around a bug.
      await waitForNextFrame();

      target.style.animation = 'anim 10s linear';
      target.style.animationTimeline = 't1';
      target.style.animationDelayStart = options.startDelay;
      target.style.animationDelayEnd = options.endDelay;

      // Accommodates floating point precision errors at the endpoints.
      target.style.animationFillMode = 'both';

      // 0%
      await assertValueAt(scroller, target,
          { scrollTop: options.rangeStart, expected: 0 });
      // 50%
      await assertValueAt(scroller, target,
          { scrollTop: (options.rangeStart + options.rangeEnd) / 2, expected: 50 });
      // 100%
      await assertValueAt(scroller, target,
          { scrollTop: options.rangeEnd, expected: 100 });

      // Test before/after phases (need to clear the fill mode for that).
      target.style.animationFillMode = 'initial';
      await assertValueAt(scroller, target,
          { scrollTop: options.rangeStart - 10, expected: -1 });
      await assertValueAt(scroller, target,
          { scrollTop: options.rangeEnd + 10, expected: -1 });
      // Check 50% again without fill mode.
      await assertValueAt(scroller, target,
          { scrollTop: (options.rangeStart + options.rangeEnd) / 2, expected: 50 });

    }, `Animation with delays [${options.startDelay}, ${options.endDelay}]`);
  }

  test_animation_delay({
    startDelay: 'initial',
    endDelay: 'initial',
    rangeStart: 600,
    rangeEnd: 900
  });

  test_animation_delay({
    startDelay: 'cover 0%',
    endDelay: 'cover 100%',
    rangeStart: 600,
    rangeEnd: 900
  });

  test_animation_delay({
    startDelay: 'contain 0%',
    endDelay: 'contain 100%',
    rangeStart: 700,
    rangeEnd: 800
  });

  test_animation_delay({
    startDelay: 'enter 0%',
    endDelay: 'enter 100%',
    rangeStart: 600,
    rangeEnd: 700
  });

  test_animation_delay({
    startDelay: 'exit 0%',
    endDelay: 'exit 100%',
    rangeStart: 800,
    rangeEnd: 900
  });

  test_animation_delay({
    startDelay: 'contain -50%',
    endDelay: 'enter 200%',
    rangeStart: 650,
    rangeEnd: 800
  });

  test_animation_delay({
    startDelay: 'enter 0%',
    endDelay: 'exit 100%',
    rangeStart: 600,
    rangeEnd: 900
  });
</script>