summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/scroll-animations/view-timelines/view-timeline-range.html
blob: 5042c6c2a02f670b7f9d5eb3fd4d513540849054 (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!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;
    font-size: 10px;
  }
</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 runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'cover', offset: CSS.percent(0) } ,
      rangeEnd: { rangeName: 'cover', offset: CSS.percent(100) },
      startOffset: 600,
      endOffset: 900
    }).then(anim => {
      verifyTimelineOffsets(anim);
    });
    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'contain', offset: CSS.percent(0) } ,
      rangeEnd: { rangeName: 'contain', offset: CSS.percent(100) },
      startOffset: 700,
      endOffset: 800
    }).then(anim => {
      verifyTimelineOffsets(anim);
    });
    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'entry', offset: CSS.percent(0) },
      rangeEnd: { rangeName: 'entry', offset: CSS.percent(100) },
      startOffset: 600,
      endOffset: 700
    });
    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'entry-crossing', offset: CSS.percent(0) },
      rangeEnd: { rangeName: 'entry-crossing', offset: CSS.percent(100) },
      startOffset: 600,
      endOffset: 700
    });
    await runTimelineRangeTest(t, {
      rangeStart:  { rangeName: 'exit', offset: CSS.percent(0) },
      rangeEnd: { rangeName: 'exit', offset: CSS.percent(100) },
      startOffset: 800,
      endOffset: 900
    });
    await runTimelineRangeTest(t, {
      rangeStart:  { rangeName: 'exit-crossing', offset: CSS.percent(0) },
      rangeEnd: { rangeName: 'exit-crossing', offset: CSS.percent(100) },
      startOffset: 800,
      endOffset: 900
    });
    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'contain', offset: CSS.percent(-50) },
      rangeEnd: { rangeName: 'entry', offset: CSS.percent(200) },
      startOffset: 650,
      endOffset: 800
    });
  }, 'View timeline with range as <name> <percent> pair.' );

  promise_test(async t => {
    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'entry' },
      rangeEnd: { rangeName: 'exit' },
      startOffset: 600,
      endOffset: 900
    });
    await runTimelineRangeTest(t, {
      rangeStart: { offset: CSS.percent(0) },
      rangeEnd: { offset: CSS.percent(100) },
      startOffset: 600,
      endOffset: 900
    });
  }, 'View timeline with range and inferred name or offset.' );

  promise_test(async t => {
    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'cover', offset: CSS.px(20) } ,
      rangeEnd: { rangeName: 'cover', offset: CSS.px(100) },
      startOffset: 620,
      endOffset: 700
    });

    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'contain', offset: CSS.px(20) } ,
      rangeEnd: { rangeName: 'contain', offset: CSS.px(100) },
      startOffset: 720,
      endOffset: 800
    });

    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'entry', offset: CSS.px(20) } ,
      rangeEnd: { rangeName: 'entry', offset: CSS.px(100) },
      startOffset: 620,
      endOffset: 700
    });

    await runTimelineRangeTest(t, {
      rangeStart: { rangeName: 'exit', offset: CSS.px(20) } ,
      rangeEnd: { rangeName: 'exit', offset: CSS.px(80) },
      startOffset: 820,
      endOffset: 880
    });

  }, 'View timeline with range as <name> <px> pair.' );

  promise_test(async t => {
    await runTimelineRangeTest(t, {
      rangeStart: {
        rangeName: 'contain',
        offset: new CSSMathSum(CSS.percent(0), CSS.px(20))
      },
      rangeEnd: {
        rangeName: 'contain',
        offset: new CSSMathSum(CSS.percent(100), CSS.px(-10))
      },
      startOffset: 720,
      endOffset: 790
    });

  }, 'View timeline with range as <name> <percent+px> pair.' );

  promise_test(async t => {
    await runTimelineRangeTest(t, {
      rangeStart: "contain -50%",
      rangeEnd: "entry 200%",
      startOffset: 650,
      endOffset: 800
    });

    await runTimelineRangeTest(t, {
      rangeStart: "contain 20px",
      rangeEnd: "contain 100px",
      startOffset: 720,
      endOffset: 800
    });

    await runTimelineRangeTest(t, {
      rangeStart: "contain calc(0% + 20px)",
      rangeEnd: "contain calc(100% - 10px)",
      startOffset: 720,
      endOffset: 790
    });

    await runTimelineRangeTest(t, {
      rangeStart: "exit 2em",
      rangeEnd: "exit 8em",
      startOffset: 820,
      endOffset: 880
    });


  }, 'View timeline with range as strings.');

</script>