Skip to content

Commit 512608f

Browse files
tcaptan-crchromium-wpt-export-bot
authored andcommitted
Rename ::select-arrow to ::picker-icon
w3c/csswg-drafts#10908 (comment) Bug: 379985080 Change-Id: Ic33e948c76c6fc9a53146735bd060e01a49d13dc AX-Relnotes: n/a. Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6065538 Auto-Submit: Traian Captan <[email protected]> Reviewed-by: Joey Arhar <[email protected]> Commit-Queue: Traian Captan <[email protected]> Reviewed-by: Aaron Leventhal <[email protected]> Reviewed-by: Philip Rogers <[email protected]> Cr-Commit-Position: refs/heads/main@{#1391128}
1 parent 319c660 commit 512608f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
<!DOCTYPE html>
22
<meta charset="utf-8">
3-
<title>CSS ::select-arrow Pseudo-Element Test</title>
3+
<title>CSS ::picker-icon Pseudo-Element Test</title>
44
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/10986">
5-
<meta name="assert" content="This test checks the validity of the ::select-arrow pseudo element selector." />
5+
<meta name="assert" content="This test checks the validity of the ::picker-icon pseudo element selector." />
66
<script src="/resources/testharness.js"></script>
77
<script src="/resources/testharnessreport.js"></script>
88
<script src="/css/support/parsing-testcommon.js"></script>
99
<script>
10-
test_valid_selector("::select-arrow");
11-
test_valid_selector("*::select-arrow", "::select-arrow");
12-
test_valid_selector("foo.bar[baz]::select-arrow");
13-
test_invalid_selector("::select-arrow *");
10+
test_valid_selector("::picker-icon");
11+
test_valid_selector("*::picker-icon", "::picker-icon");
12+
test_valid_selector("foo.bar[baz]::picker-icon");
13+
test_invalid_selector("::picker-icon *");
1414

1515
// Combinations
16-
test_invalid_selector("::select-arrow::select-arrow");
16+
test_invalid_selector("::picker-icon::picker-icon");
1717

18-
test_invalid_selector("::before::select-arrow");
19-
test_invalid_selector("::after::select-arrow");
20-
test_invalid_selector("::marker::select-arrow");
21-
test_invalid_selector("::placeholder::select-arrow");
18+
test_invalid_selector("::before::picker-icon");
19+
test_invalid_selector("::after::picker-icon");
20+
test_invalid_selector("::marker::picker-icon");
21+
test_invalid_selector("::placeholder::picker-icon");
2222

23-
test_invalid_selector("::select-arrow::before");
24-
test_invalid_selector("::select-arrow::after");
25-
test_valid_selector("::select-arrow::marker");
26-
test_invalid_selector("::select-arrow::placeholder");
23+
test_invalid_selector("::picker-icon::before");
24+
test_invalid_selector("::picker-icon::after");
25+
test_valid_selector("::picker-icon::marker");
26+
test_invalid_selector("::picker-icon::placeholder");
2727

28-
test_invalid_selector("::slotted(*)::select-arrow::slotted(*)");
29-
test_valid_selector("::slotted(*)::select-arrow");
28+
test_invalid_selector("::slotted(*)::picker-icon::slotted(*)");
29+
test_valid_selector("::slotted(*)::picker-icon");
3030

31-
test_valid_selector("::part(foo)::select-arrow");
31+
test_valid_selector("::part(foo)::picker-icon");
3232
</script>

0 commit comments

Comments
 (0)