Skip to content

Commit d50cef6

Browse files
tcaptan-crmoz-wptsync-bot
authored andcommittedOct 18, 2024
Bug 1924772 [wpt PR 48625] - Add ::check pseudo element parsing support, a=testonly
Automatic update from web-platform-tests Add ::check pseudo element parsing support Defined in: w3c/csswg-drafts#10986 Bug: 369319576 Change-Id: I90fb6ef81fd5941709fae6936c7474339a7715e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5928423 Reviewed-by: Rune Lillesveen <futhark@chromium.org> Reviewed-by: Joey Arhar <jarhar@chromium.org> Commit-Queue: Traian Captan <tcaptan@chromium.org> Cr-Commit-Position: refs/heads/main@{#1369011} -- wpt-commits: 181e33be283f60d28349f6828782091489684ece wpt-pr: 48625
1 parent 8ac6f4e commit d50cef6

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS ::check Pseudo-Element Test</title>
4+
<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/10986">
5+
<meta name="assert" content="This test checks the validity of the ::check pseudo element selector." />
6+
<script src="/resources/testharness.js"></script>
7+
<script src="/resources/testharnessreport.js"></script>
8+
<script src="/css/support/parsing-testcommon.js"></script>
9+
<script>
10+
test_valid_selector("::check");
11+
test_valid_selector("*::check", "::check");
12+
test_valid_selector("foo.bar[baz]::check");
13+
test_invalid_selector("::check *");
14+
15+
// Combinations
16+
test_invalid_selector("::check::check");
17+
18+
test_invalid_selector("::before::check");
19+
test_invalid_selector("::after::check");
20+
test_invalid_selector("::marker::check");
21+
test_invalid_selector("::placeholder::check");
22+
23+
test_invalid_selector("::check::before");
24+
test_invalid_selector("::check::after");
25+
test_valid_selector("::check::marker");
26+
test_invalid_selector("::check::placeholder");
27+
28+
test_invalid_selector("::slotted(*)::check::slotted(*)");
29+
test_valid_selector("::slotted(*)::check");
30+
31+
test_valid_selector("::part(foo)::check");
32+
</script>

0 commit comments

Comments
 (0)