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
|
<!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: 2100px;
margin: 0;
}
.spacer {
width: 800px;
display: inline-block;
}
#target {
background-color: green;
height: 100px;
/* target size > viewport size, which changes interpretation of the
contain range */
width: 400px;
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 => {
await runTimelineDelayTest(t, {
delay: { phase: 'cover', percent: CSS.percent(0) } ,
endDelay: { phase: 'cover', percent: CSS.percent(100) },
rangeStart: 600,
rangeEnd: 1200
});
await runTimelineDelayTest(t, {
delay: { phase: 'contain', percent: CSS.percent(0) } ,
endDelay: { phase: 'contain', percent: CSS.percent(100) },
rangeStart: 800,
rangeEnd: 1000
});
await runTimelineDelayTest(t, {
delay: { phase: 'enter', percent: CSS.percent(0) },
endDelay: { phase: 'enter', percent: CSS.percent(100) },
rangeStart: 600,
rangeEnd: 800
});
await runTimelineDelayTest(t, {
delay: { phase: 'exit', percent: CSS.percent(0) },
endDelay: { phase: 'exit', percent: CSS.percent(100) },
rangeStart: 1000,
rangeEnd: 1200
});
await runTimelineDelayTest(t, {
delay: { phase: 'contain', percent: CSS.percent(-50) },
endDelay: { phase: 'enter', percent: CSS.percent(200) },
rangeStart: 700,
rangeEnd: 1000
});
await runTimelineDelayTest(t, {
delay: { phase: 'enter' },
endDelay: { phase: 'exit' },
rangeStart: 600,
rangeEnd: 1200
});
await runTimelineDelayTest(t, {
delay: { percent: CSS.percent(0) },
endDelay: { percent: CSS.percent(100) },
rangeStart: 600,
rangeEnd: 1200
});
}, 'View timeline with range set via delays.' );
</script>
|