Skip to content

Commit 218f54d

Browse files
committed
Bug 1564640 [wpt PR 17526] - CSS: list-style shorthand matches updated spec, a=testonly
Automatic update from web-platform-tests CSS: list-style shorthand matches updated spec Update the list-style shorthand https://drafts.csswg.org/css-lists-3/#list-style-property to match spec change w3c/csswg-drafts#2624 w3c/csswg-drafts@8ac1376 The list-style shorthand is now || || instead of || || Firefox already supports the updated spec. Bug: 978433 Change-Id: I579c2272390487b429d5fe986c51cdd2041653d8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1664093 Reviewed-by: Emil A Eklund Commit-Queue: Eric Willigers Cr-Commit-Position: refs/heads/master{#672325} -- wpt-commits: b97414545be808a5236e579fab30cedbfc058a66 wpt-pr: 17526 UltraBlame original commit: 0b9fd1a749861d2703af37d9caea9ea5699a1c1c
1 parent c2f725c commit 218f54d

12 files changed

+3744
-1
lines changed
Lines changed: 298 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,298 @@
1+
<
2+
!
3+
DOCTYPE
4+
html
5+
>
6+
<
7+
html
8+
>
9+
<
10+
head
11+
>
12+
<
13+
meta
14+
charset
15+
=
16+
"
17+
utf
18+
-
19+
8
20+
"
21+
>
22+
<
23+
title
24+
>
25+
CSS
26+
Lists
27+
:
28+
getComputedValue
29+
(
30+
)
31+
.
32+
listStyle
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+
lists
60+
-
61+
3
62+
/
63+
#
64+
propdef
65+
-
66+
list
67+
-
68+
style
69+
"
70+
>
71+
<
72+
meta
73+
name
74+
=
75+
"
76+
assert
77+
"
78+
content
79+
=
80+
"
81+
list
82+
-
83+
style
84+
computed
85+
value
86+
is
87+
as
88+
specified
89+
.
90+
"
91+
>
92+
<
93+
script
94+
src
95+
=
96+
"
97+
/
98+
resources
99+
/
100+
testharness
101+
.
102+
js
103+
"
104+
>
105+
<
106+
/
107+
script
108+
>
109+
<
110+
script
111+
src
112+
=
113+
"
114+
/
115+
resources
116+
/
117+
testharnessreport
118+
.
119+
js
120+
"
121+
>
122+
<
123+
/
124+
script
125+
>
126+
<
127+
script
128+
src
129+
=
130+
"
131+
/
132+
css
133+
/
134+
support
135+
/
136+
computed
137+
-
138+
testcommon
139+
.
140+
js
141+
"
142+
>
143+
<
144+
/
145+
script
146+
>
147+
<
148+
/
149+
head
150+
>
151+
<
152+
body
153+
>
154+
<
155+
div
156+
id
157+
=
158+
"
159+
target
160+
"
161+
>
162+
<
163+
/
164+
div
165+
>
166+
<
167+
script
168+
>
169+
test_computed_value
170+
(
171+
'
172+
list
173+
-
174+
style
175+
'
176+
'
177+
none
178+
'
179+
'
180+
outside
181+
none
182+
none
183+
'
184+
)
185+
;
186+
test_computed_value
187+
(
188+
'
189+
list
190+
-
191+
style
192+
'
193+
'
194+
inside
195+
'
196+
'
197+
inside
198+
none
199+
disc
200+
'
201+
)
202+
;
203+
test_computed_value
204+
(
205+
'
206+
list
207+
-
208+
style
209+
'
210+
'
211+
url
212+
(
213+
"
214+
https
215+
:
216+
/
217+
/
218+
example
219+
.
220+
com
221+
/
222+
"
223+
)
224+
'
225+
'
226+
outside
227+
url
228+
(
229+
"
230+
https
231+
:
232+
/
233+
/
234+
example
235+
.
236+
com
237+
/
238+
"
239+
)
240+
disc
241+
'
242+
)
243+
;
244+
test_computed_value
245+
(
246+
'
247+
list
248+
-
249+
style
250+
'
251+
'
252+
square
253+
'
254+
'
255+
outside
256+
none
257+
square
258+
'
259+
)
260+
;
261+
test_computed_value
262+
(
263+
'
264+
list
265+
-
266+
style
267+
'
268+
'
269+
inside
270+
url
271+
(
272+
"
273+
https
274+
:
275+
/
276+
/
277+
example
278+
.
279+
com
280+
/
281+
"
282+
)
283+
square
284+
'
285+
)
286+
;
287+
<
288+
/
289+
script
290+
>
291+
<
292+
/
293+
body
294+
>
295+
<
296+
/
297+
html
298+
>

0 commit comments

Comments
 (0)