@markuplint/types 3.0.0-dev.24 → 3.0.0-dev.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -61
- package/lib/check-multi-types.d.ts +2 -2
- package/lib/check-multi-types.js +9 -13
- package/lib/check.d.ts +7 -6
- package/lib/check.js +20 -30
- package/lib/css-syntax.d.ts +1 -1
- package/lib/css-syntax.js +60 -63
- package/lib/debug.js +2 -6
- package/lib/defs.d.ts +1 -1
- package/lib/defs.js +163 -91
- package/lib/enum.d.ts +4 -3
- package/lib/enum.js +7 -12
- package/lib/get-candidate.d.ts +1 -1
- package/lib/get-candidate.js +3 -8
- package/lib/index.d.ts +3 -3
- package/lib/index.js +3 -6
- package/lib/keyword-type.d.ts +2 -2
- package/lib/keyword-type.js +17 -21
- package/lib/list.d.ts +4 -3
- package/lib/list.js +9 -13
- package/lib/match-result.d.ts +4 -4
- package/lib/match-result.js +6 -12
- package/lib/number.d.ts +3 -3
- package/lib/number.js +11 -15
- package/lib/primitive/index.d.ts +7 -7
- package/lib/primitive/index.js +7 -17
- package/lib/primitive/is-float.js +1 -5
- package/lib/primitive/is-int.js +1 -5
- package/lib/primitive/is-non-zero-uint.js +1 -5
- package/lib/primitive/is-quantity.d.ts +1 -1
- package/lib/primitive/is-quantity.js +9 -13
- package/lib/primitive/is-uint.d.ts +1 -1
- package/lib/primitive/is-uint.js +1 -5
- package/lib/primitive/range.js +1 -5
- package/lib/primitive/split-unit.js +3 -7
- package/lib/rfc/is-bcp-47.d.ts +1 -1
- package/lib/rfc/is-bcp-47.js +3 -7
- package/lib/token/index.d.ts +2 -2
- package/lib/token/index.js +2 -7
- package/lib/token/token-collection.d.ts +13 -13
- package/lib/token/token-collection.js +55 -50
- package/lib/token/token.d.ts +11 -10
- package/lib/token/token.js +16 -24
- package/lib/token/types.d.ts +3 -0
- package/lib/types.d.ts +47 -46
- package/lib/types.js +1 -2
- package/lib/types.schema.d.ts +2 -2
- package/lib/types.schema.js +1 -3
- package/lib/w3c/check-serialized-permissions-policy.d.ts +1 -1
- package/lib/w3c/check-serialized-permissions-policy.js +16 -20
- package/lib/whatwg/check-autocomplete.d.ts +1 -1
- package/lib/whatwg/check-autocomplete.js +28 -32
- package/lib/whatwg/check-datetime/date-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/date-string.js +9 -13
- package/lib/whatwg/check-datetime/datetime-tokens.d.ts +1 -1
- package/lib/whatwg/check-datetime/datetime-tokens.js +43 -46
- package/lib/whatwg/check-datetime/duration-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/duration-string.js +48 -44
- package/lib/whatwg/check-datetime/global-date-and-time-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/global-date-and-time-string.js +17 -21
- package/lib/whatwg/check-datetime/index.d.ts +1 -1
- package/lib/whatwg/check-datetime/index.js +25 -29
- package/lib/whatwg/check-datetime/local-date-and-time-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/local-date-and-time-string.js +25 -26
- package/lib/whatwg/check-datetime/month-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/month-string.js +9 -13
- package/lib/whatwg/check-datetime/time-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/time-string.js +9 -13
- package/lib/whatwg/check-datetime/time-zone-offset-string.d.ts +3 -3
- package/lib/whatwg/check-datetime/time-zone-offset-string.js +16 -21
- package/lib/whatwg/check-datetime/week-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/week-string.js +9 -13
- package/lib/whatwg/check-datetime/year-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/year-string.js +9 -13
- package/lib/whatwg/check-datetime/yearless-date-string.d.ts +1 -1
- package/lib/whatwg/check-datetime/yearless-date-string.js +9 -13
- package/lib/whatwg/check-mime-type.d.ts +1 -1
- package/lib/whatwg/check-mime-type.js +12 -18
- package/lib/whatwg/is-abs-url.d.ts +1 -1
- package/lib/whatwg/is-abs-url.js +1 -5
- package/lib/whatwg/is-browser-context-name.d.ts +3 -1
- package/lib/whatwg/is-browser-context-name.js +3 -5
- package/lib/whatwg/is-custom-element-name.d.ts +1 -1
- package/lib/whatwg/is-custom-element-name.js +1 -5
- package/lib/whatwg/is-itemprop-name.d.ts +1 -1
- package/lib/whatwg/is-itemprop-name.js +2 -6
- package/lib/whatwg/is-navigable-target-name.d.ts +11 -0
- package/lib/whatwg/is-navigable-target-name.js +20 -0
- package/package.json +19 -13
- package/types.schema.json +314 -311
- package/gen/specific-schema.json +0 -98
- package/gen/types.ts +0 -66
- package/lib/check.spec.js +0 -76
- package/lib/css-syntax.spec.d.ts +0 -1
- package/lib/css-syntax.spec.js +0 -157
- package/lib/list.spec.d.ts +0 -1
- package/lib/list.spec.js +0 -129
- package/lib/primitive/index.spec.d.ts +0 -1
- package/lib/primitive/index.spec.js +0 -62
- package/lib/rfc/is-bcp-47.spec.d.ts +0 -1
- package/lib/rfc/is-bcp-47.spec.js +0 -19
- package/lib/token/token-collection.spec.d.ts +0 -1
- package/lib/token/token-collection.spec.js +0 -144
- package/lib/w3c/check-serialized-permissions-policy.spec.d.ts +0 -1
- package/lib/w3c/check-serialized-permissions-policy.spec.js +0 -34
- package/lib/whatwg/check-autocomplete.spec.d.ts +0 -1
- package/lib/whatwg/check-autocomplete.spec.js +0 -379
- package/lib/whatwg/check-datetime/index.spec.d.ts +0 -1
- package/lib/whatwg/check-datetime/index.spec.js +0 -318
- package/lib/whatwg/check-mime-type.spec.d.ts +0 -1
- package/lib/whatwg/check-mime-type.spec.js +0 -58
- package/lib/whatwg/is-abs-url.spec.d.ts +0 -1
- package/lib/whatwg/is-abs-url.spec.js +0 -8
- package/patches/css-tree+2.3.1.patch +0 -23
- package/src/check-multi-types.ts +0 -35
- package/src/check.spec.ts +0 -83
- package/src/check.ts +0 -48
- package/src/css-syntax.spec.ts +0 -167
- package/src/css-syntax.ts +0 -188
- package/src/debug.ts +0 -3
- package/src/defs.ts +0 -811
- package/src/enum.ts +0 -25
- package/src/get-candidate.ts +0 -24
- package/src/index.ts +0 -3
- package/src/keyword-type.ts +0 -64
- package/src/list.spec.ts +0 -133
- package/src/list.ts +0 -34
- package/src/match-result.ts +0 -49
- package/src/number.ts +0 -46
- package/src/primitive/index.spec.ts +0 -65
- package/src/primitive/index.ts +0 -7
- package/src/primitive/is-float.ts +0 -8
- package/src/primitive/is-int.ts +0 -8
- package/src/primitive/is-non-zero-uint.ts +0 -8
- package/src/primitive/is-quantity.ts +0 -38
- package/src/primitive/is-uint.ts +0 -15
- package/src/primitive/range.ts +0 -14
- package/src/primitive/split-unit.ts +0 -20
- package/src/rfc/is-bcp-47.spec.ts +0 -23
- package/src/rfc/is-bcp-47.ts +0 -13
- package/src/token/index.ts +0 -2
- package/src/token/token-collection.spec.ts +0 -147
- package/src/token/token-collection.ts +0 -444
- package/src/token/token.ts +0 -144
- package/src/types.schema.ts +0 -1113
- package/src/types.ts +0 -118
- package/src/w3c/check-serialized-permissions-policy.spec.ts +0 -38
- package/src/w3c/check-serialized-permissions-policy.ts +0 -303
- package/src/whatwg/check-autocomplete.spec.ts +0 -387
- package/src/whatwg/check-autocomplete.ts +0 -380
- package/src/whatwg/check-datetime/date-string.ts +0 -44
- package/src/whatwg/check-datetime/datetime-tokens.ts +0 -600
- package/src/whatwg/check-datetime/duration-string.ts +0 -399
- package/src/whatwg/check-datetime/global-date-and-time-string.ts +0 -96
- package/src/whatwg/check-datetime/index.spec.ts +0 -333
- package/src/whatwg/check-datetime/index.ts +0 -36
- package/src/whatwg/check-datetime/local-date-and-time-string.ts +0 -163
- package/src/whatwg/check-datetime/month-string.ts +0 -31
- package/src/whatwg/check-datetime/time-string.ts +0 -49
- package/src/whatwg/check-datetime/time-zone-offset-string.ts +0 -93
- package/src/whatwg/check-datetime/week-string.ts +0 -41
- package/src/whatwg/check-datetime/year-string.ts +0 -26
- package/src/whatwg/check-datetime/yearless-date-string.ts +0 -38
- package/src/whatwg/check-mime-type.spec.ts +0 -59
- package/src/whatwg/check-mime-type.ts +0 -46
- package/src/whatwg/is-abs-url.spec.ts +0 -8
- package/src/whatwg/is-abs-url.ts +0 -31
- package/src/whatwg/is-browser-context-name.ts +0 -16
- package/src/whatwg/is-custom-element-name.ts +0 -76
- package/src/whatwg/is-itemprop-name.ts +0 -17
- package/tsconfig.test.json +0 -3
- package/tsconfig.tsbuildinfo +0 -1
- /package/lib/{check.spec.d.ts → token/types.js} +0 -0
package/types.schema.json
CHANGED
|
@@ -7,35 +7,70 @@
|
|
|
7
7
|
"type": "string",
|
|
8
8
|
"enum": [
|
|
9
9
|
"<'--*'>",
|
|
10
|
+
"<'-moz-appearance'>",
|
|
11
|
+
"<'-moz-background-clip'>",
|
|
12
|
+
"<'-moz-binding'>",
|
|
13
|
+
"<'-moz-border-bottom-colors'>",
|
|
14
|
+
"<'-moz-border-left-colors'>",
|
|
15
|
+
"<'-moz-border-radius-bottomleft'>",
|
|
16
|
+
"<'-moz-border-radius-bottomright'>",
|
|
17
|
+
"<'-moz-border-radius-topleft'>",
|
|
18
|
+
"<'-moz-border-radius-topright'>",
|
|
19
|
+
"<'-moz-border-right-colors'>",
|
|
20
|
+
"<'-moz-border-top-colors'>",
|
|
21
|
+
"<'-moz-context-properties'>",
|
|
22
|
+
"<'-moz-control-character-visibility'>",
|
|
23
|
+
"<'-moz-float-edge'>",
|
|
24
|
+
"<'-moz-force-broken-image-icon'>",
|
|
25
|
+
"<'-moz-image-region'>",
|
|
26
|
+
"<'-moz-orient'>",
|
|
27
|
+
"<'-moz-osx-font-smoothing'>",
|
|
28
|
+
"<'-moz-outline-radius'>",
|
|
29
|
+
"<'-moz-outline-radius-bottomleft'>",
|
|
30
|
+
"<'-moz-outline-radius-bottomright'>",
|
|
31
|
+
"<'-moz-outline-radius-topleft'>",
|
|
32
|
+
"<'-moz-outline-radius-topright'>",
|
|
33
|
+
"<'-moz-stack-sizing'>",
|
|
34
|
+
"<'-moz-text-blink'>",
|
|
35
|
+
"<'-moz-user-focus'>",
|
|
36
|
+
"<'-moz-user-input'>",
|
|
37
|
+
"<'-moz-user-modify'>",
|
|
38
|
+
"<'-moz-user-select'>",
|
|
39
|
+
"<'-moz-window-dragging'>",
|
|
40
|
+
"<'-moz-window-shadow'>",
|
|
10
41
|
"<'-ms-accelerator'>",
|
|
11
42
|
"<'-ms-block-progression'>",
|
|
12
43
|
"<'-ms-content-zoom-chaining'>",
|
|
13
|
-
"<'-ms-content-zooming'>",
|
|
14
44
|
"<'-ms-content-zoom-limit'>",
|
|
15
45
|
"<'-ms-content-zoom-limit-max'>",
|
|
16
46
|
"<'-ms-content-zoom-limit-min'>",
|
|
17
47
|
"<'-ms-content-zoom-snap'>",
|
|
18
48
|
"<'-ms-content-zoom-snap-points'>",
|
|
19
49
|
"<'-ms-content-zoom-snap-type'>",
|
|
50
|
+
"<'-ms-content-zooming'>",
|
|
20
51
|
"<'-ms-filter'>",
|
|
52
|
+
"<'-ms-flex-align'>",
|
|
53
|
+
"<'-ms-flex-item-align'>",
|
|
54
|
+
"<'-ms-flex-line-pack'>",
|
|
55
|
+
"<'-ms-flex-negative'>",
|
|
56
|
+
"<'-ms-flex-order'>",
|
|
57
|
+
"<'-ms-flex-pack'>",
|
|
58
|
+
"<'-ms-flex-positive'>",
|
|
59
|
+
"<'-ms-flex-preferred-size'>",
|
|
21
60
|
"<'-ms-flow-from'>",
|
|
22
61
|
"<'-ms-flow-into'>",
|
|
62
|
+
"<'-ms-grid-column-align'>",
|
|
23
63
|
"<'-ms-grid-columns'>",
|
|
64
|
+
"<'-ms-grid-row-align'>",
|
|
24
65
|
"<'-ms-grid-rows'>",
|
|
25
66
|
"<'-ms-high-contrast-adjust'>",
|
|
26
67
|
"<'-ms-hyphenate-limit-chars'>",
|
|
68
|
+
"<'-ms-hyphenate-limit-last'>",
|
|
27
69
|
"<'-ms-hyphenate-limit-lines'>",
|
|
28
70
|
"<'-ms-hyphenate-limit-zone'>",
|
|
29
71
|
"<'-ms-ime-align'>",
|
|
72
|
+
"<'-ms-interpolation-mode'>",
|
|
30
73
|
"<'-ms-overflow-style'>",
|
|
31
|
-
"<'-ms-scrollbar-3dlight-color'>",
|
|
32
|
-
"<'-ms-scrollbar-arrow-color'>",
|
|
33
|
-
"<'-ms-scrollbar-base-color'>",
|
|
34
|
-
"<'-ms-scrollbar-darkshadow-color'>",
|
|
35
|
-
"<'-ms-scrollbar-face-color'>",
|
|
36
|
-
"<'-ms-scrollbar-highlight-color'>",
|
|
37
|
-
"<'-ms-scrollbar-shadow-color'>",
|
|
38
|
-
"<'-ms-scrollbar-track-color'>",
|
|
39
74
|
"<'-ms-scroll-chaining'>",
|
|
40
75
|
"<'-ms-scroll-limit'>",
|
|
41
76
|
"<'-ms-scroll-limit-x-max'>",
|
|
@@ -49,44 +84,35 @@
|
|
|
49
84
|
"<'-ms-scroll-snap-x'>",
|
|
50
85
|
"<'-ms-scroll-snap-y'>",
|
|
51
86
|
"<'-ms-scroll-translation'>",
|
|
87
|
+
"<'-ms-scrollbar-3dlight-color'>",
|
|
88
|
+
"<'-ms-scrollbar-arrow-color'>",
|
|
89
|
+
"<'-ms-scrollbar-base-color'>",
|
|
90
|
+
"<'-ms-scrollbar-darkshadow-color'>",
|
|
91
|
+
"<'-ms-scrollbar-face-color'>",
|
|
92
|
+
"<'-ms-scrollbar-highlight-color'>",
|
|
93
|
+
"<'-ms-scrollbar-shadow-color'>",
|
|
94
|
+
"<'-ms-scrollbar-track-color'>",
|
|
52
95
|
"<'-ms-text-autospace'>",
|
|
53
96
|
"<'-ms-touch-select'>",
|
|
54
97
|
"<'-ms-user-select'>",
|
|
55
98
|
"<'-ms-wrap-flow'>",
|
|
56
99
|
"<'-ms-wrap-margin'>",
|
|
57
100
|
"<'-ms-wrap-through'>",
|
|
58
|
-
"<'-moz-appearance'>",
|
|
59
|
-
"<'-moz-binding'>",
|
|
60
|
-
"<'-moz-border-bottom-colors'>",
|
|
61
|
-
"<'-moz-border-left-colors'>",
|
|
62
|
-
"<'-moz-border-right-colors'>",
|
|
63
|
-
"<'-moz-border-top-colors'>",
|
|
64
|
-
"<'-moz-context-properties'>",
|
|
65
|
-
"<'-moz-float-edge'>",
|
|
66
|
-
"<'-moz-force-broken-image-icon'>",
|
|
67
|
-
"<'-moz-image-region'>",
|
|
68
|
-
"<'-moz-orient'>",
|
|
69
|
-
"<'-moz-outline-radius'>",
|
|
70
|
-
"<'-moz-outline-radius-bottomleft'>",
|
|
71
|
-
"<'-moz-outline-radius-bottomright'>",
|
|
72
|
-
"<'-moz-outline-radius-topleft'>",
|
|
73
|
-
"<'-moz-outline-radius-topright'>",
|
|
74
|
-
"<'-moz-stack-sizing'>",
|
|
75
|
-
"<'-moz-text-blink'>",
|
|
76
|
-
"<'-moz-user-focus'>",
|
|
77
|
-
"<'-moz-user-input'>",
|
|
78
|
-
"<'-moz-user-modify'>",
|
|
79
|
-
"<'-moz-window-dragging'>",
|
|
80
|
-
"<'-moz-window-shadow'>",
|
|
81
101
|
"<'-webkit-appearance'>",
|
|
102
|
+
"<'-webkit-background-clip'>",
|
|
82
103
|
"<'-webkit-border-before'>",
|
|
83
104
|
"<'-webkit-border-before-color'>",
|
|
84
105
|
"<'-webkit-border-before-style'>",
|
|
85
106
|
"<'-webkit-border-before-width'>",
|
|
86
107
|
"<'-webkit-box-reflect'>",
|
|
108
|
+
"<'-webkit-column-break-after'>",
|
|
109
|
+
"<'-webkit-column-break-before'>",
|
|
110
|
+
"<'-webkit-column-break-inside'>",
|
|
111
|
+
"<'-webkit-font-smoothing'>",
|
|
87
112
|
"<'-webkit-line-clamp'>",
|
|
88
113
|
"<'-webkit-mask'>",
|
|
89
114
|
"<'-webkit-mask-attachment'>",
|
|
115
|
+
"<'-webkit-mask-box-image'>",
|
|
90
116
|
"<'-webkit-mask-clip'>",
|
|
91
117
|
"<'-webkit-mask-composite'>",
|
|
92
118
|
"<'-webkit-mask-image'>",
|
|
@@ -99,18 +125,23 @@
|
|
|
99
125
|
"<'-webkit-mask-repeat-y'>",
|
|
100
126
|
"<'-webkit-mask-size'>",
|
|
101
127
|
"<'-webkit-overflow-scrolling'>",
|
|
128
|
+
"<'-webkit-print-color-adjust'>",
|
|
102
129
|
"<'-webkit-tap-highlight-color'>",
|
|
103
130
|
"<'-webkit-text-fill-color'>",
|
|
131
|
+
"<'-webkit-text-security'>",
|
|
104
132
|
"<'-webkit-text-stroke'>",
|
|
105
133
|
"<'-webkit-text-stroke-color'>",
|
|
106
134
|
"<'-webkit-text-stroke-width'>",
|
|
107
135
|
"<'-webkit-touch-callout'>",
|
|
136
|
+
"<'-webkit-user-drag'>",
|
|
108
137
|
"<'-webkit-user-modify'>",
|
|
138
|
+
"<'-webkit-user-select'>",
|
|
109
139
|
"<'accent-color'>",
|
|
110
140
|
"<'align-content'>",
|
|
111
141
|
"<'align-items'>",
|
|
112
142
|
"<'align-self'>",
|
|
113
143
|
"<'align-tracks'>",
|
|
144
|
+
"<'alignment-baseline'>",
|
|
114
145
|
"<'all'>",
|
|
115
146
|
"<'animation'>",
|
|
116
147
|
"<'animation-composition'>",
|
|
@@ -121,8 +152,8 @@
|
|
|
121
152
|
"<'animation-iteration-count'>",
|
|
122
153
|
"<'animation-name'>",
|
|
123
154
|
"<'animation-play-state'>",
|
|
124
|
-
"<'animation-timing-function'>",
|
|
125
155
|
"<'animation-timeline'>",
|
|
156
|
+
"<'animation-timing-function'>",
|
|
126
157
|
"<'appearance'>",
|
|
127
158
|
"<'aspect-ratio'>",
|
|
128
159
|
"<'azimuth'>",
|
|
@@ -140,13 +171,13 @@
|
|
|
140
171
|
"<'background-position-y'>",
|
|
141
172
|
"<'background-repeat'>",
|
|
142
173
|
"<'background-size'>",
|
|
174
|
+
"<'baseline-shift'>",
|
|
175
|
+
"<'behavior'>",
|
|
143
176
|
"<'block-overflow'>",
|
|
144
177
|
"<'block-size'>",
|
|
145
178
|
"<'border'>",
|
|
146
179
|
"<'border-block'>",
|
|
147
180
|
"<'border-block-color'>",
|
|
148
|
-
"<'border-block-style'>",
|
|
149
|
-
"<'border-block-width'>",
|
|
150
181
|
"<'border-block-end'>",
|
|
151
182
|
"<'border-block-end-color'>",
|
|
152
183
|
"<'border-block-end-style'>",
|
|
@@ -155,6 +186,8 @@
|
|
|
155
186
|
"<'border-block-start-color'>",
|
|
156
187
|
"<'border-block-start-style'>",
|
|
157
188
|
"<'border-block-start-width'>",
|
|
189
|
+
"<'border-block-style'>",
|
|
190
|
+
"<'border-block-width'>",
|
|
158
191
|
"<'border-bottom'>",
|
|
159
192
|
"<'border-bottom-color'>",
|
|
160
193
|
"<'border-bottom-left-radius'>",
|
|
@@ -172,10 +205,8 @@
|
|
|
172
205
|
"<'border-image-source'>",
|
|
173
206
|
"<'border-image-width'>",
|
|
174
207
|
"<'border-inline'>",
|
|
175
|
-
"<'border-inline-end'>",
|
|
176
208
|
"<'border-inline-color'>",
|
|
177
|
-
"<'border-inline-
|
|
178
|
-
"<'border-inline-width'>",
|
|
209
|
+
"<'border-inline-end'>",
|
|
179
210
|
"<'border-inline-end-color'>",
|
|
180
211
|
"<'border-inline-end-style'>",
|
|
181
212
|
"<'border-inline-end-width'>",
|
|
@@ -183,6 +214,8 @@
|
|
|
183
214
|
"<'border-inline-start-color'>",
|
|
184
215
|
"<'border-inline-start-style'>",
|
|
185
216
|
"<'border-inline-start-width'>",
|
|
217
|
+
"<'border-inline-style'>",
|
|
218
|
+
"<'border-inline-width'>",
|
|
186
219
|
"<'border-left'>",
|
|
187
220
|
"<'border-left-color'>",
|
|
188
221
|
"<'border-left-style'>",
|
|
@@ -225,8 +258,8 @@
|
|
|
225
258
|
"<'clear'>",
|
|
226
259
|
"<'clip'>",
|
|
227
260
|
"<'clip-path'>",
|
|
261
|
+
"<'clip-rule'>",
|
|
228
262
|
"<'color'>",
|
|
229
|
-
"<'print-color-adjust'>",
|
|
230
263
|
"<'color-scheme'>",
|
|
231
264
|
"<'column-count'>",
|
|
232
265
|
"<'column-fill'>",
|
|
@@ -239,20 +272,27 @@
|
|
|
239
272
|
"<'column-width'>",
|
|
240
273
|
"<'columns'>",
|
|
241
274
|
"<'contain'>",
|
|
242
|
-
"<'contain-intrinsic-size'>",
|
|
243
275
|
"<'contain-intrinsic-block-size'>",
|
|
244
276
|
"<'contain-intrinsic-height'>",
|
|
245
277
|
"<'contain-intrinsic-inline-size'>",
|
|
278
|
+
"<'contain-intrinsic-size'>",
|
|
246
279
|
"<'contain-intrinsic-width'>",
|
|
247
280
|
"<'content'>",
|
|
248
281
|
"<'content-visibility'>",
|
|
249
282
|
"<'counter-increment'>",
|
|
250
283
|
"<'counter-reset'>",
|
|
251
284
|
"<'counter-set'>",
|
|
285
|
+
"<'cue'>",
|
|
286
|
+
"<'cue-after'>",
|
|
287
|
+
"<'cue-before'>",
|
|
252
288
|
"<'cursor'>",
|
|
253
289
|
"<'direction'>",
|
|
254
290
|
"<'display'>",
|
|
291
|
+
"<'dominant-baseline'>",
|
|
255
292
|
"<'empty-cells'>",
|
|
293
|
+
"<'fill'>",
|
|
294
|
+
"<'fill-opacity'>",
|
|
295
|
+
"<'fill-rule'>",
|
|
256
296
|
"<'filter'>",
|
|
257
297
|
"<'flex'>",
|
|
258
298
|
"<'flex-basis'>",
|
|
@@ -268,7 +308,6 @@
|
|
|
268
308
|
"<'font-kerning'>",
|
|
269
309
|
"<'font-language-override'>",
|
|
270
310
|
"<'font-optical-sizing'>",
|
|
271
|
-
"<'font-variation-settings'>",
|
|
272
311
|
"<'font-size'>",
|
|
273
312
|
"<'font-size-adjust'>",
|
|
274
313
|
"<'font-smooth'>",
|
|
@@ -282,9 +321,12 @@
|
|
|
282
321
|
"<'font-variant-ligatures'>",
|
|
283
322
|
"<'font-variant-numeric'>",
|
|
284
323
|
"<'font-variant-position'>",
|
|
324
|
+
"<'font-variation-settings'>",
|
|
285
325
|
"<'font-weight'>",
|
|
286
326
|
"<'forced-color-adjust'>",
|
|
287
327
|
"<'gap'>",
|
|
328
|
+
"<'glyph-orientation-horizontal'>",
|
|
329
|
+
"<'glyph-orientation-vertical'>",
|
|
288
330
|
"<'grid'>",
|
|
289
331
|
"<'grid-area'>",
|
|
290
332
|
"<'grid-auto-columns'>",
|
|
@@ -327,6 +369,7 @@
|
|
|
327
369
|
"<'justify-items'>",
|
|
328
370
|
"<'justify-self'>",
|
|
329
371
|
"<'justify-tracks'>",
|
|
372
|
+
"<'kerning'>",
|
|
330
373
|
"<'left'>",
|
|
331
374
|
"<'letter-spacing'>",
|
|
332
375
|
"<'line-break'>",
|
|
@@ -349,6 +392,10 @@
|
|
|
349
392
|
"<'margin-right'>",
|
|
350
393
|
"<'margin-top'>",
|
|
351
394
|
"<'margin-trim'>",
|
|
395
|
+
"<'marker'>",
|
|
396
|
+
"<'marker-end'>",
|
|
397
|
+
"<'marker-mid'>",
|
|
398
|
+
"<'marker-start'>",
|
|
352
399
|
"<'mask'>",
|
|
353
400
|
"<'mask-border'>",
|
|
354
401
|
"<'mask-border-mode'>",
|
|
@@ -425,6 +472,9 @@
|
|
|
425
472
|
"<'page-break-before'>",
|
|
426
473
|
"<'page-break-inside'>",
|
|
427
474
|
"<'paint-order'>",
|
|
475
|
+
"<'pause'>",
|
|
476
|
+
"<'pause-after'>",
|
|
477
|
+
"<'pause-before'>",
|
|
428
478
|
"<'perspective'>",
|
|
429
479
|
"<'perspective-origin'>",
|
|
430
480
|
"<'place-content'>",
|
|
@@ -432,8 +482,12 @@
|
|
|
432
482
|
"<'place-self'>",
|
|
433
483
|
"<'pointer-events'>",
|
|
434
484
|
"<'position'>",
|
|
485
|
+
"<'print-color-adjust'>",
|
|
435
486
|
"<'quotes'>",
|
|
436
487
|
"<'resize'>",
|
|
488
|
+
"<'rest'>",
|
|
489
|
+
"<'rest-after'>",
|
|
490
|
+
"<'rest-before'>",
|
|
437
491
|
"<'right'>",
|
|
438
492
|
"<'rotate'>",
|
|
439
493
|
"<'row-gap'>",
|
|
@@ -441,29 +495,26 @@
|
|
|
441
495
|
"<'ruby-merge'>",
|
|
442
496
|
"<'ruby-position'>",
|
|
443
497
|
"<'scale'>",
|
|
444
|
-
"<'scrollbar-color'>",
|
|
445
|
-
"<'scrollbar-gutter'>",
|
|
446
|
-
"<'scrollbar-width'>",
|
|
447
498
|
"<'scroll-behavior'>",
|
|
448
499
|
"<'scroll-margin'>",
|
|
449
500
|
"<'scroll-margin-block'>",
|
|
450
|
-
"<'scroll-margin-block-start'>",
|
|
451
501
|
"<'scroll-margin-block-end'>",
|
|
502
|
+
"<'scroll-margin-block-start'>",
|
|
452
503
|
"<'scroll-margin-bottom'>",
|
|
453
504
|
"<'scroll-margin-inline'>",
|
|
454
|
-
"<'scroll-margin-inline-start'>",
|
|
455
505
|
"<'scroll-margin-inline-end'>",
|
|
506
|
+
"<'scroll-margin-inline-start'>",
|
|
456
507
|
"<'scroll-margin-left'>",
|
|
457
508
|
"<'scroll-margin-right'>",
|
|
458
509
|
"<'scroll-margin-top'>",
|
|
459
510
|
"<'scroll-padding'>",
|
|
460
511
|
"<'scroll-padding-block'>",
|
|
461
|
-
"<'scroll-padding-block-start'>",
|
|
462
512
|
"<'scroll-padding-block-end'>",
|
|
513
|
+
"<'scroll-padding-block-start'>",
|
|
463
514
|
"<'scroll-padding-bottom'>",
|
|
464
515
|
"<'scroll-padding-inline'>",
|
|
465
|
-
"<'scroll-padding-inline-start'>",
|
|
466
516
|
"<'scroll-padding-inline-end'>",
|
|
517
|
+
"<'scroll-padding-inline-start'>",
|
|
467
518
|
"<'scroll-padding-left'>",
|
|
468
519
|
"<'scroll-padding-right'>",
|
|
469
520
|
"<'scroll-padding-top'>",
|
|
@@ -479,13 +530,29 @@
|
|
|
479
530
|
"<'scroll-timeline'>",
|
|
480
531
|
"<'scroll-timeline-axis'>",
|
|
481
532
|
"<'scroll-timeline-name'>",
|
|
533
|
+
"<'scrollbar-color'>",
|
|
534
|
+
"<'scrollbar-gutter'>",
|
|
535
|
+
"<'scrollbar-width'>",
|
|
482
536
|
"<'shape-image-threshold'>",
|
|
483
537
|
"<'shape-margin'>",
|
|
484
538
|
"<'shape-outside'>",
|
|
539
|
+
"<'shape-rendering'>",
|
|
540
|
+
"<'speak'>",
|
|
541
|
+
"<'speak-as'>",
|
|
542
|
+
"<'src'>",
|
|
543
|
+
"<'stroke'>",
|
|
544
|
+
"<'stroke-dasharray'>",
|
|
545
|
+
"<'stroke-dashoffset'>",
|
|
546
|
+
"<'stroke-linecap'>",
|
|
547
|
+
"<'stroke-linejoin'>",
|
|
548
|
+
"<'stroke-miterlimit'>",
|
|
549
|
+
"<'stroke-opacity'>",
|
|
550
|
+
"<'stroke-width'>",
|
|
485
551
|
"<'tab-size'>",
|
|
486
552
|
"<'table-layout'>",
|
|
487
553
|
"<'text-align'>",
|
|
488
554
|
"<'text-align-last'>",
|
|
555
|
+
"<'text-anchor'>",
|
|
489
556
|
"<'text-combine-upright'>",
|
|
490
557
|
"<'text-decoration'>",
|
|
491
558
|
"<'text-decoration-color'>",
|
|
@@ -521,9 +588,18 @@
|
|
|
521
588
|
"<'transition-timing-function'>",
|
|
522
589
|
"<'translate'>",
|
|
523
590
|
"<'unicode-bidi'>",
|
|
591
|
+
"<'unicode-range'>",
|
|
524
592
|
"<'user-select'>",
|
|
525
593
|
"<'vertical-align'>",
|
|
526
594
|
"<'visibility'>",
|
|
595
|
+
"<'voice-balance'>",
|
|
596
|
+
"<'voice-duration'>",
|
|
597
|
+
"<'voice-family'>",
|
|
598
|
+
"<'voice-pitch'>",
|
|
599
|
+
"<'voice-range'>",
|
|
600
|
+
"<'voice-rate'>",
|
|
601
|
+
"<'voice-stress'>",
|
|
602
|
+
"<'voice-volume'>",
|
|
527
603
|
"<'white-space'>",
|
|
528
604
|
"<'widows'>",
|
|
529
605
|
"<'width'>",
|
|
@@ -534,154 +610,134 @@
|
|
|
534
610
|
"<'writing-mode'>",
|
|
535
611
|
"<'z-index'>",
|
|
536
612
|
"<'zoom'>",
|
|
537
|
-
"<
|
|
538
|
-
"<
|
|
539
|
-
"
|
|
540
|
-
"
|
|
541
|
-
"
|
|
542
|
-
"
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
"
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"
|
|
557
|
-
"
|
|
558
|
-
"
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
-
"
|
|
565
|
-
"
|
|
566
|
-
"<
|
|
567
|
-
"<
|
|
568
|
-
"<
|
|
569
|
-
"<
|
|
570
|
-
"<
|
|
571
|
-
"<
|
|
572
|
-
"<
|
|
573
|
-
"<
|
|
574
|
-
"<
|
|
575
|
-
"<
|
|
576
|
-
"<
|
|
577
|
-
"<
|
|
578
|
-
"<
|
|
579
|
-
"<
|
|
580
|
-
"<
|
|
581
|
-
"<'marker'>",
|
|
582
|
-
"<'marker-end'>",
|
|
583
|
-
"<'marker-mid'>",
|
|
584
|
-
"<'marker-start'>",
|
|
585
|
-
"<'pause'>",
|
|
586
|
-
"<'pause-after'>",
|
|
587
|
-
"<'pause-before'>",
|
|
588
|
-
"<'rest'>",
|
|
589
|
-
"<'rest-after'>",
|
|
590
|
-
"<'rest-before'>",
|
|
591
|
-
"<'shape-rendering'>",
|
|
592
|
-
"<'src'>",
|
|
593
|
-
"<'speak'>",
|
|
594
|
-
"<'speak-as'>",
|
|
595
|
-
"<'stroke'>",
|
|
596
|
-
"<'stroke-dasharray'>",
|
|
597
|
-
"<'stroke-dashoffset'>",
|
|
598
|
-
"<'stroke-linecap'>",
|
|
599
|
-
"<'stroke-linejoin'>",
|
|
600
|
-
"<'stroke-miterlimit'>",
|
|
601
|
-
"<'stroke-opacity'>",
|
|
602
|
-
"<'stroke-width'>",
|
|
603
|
-
"<'text-anchor'>",
|
|
604
|
-
"<'unicode-range'>",
|
|
605
|
-
"<'voice-balance'>",
|
|
606
|
-
"<'voice-duration'>",
|
|
607
|
-
"<'voice-family'>",
|
|
608
|
-
"<'voice-pitch'>",
|
|
609
|
-
"<'voice-range'>",
|
|
610
|
-
"<'voice-rate'>",
|
|
611
|
-
"<'voice-stress'>",
|
|
612
|
-
"<'voice-volume'>",
|
|
613
|
-
"<abs()>",
|
|
614
|
-
"<absolute-size>",
|
|
615
|
-
"<acos()>",
|
|
616
|
-
"<alpha-value>",
|
|
617
|
-
"<angle-percentage>",
|
|
618
|
-
"<angular-color-hint>",
|
|
619
|
-
"<angular-color-stop>",
|
|
620
|
-
"<angular-color-stop-list>",
|
|
613
|
+
"<(-token>",
|
|
614
|
+
"<)-token>",
|
|
615
|
+
"<-legacy-gradient>",
|
|
616
|
+
"<-legacy-linear-gradient-arguments>",
|
|
617
|
+
"<-legacy-linear-gradient>",
|
|
618
|
+
"<-legacy-radial-gradient-arguments>",
|
|
619
|
+
"<-legacy-radial-gradient-shape>",
|
|
620
|
+
"<-legacy-radial-gradient-size>",
|
|
621
|
+
"<-legacy-radial-gradient>",
|
|
622
|
+
"<-legacy-repeating-linear-gradient>",
|
|
623
|
+
"<-legacy-repeating-radial-gradient>",
|
|
624
|
+
"<-ms-filter-function-legacy>",
|
|
625
|
+
"<-ms-filter-function-list>",
|
|
626
|
+
"<-ms-filter-function-progid>",
|
|
627
|
+
"<-ms-filter-function>",
|
|
628
|
+
"<-ms-filter>",
|
|
629
|
+
"<-non-standard-color>",
|
|
630
|
+
"<-non-standard-display>",
|
|
631
|
+
"<-non-standard-font>",
|
|
632
|
+
"<-non-standard-image-rendering>",
|
|
633
|
+
"<-non-standard-overflow>",
|
|
634
|
+
"<-non-standard-width>",
|
|
635
|
+
"<-webkit-gradient()>",
|
|
636
|
+
"<-webkit-gradient-color-stop>",
|
|
637
|
+
"<-webkit-gradient-point>",
|
|
638
|
+
"<-webkit-gradient-radius>",
|
|
639
|
+
"<-webkit-gradient-type>",
|
|
640
|
+
"<-webkit-mask-box-repeat>",
|
|
641
|
+
"<-webkit-mask-clip-style>",
|
|
642
|
+
"<CDC-token>",
|
|
643
|
+
"<CDO-token>",
|
|
644
|
+
"<[-token>",
|
|
645
|
+
"<]-token>",
|
|
646
|
+
"<abs()>",
|
|
647
|
+
"<absolute-size>",
|
|
648
|
+
"<acos()>",
|
|
649
|
+
"<age>",
|
|
650
|
+
"<alpha-value>",
|
|
651
|
+
"<an-plus-b>",
|
|
652
|
+
"<angle-percentage>",
|
|
653
|
+
"<angle>",
|
|
654
|
+
"<angular-color-hint>",
|
|
655
|
+
"<angular-color-stop-list>",
|
|
656
|
+
"<angular-color-stop>",
|
|
621
657
|
"<animateable-feature>",
|
|
658
|
+
"<any-value>",
|
|
622
659
|
"<asin()>",
|
|
660
|
+
"<at-keyword-token>",
|
|
623
661
|
"<atan()>",
|
|
624
662
|
"<atan2()>",
|
|
625
663
|
"<attachment>",
|
|
626
664
|
"<attr()>",
|
|
665
|
+
"<attr-fallback>",
|
|
627
666
|
"<attr-matcher>",
|
|
628
667
|
"<attr-modifier>",
|
|
668
|
+
"<attr-name>",
|
|
629
669
|
"<attribute-selector>",
|
|
630
670
|
"<auto-repeat>",
|
|
631
671
|
"<auto-track-list>",
|
|
632
672
|
"<axis>",
|
|
673
|
+
"<bad-string-token>",
|
|
674
|
+
"<bad-url-token>",
|
|
633
675
|
"<baseline-position>",
|
|
634
676
|
"<basic-shape>",
|
|
677
|
+
"<bcp-47>",
|
|
678
|
+
"<bg-clip>",
|
|
635
679
|
"<bg-image>",
|
|
636
680
|
"<bg-layer>",
|
|
637
681
|
"<bg-position>",
|
|
638
682
|
"<bg-size>",
|
|
639
|
-
"<blur()>",
|
|
640
683
|
"<blend-mode>",
|
|
684
|
+
"<blur()>",
|
|
685
|
+
"<bottom>",
|
|
641
686
|
"<box>",
|
|
642
687
|
"<brightness()>",
|
|
643
688
|
"<calc()>",
|
|
644
|
-
"<calc-
|
|
689
|
+
"<calc-constant>",
|
|
645
690
|
"<calc-product>",
|
|
691
|
+
"<calc-sum>",
|
|
646
692
|
"<calc-value>",
|
|
647
|
-
"<calc-constant>",
|
|
648
693
|
"<cf-final-image>",
|
|
649
694
|
"<cf-mixing-image>",
|
|
650
695
|
"<circle()>",
|
|
651
696
|
"<clamp()>",
|
|
652
697
|
"<class-selector>",
|
|
653
698
|
"<clip-source>",
|
|
654
|
-
"<
|
|
655
|
-
"<color-stop>",
|
|
699
|
+
"<colon-token>",
|
|
656
700
|
"<color-stop-angle>",
|
|
657
701
|
"<color-stop-length>",
|
|
658
702
|
"<color-stop-list>",
|
|
703
|
+
"<color-stop>",
|
|
704
|
+
"<color>",
|
|
659
705
|
"<combinator>",
|
|
706
|
+
"<comma-token>",
|
|
660
707
|
"<common-lig-values>",
|
|
661
708
|
"<compat-auto>",
|
|
709
|
+
"<complex-selector-list>",
|
|
710
|
+
"<complex-selector>",
|
|
662
711
|
"<composite-style>",
|
|
663
712
|
"<compositing-operator>",
|
|
664
|
-
"<compound-selector>",
|
|
665
713
|
"<compound-selector-list>",
|
|
666
|
-
"<
|
|
667
|
-
"<complex-selector-list>",
|
|
714
|
+
"<compound-selector>",
|
|
668
715
|
"<conic-gradient()>",
|
|
669
|
-
"<contextual-alt-values>",
|
|
670
716
|
"<content-distribution>",
|
|
671
717
|
"<content-list>",
|
|
672
718
|
"<content-position>",
|
|
673
719
|
"<content-replacement>",
|
|
720
|
+
"<contextual-alt-values>",
|
|
674
721
|
"<contrast()>",
|
|
675
722
|
"<cos()>",
|
|
676
|
-
"<counter>",
|
|
677
723
|
"<counter()>",
|
|
678
724
|
"<counter-name>",
|
|
679
|
-
"<counter-style>",
|
|
680
725
|
"<counter-style-name>",
|
|
726
|
+
"<counter-style>",
|
|
727
|
+
"<counter>",
|
|
681
728
|
"<counters()>",
|
|
682
729
|
"<cross-fade()>",
|
|
683
730
|
"<cubic-bezier-timing-function>",
|
|
731
|
+
"<custom-ident>",
|
|
732
|
+
"<custom-property-name>",
|
|
733
|
+
"<decibel>",
|
|
734
|
+
"<declaration-list>",
|
|
735
|
+
"<declaration-value>",
|
|
736
|
+
"<declaration>",
|
|
737
|
+
"<delim-token>",
|
|
684
738
|
"<deprecated-system-color>",
|
|
739
|
+
"<dimension-token>",
|
|
740
|
+
"<dimension>",
|
|
685
741
|
"<discretionary-lig-values>",
|
|
686
742
|
"<display-box>",
|
|
687
743
|
"<display-inside>",
|
|
@@ -690,6 +746,7 @@
|
|
|
690
746
|
"<display-listitem>",
|
|
691
747
|
"<display-outside>",
|
|
692
748
|
"<drop-shadow()>",
|
|
749
|
+
"<easing-function>",
|
|
693
750
|
"<east-asian-variant-values>",
|
|
694
751
|
"<east-asian-width-values>",
|
|
695
752
|
"<element()>",
|
|
@@ -701,65 +758,78 @@
|
|
|
701
758
|
"<family-name>",
|
|
702
759
|
"<feature-tag-value>",
|
|
703
760
|
"<feature-type>",
|
|
704
|
-
"<feature-value-block>",
|
|
705
761
|
"<feature-value-block-list>",
|
|
706
|
-
"<feature-value-
|
|
762
|
+
"<feature-value-block>",
|
|
707
763
|
"<feature-value-declaration-list>",
|
|
764
|
+
"<feature-value-declaration>",
|
|
708
765
|
"<feature-value-name>",
|
|
709
766
|
"<fill-rule>",
|
|
710
|
-
"<filter-function>",
|
|
711
767
|
"<filter-function-list>",
|
|
768
|
+
"<filter-function>",
|
|
712
769
|
"<final-bg-layer>",
|
|
713
770
|
"<fixed-breadth>",
|
|
714
771
|
"<fixed-repeat>",
|
|
715
772
|
"<fixed-size>",
|
|
773
|
+
"<flex>",
|
|
716
774
|
"<font-stretch-absolute>",
|
|
717
775
|
"<font-variant-css21>",
|
|
718
776
|
"<font-weight-absolute>",
|
|
719
777
|
"<frequency-percentage>",
|
|
778
|
+
"<frequency>",
|
|
779
|
+
"<function-token>",
|
|
780
|
+
"<gender>",
|
|
720
781
|
"<general-enclosed>",
|
|
721
782
|
"<generic-family>",
|
|
722
783
|
"<generic-name>",
|
|
784
|
+
"<generic-voice>",
|
|
723
785
|
"<geometry-box>",
|
|
724
786
|
"<gradient>",
|
|
725
787
|
"<grayscale()>",
|
|
726
788
|
"<grid-line>",
|
|
789
|
+
"<hash-token>",
|
|
790
|
+
"<hex-color>",
|
|
727
791
|
"<historical-lig-values>",
|
|
728
792
|
"<hsl()>",
|
|
729
793
|
"<hsla()>",
|
|
730
|
-
"<hue>",
|
|
731
794
|
"<hue-rotate()>",
|
|
795
|
+
"<hue>",
|
|
732
796
|
"<hwb()>",
|
|
733
797
|
"<hypot()>",
|
|
734
798
|
"<id-selector>",
|
|
735
|
-
"<
|
|
799
|
+
"<ident-token>",
|
|
800
|
+
"<ident>",
|
|
736
801
|
"<image()>",
|
|
737
802
|
"<image-set()>",
|
|
738
803
|
"<image-set-option>",
|
|
739
804
|
"<image-src>",
|
|
740
805
|
"<image-tags>",
|
|
806
|
+
"<image>",
|
|
741
807
|
"<inflexible-breadth>",
|
|
742
808
|
"<inset()>",
|
|
809
|
+
"<integer>",
|
|
743
810
|
"<invert()>",
|
|
744
|
-
"<keyframes-name>",
|
|
745
|
-
"<keyframe-block>",
|
|
746
811
|
"<keyframe-block-list>",
|
|
812
|
+
"<keyframe-block>",
|
|
747
813
|
"<keyframe-selector>",
|
|
814
|
+
"<keyframes-name>",
|
|
748
815
|
"<lab()>",
|
|
749
816
|
"<layer()>",
|
|
750
817
|
"<layer-name>",
|
|
751
818
|
"<lch()>",
|
|
752
819
|
"<leader()>",
|
|
753
820
|
"<leader-type>",
|
|
821
|
+
"<left>",
|
|
754
822
|
"<length-percentage>",
|
|
755
|
-
"<
|
|
823
|
+
"<length>",
|
|
756
824
|
"<line-name-list>",
|
|
825
|
+
"<line-names>",
|
|
757
826
|
"<line-style>",
|
|
758
827
|
"<line-width>",
|
|
759
828
|
"<linear-color-hint>",
|
|
760
829
|
"<linear-color-stop>",
|
|
761
830
|
"<linear-gradient()>",
|
|
762
831
|
"<log()>",
|
|
832
|
+
"<mask-image>",
|
|
763
833
|
"<mask-layer>",
|
|
764
834
|
"<mask-position>",
|
|
765
835
|
"<mask-reference>",
|
|
@@ -769,14 +839,14 @@
|
|
|
769
839
|
"<matrix3d()>",
|
|
770
840
|
"<max()>",
|
|
771
841
|
"<media-and>",
|
|
772
|
-
"<media-condition>",
|
|
773
842
|
"<media-condition-without-or>",
|
|
843
|
+
"<media-condition>",
|
|
774
844
|
"<media-feature>",
|
|
775
845
|
"<media-in-parens>",
|
|
776
846
|
"<media-not>",
|
|
777
847
|
"<media-or>",
|
|
778
|
-
"<media-query>",
|
|
779
848
|
"<media-query-list>",
|
|
849
|
+
"<media-query>",
|
|
780
850
|
"<media-type>",
|
|
781
851
|
"<mf-boolean>",
|
|
782
852
|
"<mf-name>",
|
|
@@ -790,22 +860,29 @@
|
|
|
790
860
|
"<named-color>",
|
|
791
861
|
"<namespace-prefix>",
|
|
792
862
|
"<ns-prefix>",
|
|
863
|
+
"<nth>",
|
|
864
|
+
"<number-one-or-greater>",
|
|
793
865
|
"<number-percentage>",
|
|
866
|
+
"<number-token>",
|
|
867
|
+
"<number-zero-one>",
|
|
868
|
+
"<number>",
|
|
794
869
|
"<numeric-figure-values>",
|
|
795
870
|
"<numeric-fraction-values>",
|
|
796
871
|
"<numeric-spacing-values>",
|
|
797
|
-
"<nth>",
|
|
798
872
|
"<opacity()>",
|
|
799
|
-
"<overflow-position>",
|
|
800
873
|
"<outline-radius>",
|
|
874
|
+
"<overflow-position>",
|
|
801
875
|
"<page-body>",
|
|
802
|
-
"<page-margin-box>",
|
|
803
876
|
"<page-margin-box-type>",
|
|
877
|
+
"<page-margin-box>",
|
|
804
878
|
"<page-selector-list>",
|
|
805
879
|
"<page-selector>",
|
|
806
880
|
"<page-size>",
|
|
807
|
-
"<path()>",
|
|
808
881
|
"<paint()>",
|
|
882
|
+
"<paint>",
|
|
883
|
+
"<path()>",
|
|
884
|
+
"<percentage-token>",
|
|
885
|
+
"<percentage>",
|
|
809
886
|
"<perspective()>",
|
|
810
887
|
"<polygon()>",
|
|
811
888
|
"<position>",
|
|
@@ -816,17 +893,19 @@
|
|
|
816
893
|
"<quote>",
|
|
817
894
|
"<radial-gradient()>",
|
|
818
895
|
"<ratio>",
|
|
819
|
-
"<relative-selector>",
|
|
820
896
|
"<relative-selector-list>",
|
|
897
|
+
"<relative-selector>",
|
|
821
898
|
"<relative-size>",
|
|
822
899
|
"<rem()>",
|
|
823
900
|
"<repeat-style>",
|
|
824
901
|
"<repeating-conic-gradient()>",
|
|
825
902
|
"<repeating-linear-gradient()>",
|
|
826
903
|
"<repeating-radial-gradient()>",
|
|
904
|
+
"<resolution>",
|
|
827
905
|
"<reversed-counter-name>",
|
|
828
906
|
"<rgb()>",
|
|
829
907
|
"<rgba()>",
|
|
908
|
+
"<right>",
|
|
830
909
|
"<rotate()>",
|
|
831
910
|
"<rotate3d()>",
|
|
832
911
|
"<rotateX()>",
|
|
@@ -840,47 +919,57 @@
|
|
|
840
919
|
"<scaleX()>",
|
|
841
920
|
"<scaleY()>",
|
|
842
921
|
"<scaleZ()>",
|
|
922
|
+
"<scroll-timeline-axis>",
|
|
923
|
+
"<scroll-timeline-name>",
|
|
843
924
|
"<scroller>",
|
|
844
925
|
"<self-position>",
|
|
845
|
-
"<
|
|
846
|
-
"<
|
|
847
|
-
"<skew()>",
|
|
848
|
-
"<skewX()>",
|
|
849
|
-
"<skewY()>",
|
|
926
|
+
"<semicolon-token>",
|
|
927
|
+
"<semitones>",
|
|
850
928
|
"<sepia()>",
|
|
851
|
-
"<shadow>",
|
|
852
929
|
"<shadow-t>",
|
|
853
|
-
"<
|
|
930
|
+
"<shadow>",
|
|
854
931
|
"<shape-box>",
|
|
932
|
+
"<shape-radius>",
|
|
933
|
+
"<shape>",
|
|
855
934
|
"<side-or-corner>",
|
|
935
|
+
"<sign()>",
|
|
856
936
|
"<sin()>",
|
|
857
|
-
"<single-animation>",
|
|
937
|
+
"<single-animation-composition>",
|
|
858
938
|
"<single-animation-direction>",
|
|
859
939
|
"<single-animation-fill-mode>",
|
|
860
940
|
"<single-animation-iteration-count>",
|
|
861
941
|
"<single-animation-play-state>",
|
|
862
942
|
"<single-animation-timeline>",
|
|
863
|
-
"<single-
|
|
943
|
+
"<single-animation>",
|
|
864
944
|
"<single-transition-property>",
|
|
945
|
+
"<single-transition>",
|
|
865
946
|
"<size>",
|
|
947
|
+
"<skew()>",
|
|
948
|
+
"<skewX()>",
|
|
949
|
+
"<skewY()>",
|
|
866
950
|
"<sqrt()>",
|
|
867
951
|
"<step-position>",
|
|
868
952
|
"<step-timing-function>",
|
|
953
|
+
"<string-token>",
|
|
954
|
+
"<string>",
|
|
869
955
|
"<subclass-selector>",
|
|
870
956
|
"<supports-condition>",
|
|
871
|
-
"<supports-in-parens>",
|
|
872
|
-
"<supports-feature>",
|
|
873
957
|
"<supports-decl>",
|
|
958
|
+
"<supports-feature>",
|
|
959
|
+
"<supports-in-parens>",
|
|
874
960
|
"<supports-selector-fn>",
|
|
961
|
+
"<svg-length>",
|
|
962
|
+
"<svg-writing-mode>",
|
|
875
963
|
"<symbol>",
|
|
876
964
|
"<tan()>",
|
|
877
|
-
"<target>",
|
|
878
965
|
"<target-counter()>",
|
|
879
966
|
"<target-counters()>",
|
|
880
967
|
"<target-text()>",
|
|
968
|
+
"<target>",
|
|
881
969
|
"<time-percentage>",
|
|
970
|
+
"<time>",
|
|
882
971
|
"<timeline-name>",
|
|
883
|
-
"<
|
|
972
|
+
"<top>",
|
|
884
973
|
"<track-breadth>",
|
|
885
974
|
"<track-list>",
|
|
886
975
|
"<track-repeat>",
|
|
@@ -894,174 +983,88 @@
|
|
|
894
983
|
"<translateZ()>",
|
|
895
984
|
"<type-or-unit>",
|
|
896
985
|
"<type-selector>",
|
|
986
|
+
"<urange>",
|
|
987
|
+
"<url-modifier>",
|
|
988
|
+
"<url-token>",
|
|
989
|
+
"<url>",
|
|
897
990
|
"<var()>",
|
|
898
991
|
"<viewport-length>",
|
|
899
992
|
"<visual-box>",
|
|
993
|
+
"<whitespace-token>",
|
|
900
994
|
"<wq-name>",
|
|
901
|
-
"<-legacy-gradient>",
|
|
902
|
-
"<-legacy-linear-gradient>",
|
|
903
|
-
"<-legacy-repeating-linear-gradient>",
|
|
904
|
-
"<-legacy-linear-gradient-arguments>",
|
|
905
|
-
"<-legacy-radial-gradient>",
|
|
906
|
-
"<-legacy-repeating-radial-gradient>",
|
|
907
|
-
"<-legacy-radial-gradient-arguments>",
|
|
908
|
-
"<-legacy-radial-gradient-size>",
|
|
909
|
-
"<-legacy-radial-gradient-shape>",
|
|
910
|
-
"<-non-standard-font>",
|
|
911
|
-
"<-non-standard-color>",
|
|
912
|
-
"<-non-standard-image-rendering>",
|
|
913
|
-
"<-non-standard-overflow>",
|
|
914
|
-
"<-non-standard-width>",
|
|
915
|
-
"<-webkit-gradient()>",
|
|
916
|
-
"<-webkit-gradient-color-stop>",
|
|
917
|
-
"<-webkit-gradient-point>",
|
|
918
|
-
"<-webkit-gradient-radius>",
|
|
919
|
-
"<-webkit-gradient-type>",
|
|
920
|
-
"<-webkit-mask-box-repeat>",
|
|
921
|
-
"<-webkit-mask-clip-style>",
|
|
922
|
-
"<-ms-filter-function-list>",
|
|
923
|
-
"<-ms-filter-function>",
|
|
924
|
-
"<-ms-filter-function-progid>",
|
|
925
|
-
"<-ms-filter-function-legacy>",
|
|
926
|
-
"<-ms-filter>",
|
|
927
|
-
"<age>",
|
|
928
|
-
"<attr-name>",
|
|
929
|
-
"<attr-fallback>",
|
|
930
|
-
"<bg-clip>",
|
|
931
|
-
"<bottom>",
|
|
932
|
-
"<generic-voice>",
|
|
933
|
-
"<gender>",
|
|
934
|
-
"<left>",
|
|
935
|
-
"<mask-image>",
|
|
936
|
-
"<paint>",
|
|
937
|
-
"<right>",
|
|
938
|
-
"<scroll-timeline-axis>",
|
|
939
|
-
"<scroll-timeline-name>",
|
|
940
|
-
"<single-animation-composition>",
|
|
941
|
-
"<svg-length>",
|
|
942
|
-
"<svg-writing-mode>",
|
|
943
|
-
"<top>",
|
|
944
995
|
"<x>",
|
|
945
996
|
"<y>",
|
|
946
|
-
"<declaration>",
|
|
947
|
-
"<declaration-list>",
|
|
948
|
-
"<url>",
|
|
949
|
-
"<url-modifier>",
|
|
950
|
-
"<number-zero-one>",
|
|
951
|
-
"<number-one-or-greater>",
|
|
952
|
-
"<-non-standard-display>",
|
|
953
|
-
"<ident-token>",
|
|
954
|
-
"<function-token>",
|
|
955
|
-
"<at-keyword-token>",
|
|
956
|
-
"<hash-token>",
|
|
957
|
-
"<string-token>",
|
|
958
|
-
"<bad-string-token>",
|
|
959
|
-
"<url-token>",
|
|
960
|
-
"<bad-url-token>",
|
|
961
|
-
"<delim-token>",
|
|
962
|
-
"<number-token>",
|
|
963
|
-
"<percentage-token>",
|
|
964
|
-
"<dimension-token>",
|
|
965
|
-
"<whitespace-token>",
|
|
966
|
-
"<CDO-token>",
|
|
967
|
-
"<CDC-token>",
|
|
968
|
-
"<colon-token>",
|
|
969
|
-
"<semicolon-token>",
|
|
970
|
-
"<comma-token>",
|
|
971
|
-
"<[-token>",
|
|
972
|
-
"<]-token>",
|
|
973
|
-
"<(-token>",
|
|
974
|
-
"<)-token>",
|
|
975
|
-
"<{-token>",
|
|
976
|
-
"<}-token>",
|
|
977
|
-
"<string>",
|
|
978
|
-
"<ident>",
|
|
979
|
-
"<percentage>",
|
|
980
997
|
"<zero>",
|
|
981
|
-
"<
|
|
982
|
-
"<
|
|
983
|
-
"<custom-ident>",
|
|
984
|
-
"<custom-property-name>",
|
|
985
|
-
"<hex-color>",
|
|
986
|
-
"<an-plus-b>",
|
|
987
|
-
"<urange>",
|
|
988
|
-
"<declaration-value>",
|
|
989
|
-
"<any-value>",
|
|
990
|
-
"<dimension>",
|
|
991
|
-
"<angle>",
|
|
992
|
-
"<decibel>",
|
|
993
|
-
"<frequency>",
|
|
994
|
-
"<flex>",
|
|
995
|
-
"<length>",
|
|
996
|
-
"<resolution>",
|
|
997
|
-
"<semitones>",
|
|
998
|
-
"<time>",
|
|
999
|
-
"<bcp-47>"
|
|
998
|
+
"<{-token>",
|
|
999
|
+
"<}-token>"
|
|
1000
1000
|
]
|
|
1001
1001
|
},
|
|
1002
1002
|
"extended-type": {
|
|
1003
1003
|
"type": "string",
|
|
1004
1004
|
"enum": [
|
|
1005
|
-
"Any",
|
|
1006
|
-
"NoEmptyAny",
|
|
1007
|
-
"OneLineAny",
|
|
1008
|
-
"Zero",
|
|
1009
|
-
"Number",
|
|
1010
|
-
"Int",
|
|
1011
|
-
"Uint",
|
|
1012
|
-
"XMLName",
|
|
1013
|
-
"DOMID",
|
|
1014
|
-
"FunctionBody",
|
|
1015
|
-
"Pattern",
|
|
1016
|
-
"DateTime",
|
|
1017
|
-
"TabIndex",
|
|
1018
|
-
"BCP47",
|
|
1019
|
-
"URL",
|
|
1020
|
-
"AbsoluteURL",
|
|
1021
|
-
"HashName",
|
|
1022
|
-
"OneCodePointChar",
|
|
1023
|
-
"CustomElementName",
|
|
1024
|
-
"BrowsingContextName",
|
|
1025
|
-
"BrowsingContextNameOrKeyword",
|
|
1026
|
-
"HTTPSchemaURL",
|
|
1027
|
-
"MIMEType",
|
|
1028
|
-
"ItemProp",
|
|
1029
|
-
"Srcset",
|
|
1030
|
-
"SourceSizeList",
|
|
1031
|
-
"IconSize",
|
|
1032
|
-
"AutoComplete",
|
|
1033
|
-
"Accept",
|
|
1034
|
-
"SerializedPermissionsPolicy",
|
|
1035
|
-
"<css-declaration-list>",
|
|
1036
|
-
"<class-list>",
|
|
1037
|
-
"<svg-font-size>",
|
|
1038
|
-
"<svg-font-size-adjust>",
|
|
1039
1005
|
"<'color-profile'>",
|
|
1040
1006
|
"<'color-rendering'>",
|
|
1041
1007
|
"<'enable-background'>",
|
|
1042
|
-
"<list-of-svg-feature-string>",
|
|
1043
1008
|
"<animatable-value>",
|
|
1044
1009
|
"<begin-value-list>",
|
|
1045
|
-
"<
|
|
1046
|
-
"<list-of-value>",
|
|
1010
|
+
"<class-list>",
|
|
1047
1011
|
"<clock-value>",
|
|
1048
1012
|
"<color-matrix>",
|
|
1013
|
+
"<css-declaration-list>",
|
|
1049
1014
|
"<dasharray>",
|
|
1015
|
+
"<end-value-list>",
|
|
1050
1016
|
"<key-points>",
|
|
1051
1017
|
"<key-splines>",
|
|
1052
1018
|
"<key-times>",
|
|
1053
|
-
"<
|
|
1019
|
+
"<list-of-lengths>",
|
|
1020
|
+
"<list-of-numbers>",
|
|
1021
|
+
"<list-of-percentages>",
|
|
1022
|
+
"<list-of-svg-feature-string>",
|
|
1023
|
+
"<list-of-value>",
|
|
1024
|
+
"<number-optional-number>",
|
|
1054
1025
|
"<origin>",
|
|
1055
|
-
"<svg-path>",
|
|
1056
1026
|
"<points>",
|
|
1057
1027
|
"<preserve-aspect-ratio>",
|
|
1058
|
-
"<view-box>",
|
|
1059
1028
|
"<rotate>",
|
|
1029
|
+
"<svg-font-size-adjust>",
|
|
1030
|
+
"<svg-font-size>",
|
|
1031
|
+
"<svg-path>",
|
|
1032
|
+
"<system-language>",
|
|
1060
1033
|
"<text-coordinate>",
|
|
1061
|
-
"<
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1034
|
+
"<view-box>",
|
|
1035
|
+
"AbsoluteURL",
|
|
1036
|
+
"Accept",
|
|
1037
|
+
"Any",
|
|
1038
|
+
"AutoComplete",
|
|
1039
|
+
"BCP47",
|
|
1040
|
+
"BaseURL",
|
|
1041
|
+
"BrowsingContextName",
|
|
1042
|
+
"BrowsingContextNameOrKeyword",
|
|
1043
|
+
"CustomElementName",
|
|
1044
|
+
"DOMID",
|
|
1045
|
+
"DateTime",
|
|
1046
|
+
"FunctionBody",
|
|
1047
|
+
"HTTPSchemaURL",
|
|
1048
|
+
"HashName",
|
|
1049
|
+
"IconSize",
|
|
1050
|
+
"Int",
|
|
1051
|
+
"ItemProp",
|
|
1052
|
+
"MIMEType",
|
|
1053
|
+
"NavigableTargetName",
|
|
1054
|
+
"NavigableTargetNameOrKeyword",
|
|
1055
|
+
"NoEmptyAny",
|
|
1056
|
+
"Number",
|
|
1057
|
+
"OneCodePointChar",
|
|
1058
|
+
"OneLineAny",
|
|
1059
|
+
"Pattern",
|
|
1060
|
+
"SerializedPermissionsPolicy",
|
|
1061
|
+
"SourceSizeList",
|
|
1062
|
+
"Srcset",
|
|
1063
|
+
"TabIndex",
|
|
1064
|
+
"URL",
|
|
1065
|
+
"Uint",
|
|
1066
|
+
"XMLName",
|
|
1067
|
+
"Zero"
|
|
1065
1068
|
]
|
|
1066
1069
|
},
|
|
1067
1070
|
"html-attr-requirement": { "type": "string", "enum": ["Boolean"] },
|