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>scroll-timelime-name and tree-scoped references</title>
<link rel="help" src="https://drafts.csswg.org/scroll-animations-1/#scroll-timelines-named">
<link rel="help" src="https://drafts.csswg.org/css-scoping-1/#shadow-names">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/web-animations/testcommon.js"></script>
<script src="/resources/declarative-shadow-dom-polyfill.js"></script>
<main id=main></main>
<script>
function inflate(t, template) {
t.add_cleanup(() => main.replaceChildren());
main.append(template.content.cloneNode(true));
main.offsetTop;
}
setup(() => {
polyfill_declarative_shadow_dom(document);
});
</script>
<style>
@keyframes anim {
from { z-index: 100; }
to { z-index: 100; }
}
</style>
<template id=scroll_timeline_host>
<style>
.target {
animation: anim 10s linear;
animation-timeline: timeline;
}
main > .scroller {
scroll-timeline: timeline horizontal;
}
</style>
<div class=scroller>
<div class=scroller>
<template shadowroot=open>
<style>
:host {
scroll-timeline: timeline vertical;
}
</style>
<slot></slot>
</template>
<div class=target></div>
</div>
</div>
<style>
</style>
</template>
<script>
promise_test(async (t) => {
inflate(t, scroll_timeline_host);
let target = main.querySelector('.target');
assert_equals(target.getAnimations().length, 1);
let anim = target.getAnimations()[0];
assert_not_equals(anim.timeline, null);
assert_equals(anim.timeline.axis, 'horizontal');
}, 'Outer animation can not see scroll timeline defined by :host');
</script>
<template id=scroll_timeline_slotted>
<style>
.target {
animation: anim 10s linear;
animation-timeline: timeline;
}
.host {
scroll-timeline: timeline horizontal;
}
</style>
<div class=host>
<template shadowroot=open>
<style>
::slotted(.scroller) {
scroll-timeline: timeline vertical;
}
</style>
<slot></slot>
</template>
<div class=scroller>
<div class=target></div>
</div>
</div>
<style>
</style>
</template>
<script>
promise_test(async (t) => {
inflate(t, scroll_timeline_slotted);
let target = main.querySelector('.target');
assert_equals(target.getAnimations().length, 1);
let anim = target.getAnimations()[0];
assert_not_equals(anim.timeline, null);
assert_equals(anim.timeline.axis, 'horizontal');
}, 'Outer animation can not see scroll timeline defined by ::slotted');
</script>
<template id=scroll_timeline_part>
<style>
.host {
scroll-timeline: timeline vertical;
}
.host::part(foo) {
scroll-timeline: timeline horizontal;
}
</style>
<div class=host>
<template shadowroot=open>
<style>
/* Not using 'anim' at document scope, due to https://crbug.com/1334534 */
@keyframes anim2 {
from { z-index: 100; background-color: green; }
to { z-index: 100; background-color: green; }
}
.target {
animation: anim2 10s linear;
animation-timeline: timeline;
}
</style>
<div part=foo>
<div class=target></div>
</div>
</template>
</div>
<style>
</style>
</template>
<script>
promise_test(async (t) => {
inflate(t, scroll_timeline_part);
let target = main.querySelector('.host').shadowRoot.querySelector('.target');
assert_equals(target.getAnimations().length, 1);
let anim = target.getAnimations()[0];
assert_not_equals(anim.timeline, null);
assert_equals(anim.timeline.axis, 'horizontal');
}, 'Inner animation can see scroll timeline defined by ::part');
</script>
|