summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/scroll-animations/view-timelines/view-timeline-delay.html
blob: 1377dc339c3da8a21fc83d27e0be11a7dceb0817 (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
<!DOCTYPE html>
<html id="top">
<meta charset="utf-8">
<title>View timeline delay</title>
<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#viewtimeline-interface">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/web-animations/testcommon.js"></script>
<script src="/scroll-animations/scroll-timelines/testcommon.js"></script>
<script src="/scroll-animations/view-timelines/testcommon.js"></script>
<style>
  #container {
    border:  10px solid lightgray;
    overflow-x: scroll;
    height:  200px;
    width: 200px;
  }
  #content {
    display:  flex;
    flex-flow:  row nowrap;
    justify-content:  flex-start;
    width:  1800px;
    margin: 0;
  }
  .spacer {
    width:  800px;
    display:  inline-block;
  }
  #target {
    background-color:  green;
    height:  100px;
    width:  100px;
    display:  inline-block;
  }
</style>
<body>
  <div id="container">
    <div id="content">
      <div class="spacer"></div>
      <div id="target"></div>
      <div class="spacer"></div>
    </div>
  </div>
</body>
<script type="text/javascript">
  promise_test(async t => {
    // Delays are associated with the animation and not with the timeline.
    // Thus adjusting the delays has no effect on the timeline offsets.  The
    // offsets always correspond to the 'cover' range.
    const verifyTimelineOffsets = anim => {
      const timeline = anim.timeline;
      assert_px_equals(timeline.startOffset, 600, 'startOffset');
      assert_px_equals(timeline.endOffset, 900, 'endOffset');
    };
    await runTimelineDelayTest(t, {
      delay: { phase: 'cover', percent: CSS.percent(0) } ,
      endDelay: { phase: 'cover', percent: CSS.percent(100) },
      rangeStart: 600,
      rangeEnd: 900
    }).then(anim => {
      verifyTimelineOffsets(anim);
    });
    await runTimelineDelayTest(t, {
      delay: { phase: 'contain', percent: CSS.percent(0) } ,
      endDelay: { phase: 'contain', percent: CSS.percent(100) },
      rangeStart: 700,
      rangeEnd: 800
    }).then(anim => {
      verifyTimelineOffsets(anim);
    });
    await runTimelineDelayTest(t, {
      delay: { phase: 'enter', percent: CSS.percent(0) },
      endDelay: { phase: 'enter', percent: CSS.percent(100) },
      rangeStart: 600,
      rangeEnd: 700
    });
    await runTimelineDelayTest(t, {
      delay:  { phase: 'exit', percent: CSS.percent(0) },
      endDelay: { phase: 'exit', percent: CSS.percent(100) },
      rangeStart: 800,
      rangeEnd: 900
    });
    await runTimelineDelayTest(t, {
      delay: { phase: 'contain', percent: CSS.percent(-50) },
      endDelay: { phase: 'enter', percent: CSS.percent(200) },
      rangeStart: 650,
      rangeEnd: 800
    });
    await runTimelineDelayTest(t, {
      delay: { phase: 'enter' },
      endDelay: { phase: 'exit' },
      rangeStart: 600,
      rangeEnd: 900
    });
    await runTimelineDelayTest(t, {
      delay: { percent: CSS.percent(0) },
      endDelay: { percent: CSS.percent(100) },
      rangeStart: 600,
      rangeEnd: 900
    });

  }, 'View timeline with range set via delays.' );
</script>