Skip to content

Commit d6995cf

Browse files
committed
Bug 1937928 [wpt PR 49746] - Update customizable select styles, a=testonly
Automatic update from web-platform-tests Update customizable select styles This patch updates background-color and border-radius to the latest proposal here: w3c/csswg-drafts#10857 Change-Id: Icc6ec70d27cc9f1131f5e164b1db66e63e8847fb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6072270 Commit-Queue: Joey Arhar <jarharchromium.org> Reviewed-by: Mason Freed <masonfchromium.org> Auto-Submit: Joey Arhar <jarharchromium.org> Cr-Commit-Position: refs/heads/main{#1397608} -- wpt-commits: 441d9bfafda626484b081e3cd4964489e9608ca2 wpt-pr: 49746 UltraBlame original commit: f51dac500539a26c8cd42d09fa5bbc5ca877cfe4
1 parent f9d8a05 commit d6995cf

14 files changed

+314
-83
lines changed

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/resources/customizable-select-styles.css

+53-11
Original file line numberDiff line numberDiff line change
@@ -376,17 +376,7 @@ background
376376
-
377377
color
378378
:
379-
color
380-
-
381-
mix
382-
(
383-
in
384-
lab
385-
currentColor
386-
10
387-
%
388379
transparent
389-
)
390380
;
391381
appearance
392382
:
@@ -420,7 +410,7 @@ radius
420410
:
421411
0
422412
.
423-
25em
413+
5em
424414
;
425415
cursor
426416
:
@@ -564,6 +554,58 @@ customizable
564554
select
565555
-
566556
button
557+
.
558+
hover
559+
{
560+
background
561+
-
562+
color
563+
:
564+
color
565+
-
566+
mix
567+
(
568+
in
569+
lab
570+
currentColor
571+
10
572+
%
573+
transparent
574+
)
575+
;
576+
}
577+
.
578+
customizable
579+
-
580+
select
581+
-
582+
button
583+
.
584+
active
585+
{
586+
background
587+
-
588+
color
589+
:
590+
color
591+
-
592+
mix
593+
(
594+
in
595+
lab
596+
currentColor
597+
20
598+
%
599+
transparent
600+
)
601+
;
602+
}
603+
.
604+
customizable
605+
-
606+
select
607+
-
608+
button
567609
:
568610
:
569611
after

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-active-ref.html

+3-31
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@
2626
div
2727
class
2828
=
29+
"
2930
customizable
3031
-
3132
select
3233
-
3334
button
35+
active
36+
"
3437
popovertarget
3538
=
3639
popover
@@ -99,37 +102,6 @@
99102
div
100103
>
101104
<
102-
style
103-
>
104-
.
105-
customizable
106-
-
107-
select
108-
-
109-
button
110-
{
111-
background
112-
-
113-
color
114-
:
115-
color
116-
-
117-
mix
118-
(
119-
in
120-
lab
121-
currentColor
122-
30
123-
%
124-
transparent
125-
)
126-
;
127-
}
128-
<
129-
/
130-
style
131-
>
132-
<
133105
script
134106
>
135107
document

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-active.tentative.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
=
2424
0
2525
-
26-
29
26+
33
2727
;
2828
totalPixels
2929
=

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-dark-mode.tentative.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
=
3030
0
3131
-
32-
12
32+
15
3333
"
3434
>
3535
<

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-disabled-option.tentative.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
=
2424
0
2525
-
26-
37
26+
41
2727
;
2828
totalPixels
2929
=

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-font-inheriting.tentative.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
=
2424
0
2525
-
26-
50
26+
55
2727
;
2828
totalPixels
2929
=

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-hover-ref.html

+3-31
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@
2626
div
2727
class
2828
=
29+
"
2930
customizable
3031
-
3132
select
3233
-
3334
button
35+
hover
36+
"
3437
popovertarget
3538
=
3639
popover
@@ -57,34 +60,3 @@
5760
/
5861
div
5962
>
60-
<
61-
style
62-
>
63-
.
64-
customizable
65-
-
66-
select
67-
-
68-
button
69-
{
70-
background
71-
-
72-
color
73-
:
74-
color
75-
-
76-
mix
77-
(
78-
in
79-
lab
80-
currentColor
81-
20
82-
%
83-
transparent
84-
)
85-
;
86-
}
87-
<
88-
/
89-
style
90-
>

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-hover.tentative.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
=
2424
0
2525
-
26-
33
26+
37
2727
;
2828
totalPixels
2929
=

testing/web-platform/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-switching-invalidation.tentative.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
=
2424
0
2525
-
26-
40
26+
41
2727
;
2828
totalPixels
2929
=

0 commit comments

Comments
 (0)