File tree 2 files changed +39
-0
lines changed
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ import resizeObserver1 from './tests/resize-observer-1.js';
138
138
import scrollAnimations1 from './tests/scroll-animations-1.js' ;
139
139
import selectors3 from './tests/selectors-3.js' ;
140
140
import selectors4 from './tests/selectors-4.js' ;
141
+ import selectors5 from './tests/selectors-5.js' ;
141
142
import svg2Coords from './tests/svg2-coords.js' ;
142
143
import svg2Geometry from './tests/svg2-geometry.js' ;
143
144
import svg2Interact from './tests/svg2-interact.js' ;
@@ -291,6 +292,7 @@ export default {
291
292
'scroll-animations-1' : scrollAnimations1 ,
292
293
'selectors-3' : selectors3 ,
293
294
'selectors-4' : selectors4 ,
295
+ 'selectors-5' : selectors5 ,
294
296
'svg2-coords' : svg2Coords ,
295
297
'svg2-geometry' : svg2Geometry ,
296
298
'svg2-interact' : svg2Interact ,
Original file line number Diff line number Diff line change
1
+ export default {
2
+ title : 'Selectors Level 5' ,
3
+ links : {
4
+ tr : 'selectors-5' ,
5
+ dev : 'selectors-5' ,
6
+ } ,
7
+ status : {
8
+ stability : 'experimental' ,
9
+ } ,
10
+ selectors : {
11
+ ':local-link()' : {
12
+ links : {
13
+ tr : '#local-pseudo' ,
14
+ dev : '#local-pseudo' ,
15
+ } ,
16
+ tests : [
17
+ ':local-link(1)' ,
18
+ ] ,
19
+ } ,
20
+ ':state()' : {
21
+ links : {
22
+ tr : '#custom-state' ,
23
+ dev : '#custom-state' ,
24
+ } ,
25
+ tests : [ ':state(stuck)' ] ,
26
+ } ,
27
+ 'Reference selector' : {
28
+ links : {
29
+ tr : '#idref-combinators' ,
30
+ dev : '#idref-combinators' ,
31
+ } ,
32
+ tests : [
33
+ 'label /for/ input' ,
34
+ ] ,
35
+ } ,
36
+ } ,
37
+ } ;
You can’t perform that action at this time.
0 commit comments