File tree 1 file changed +32
-0
lines changed
testing/web-platform/tests/css/css-pseudo/parsing
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments