Skip to content

Commit d448dbd

Browse files
committed
Bug 1918332 [wpt PR 48116] - [container] Move scroll-state() query tests to wpt, a=testonly
Automatic update from web-platform-tests [container] Move scroll-state() query tests to wpt The spec PR landed, so tests should now be supported by the spec. The 'inset-' prefix for the stuck keywords per were not per spec and remove both from tests and implementation. The tests for the 'none'-keyword for snapped and stuck does not match the current spec draft, but will be fixed by [1] [1] w3c/csswg-drafts#10874 Bug: 40279568, 40268059 Change-Id: I7cf8d3a2f251eaea0c3a78329c46a7bfddd85dda Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5850484 Reviewed-by: Anders Hartvoll Ruud <andruudchromium.org> Commit-Queue: Rune Lillesveen <futharkchromium.org> Cr-Commit-Position: refs/heads/main{#1354415} -- wpt-commits: d2c522e29aa466bbfcc863b51aa3556aff5a248c wpt-pr: 48116 UltraBlame original commit: e2408da6c7247006aedbc2849c092ab49d07d898
1 parent a4bd586 commit d448dbd

13 files changed

+6533
-0
lines changed

testing/web-platform/tests/css/css-conditional/container-queries/at-container-snapped-parsing.html

+727
Large diffs are not rendered by default.

testing/web-platform/tests/css/css-conditional/container-queries/at-container-snapped-serialization.html

+431
Large diffs are not rendered by default.

testing/web-platform/tests/css/css-conditional/container-queries/at-container-stuck-parsing.html

+805
Large diffs are not rendered by default.

testing/web-platform/tests/css/css-conditional/container-queries/at-container-stuck-serialization.html

+435
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
<
2+
!
3+
DOCTYPE
4+
html
5+
>
6+
<
7+
meta
8+
charset
9+
=
10+
"
11+
utf
12+
-
13+
8
14+
"
15+
>
16+
<
17+
title
18+
>
19+
CSS
20+
Conditional
21+
Test
22+
:
23+
Computed
24+
values
25+
of
26+
container
27+
-
28+
type
29+
with
30+
scroll
31+
-
32+
state
33+
<
34+
/
35+
title
36+
>
37+
<
38+
link
39+
rel
40+
=
41+
"
42+
help
43+
"
44+
href
45+
=
46+
"
47+
https
48+
:
49+
/
50+
/
51+
drafts
52+
.
53+
csswg
54+
.
55+
org
56+
/
57+
css
58+
-
59+
conditional
60+
-
61+
5
62+
/
63+
#
64+
container
65+
-
66+
type
67+
"
68+
>
69+
<
70+
script
71+
src
72+
=
73+
"
74+
/
75+
resources
76+
/
77+
testharness
78+
.
79+
js
80+
"
81+
>
82+
<
83+
/
84+
script
85+
>
86+
<
87+
script
88+
src
89+
=
90+
"
91+
/
92+
resources
93+
/
94+
testharnessreport
95+
.
96+
js
97+
"
98+
>
99+
<
100+
/
101+
script
102+
>
103+
<
104+
script
105+
src
106+
=
107+
"
108+
/
109+
css
110+
/
111+
support
112+
/
113+
computed
114+
-
115+
testcommon
116+
.
117+
js
118+
"
119+
>
120+
<
121+
/
122+
script
123+
>
124+
<
125+
script
126+
src
127+
=
128+
"
129+
/
130+
css
131+
/
132+
css
133+
-
134+
conditional
135+
/
136+
container
137+
-
138+
queries
139+
/
140+
support
141+
/
142+
cq
143+
-
144+
testcommon
145+
.
146+
js
147+
"
148+
>
149+
<
150+
/
151+
script
152+
>
153+
<
154+
div
155+
id
156+
=
157+
"
158+
target
159+
"
160+
>
161+
<
162+
/
163+
div
164+
>
165+
<
166+
script
167+
>
168+
setup
169+
(
170+
(
171+
)
172+
=
173+
>
174+
assert_implements_container_queries
175+
(
176+
)
177+
)
178+
;
179+
test_computed_value
180+
(
181+
'
182+
container
183+
-
184+
type
185+
'
186+
'
187+
scroll
188+
-
189+
state
190+
'
191+
)
192+
;
193+
test_computed_value
194+
(
195+
'
196+
container
197+
-
198+
type
199+
'
200+
'
201+
scroll
202+
-
203+
state
204+
size
205+
'
206+
'
207+
size
208+
scroll
209+
-
210+
state
211+
'
212+
)
213+
;
214+
test_computed_value
215+
(
216+
'
217+
container
218+
-
219+
type
220+
'
221+
'
222+
inline
223+
-
224+
size
225+
scroll
226+
-
227+
state
228+
'
229+
)
230+
;
231+
<
232+
/
233+
script
234+
>

0 commit comments

Comments
 (0)