@markuplint/types 1.0.0-dev.20211213.0
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/LICENSE +21 -0
- package/README.md +117 -0
- package/extends.json +12 -0
- package/gen/specific-schema.json +98 -0
- package/gen/types.ts +66 -0
- package/lib/check-multi-types.d.ts +2 -0
- package/lib/check-multi-types.js +29 -0
- package/lib/check.d.ts +8 -0
- package/lib/check.js +49 -0
- package/lib/check.spec.d.ts +1 -0
- package/lib/check.spec.js +57 -0
- package/lib/css-syntax.d.ts +2 -0
- package/lib/css-syntax.js +141 -0
- package/lib/css-syntax.spec.d.ts +1 -0
- package/lib/css-syntax.spec.js +157 -0
- package/lib/debug.d.ts +2 -0
- package/lib/debug.js +6 -0
- package/lib/defs.d.ts +3 -0
- package/lib/defs.js +752 -0
- package/lib/enum.d.ts +3 -0
- package/lib/enum.js +26 -0
- package/lib/get-candicate.d.ts +3 -0
- package/lib/get-candicate.js +26 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +6 -0
- package/lib/keyword-type.d.ts +3 -0
- package/lib/keyword-type.js +46 -0
- package/lib/list.d.ts +3 -0
- package/lib/list.js +29 -0
- package/lib/list.spec.d.ts +1 -0
- package/lib/list.spec.js +129 -0
- package/lib/match-result.d.ts +9 -0
- package/lib/match-result.js +33 -0
- package/lib/number.d.ts +3 -0
- package/lib/number.js +41 -0
- package/lib/primitive/index.d.ts +7 -0
- package/lib/primitive/index.js +17 -0
- package/lib/primitive/index.spec.d.ts +1 -0
- package/lib/primitive/index.spec.js +62 -0
- package/lib/primitive/is-float.d.ts +6 -0
- package/lib/primitive/is-float.js +12 -0
- package/lib/primitive/is-int.d.ts +6 -0
- package/lib/primitive/is-int.js +12 -0
- package/lib/primitive/is-non-zero-uint.d.ts +6 -0
- package/lib/primitive/is-non-zero-uint.js +12 -0
- package/lib/primitive/is-quantity.d.ts +7 -0
- package/lib/primitive/is-quantity.js +41 -0
- package/lib/primitive/is-uint.d.ts +8 -0
- package/lib/primitive/is-uint.js +19 -0
- package/lib/primitive/range.d.ts +8 -0
- package/lib/primitive/range.js +18 -0
- package/lib/primitive/split-unit.d.ts +9 -0
- package/lib/primitive/split-unit.js +24 -0
- package/lib/rfc/is-bcp-47.d.ts +5 -0
- package/lib/rfc/is-bcp-47.js +14 -0
- package/lib/rfc/is-bcp-47.spec.d.ts +1 -0
- package/lib/rfc/is-bcp-47.spec.js +19 -0
- package/lib/token/index.d.ts +2 -0
- package/lib/token/index.js +7 -0
- package/lib/token/token-collection.d.ts +62 -0
- package/lib/token/token-collection.js +383 -0
- package/lib/token/token-collection.spec.d.ts +1 -0
- package/lib/token/token-collection.spec.js +144 -0
- package/lib/token/token.d.ts +55 -0
- package/lib/token/token.js +128 -0
- package/lib/types.d.ts +78 -0
- package/lib/types.js +2 -0
- package/lib/types.schema.d.ts +54 -0
- package/lib/types.schema.js +8 -0
- package/lib/w3c/check-serialized-permissions-policy.d.ts +15 -0
- package/lib/w3c/check-serialized-permissions-policy.js +251 -0
- package/lib/w3c/check-serialized-permissions-policy.spec.d.ts +1 -0
- package/lib/w3c/check-serialized-permissions-policy.spec.js +26 -0
- package/lib/whatwg/check-autocomplete.d.ts +5 -0
- package/lib/whatwg/check-autocomplete.js +282 -0
- package/lib/whatwg/check-autocomplete.spec.d.ts +1 -0
- package/lib/whatwg/check-autocomplete.spec.js +370 -0
- package/lib/whatwg/check-datetime/date-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/date-string.js +31 -0
- package/lib/whatwg/check-datetime/datetime-tokens.d.ts +3 -0
- package/lib/whatwg/check-datetime/datetime-tokens.js +509 -0
- package/lib/whatwg/check-datetime/duration-string.d.ts +6 -0
- package/lib/whatwg/check-datetime/duration-string.js +322 -0
- package/lib/whatwg/check-datetime/global-date-and-time-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/global-date-and-time-string.js +66 -0
- package/lib/whatwg/check-datetime/index.d.ts +5 -0
- package/lib/whatwg/check-datetime/index.js +35 -0
- package/lib/whatwg/check-datetime/index.spec.d.ts +1 -0
- package/lib/whatwg/check-datetime/index.spec.js +318 -0
- package/lib/whatwg/check-datetime/local-date-and-time-string.d.ts +9 -0
- package/lib/whatwg/check-datetime/local-date-and-time-string.js +116 -0
- package/lib/whatwg/check-datetime/month-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/month-string.js +20 -0
- package/lib/whatwg/check-datetime/time-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/time-string.js +35 -0
- package/lib/whatwg/check-datetime/time-zone-offset-string.d.ts +7 -0
- package/lib/whatwg/check-datetime/time-zone-offset-string.js +75 -0
- package/lib/whatwg/check-datetime/week-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/week-string.js +29 -0
- package/lib/whatwg/check-datetime/year-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/year-string.js +20 -0
- package/lib/whatwg/check-datetime/yearless-date-string.d.ts +5 -0
- package/lib/whatwg/check-datetime/yearless-date-string.js +27 -0
- package/lib/whatwg/check-mime-type.d.ts +11 -0
- package/lib/whatwg/check-mime-type.js +42 -0
- package/lib/whatwg/check-mime-type.spec.d.ts +1 -0
- package/lib/whatwg/check-mime-type.spec.js +58 -0
- package/lib/whatwg/is-abs-url.d.ts +15 -0
- package/lib/whatwg/is-abs-url.js +34 -0
- package/lib/whatwg/is-abs-url.spec.d.ts +1 -0
- package/lib/whatwg/is-abs-url.spec.js +8 -0
- package/lib/whatwg/is-browser-context-name.d.ts +11 -0
- package/lib/whatwg/is-browser-context-name.js +18 -0
- package/lib/whatwg/is-custom-element-name.d.ts +22 -0
- package/lib/whatwg/is-custom-element-name.js +77 -0
- package/lib/whatwg/is-itemprop-name.d.ts +12 -0
- package/lib/whatwg/is-itemprop-name.js +19 -0
- package/package.json +33 -0
- package/src/check-multi-types.ts +35 -0
- package/src/check.spec.ts +62 -0
- package/src/check.ts +48 -0
- package/src/css-syntax.spec.ts +167 -0
- package/src/css-syntax.ts +177 -0
- package/src/debug.ts +3 -0
- package/src/defs.ts +810 -0
- package/src/enum.ts +25 -0
- package/src/get-candicate.ts +24 -0
- package/src/index.ts +3 -0
- package/src/keyword-type.ts +52 -0
- package/src/list.spec.ts +133 -0
- package/src/list.ts +34 -0
- package/src/match-result.ts +49 -0
- package/src/number.ts +46 -0
- package/src/primitive/index.spec.ts +65 -0
- package/src/primitive/index.ts +7 -0
- package/src/primitive/is-float.ts +8 -0
- package/src/primitive/is-int.ts +8 -0
- package/src/primitive/is-non-zero-uint.ts +8 -0
- package/src/primitive/is-quantity.ts +38 -0
- package/src/primitive/is-uint.ts +15 -0
- package/src/primitive/range.ts +14 -0
- package/src/primitive/split-unit.ts +20 -0
- package/src/rfc/is-bcp-47.spec.ts +23 -0
- package/src/rfc/is-bcp-47.ts +13 -0
- package/src/token/index.ts +2 -0
- package/src/token/token-collection.spec.ts +147 -0
- package/src/token/token-collection.ts +444 -0
- package/src/token/token.ts +144 -0
- package/src/types.schema.ts +1059 -0
- package/src/types.ts +118 -0
- package/src/w3c/check-serialized-permissions-policy.spec.ts +27 -0
- package/src/w3c/check-serialized-permissions-policy.ts +287 -0
- package/src/whatwg/check-autocomplete.spec.ts +378 -0
- package/src/whatwg/check-autocomplete.ts +324 -0
- package/src/whatwg/check-datetime/date-string.ts +44 -0
- package/src/whatwg/check-datetime/datetime-tokens.ts +600 -0
- package/src/whatwg/check-datetime/duration-string.ts +399 -0
- package/src/whatwg/check-datetime/global-date-and-time-string.ts +96 -0
- package/src/whatwg/check-datetime/index.spec.ts +333 -0
- package/src/whatwg/check-datetime/index.ts +36 -0
- package/src/whatwg/check-datetime/local-date-and-time-string.ts +163 -0
- package/src/whatwg/check-datetime/month-string.ts +31 -0
- package/src/whatwg/check-datetime/time-string.ts +49 -0
- package/src/whatwg/check-datetime/time-zone-offset-string.ts +93 -0
- package/src/whatwg/check-datetime/week-string.ts +41 -0
- package/src/whatwg/check-datetime/year-string.ts +26 -0
- package/src/whatwg/check-datetime/yearless-date-string.ts +38 -0
- package/src/whatwg/check-mime-type.spec.ts +59 -0
- package/src/whatwg/check-mime-type.ts +46 -0
- package/src/whatwg/is-abs-url.spec.ts +8 -0
- package/src/whatwg/is-abs-url.ts +31 -0
- package/src/whatwg/is-browser-context-name.ts +16 -0
- package/src/whatwg/is-custom-element-name.ts +76 -0
- package/src/whatwg/is-itemprop-name.ts +17 -0
- package/tsconfig.test.json +3 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/types.schema.json +1092 -0
|
@@ -0,0 +1,1092 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"additionalProperties": false,
|
|
5
|
+
"definitions": {
|
|
6
|
+
"css-syntax": {
|
|
7
|
+
"type": "string",
|
|
8
|
+
"enum": [
|
|
9
|
+
"<'--*'>",
|
|
10
|
+
"<'-ms-accelerator'>",
|
|
11
|
+
"<'-ms-block-progression'>",
|
|
12
|
+
"<'-ms-content-zoom-chaining'>",
|
|
13
|
+
"<'-ms-content-zooming'>",
|
|
14
|
+
"<'-ms-content-zoom-limit'>",
|
|
15
|
+
"<'-ms-content-zoom-limit-max'>",
|
|
16
|
+
"<'-ms-content-zoom-limit-min'>",
|
|
17
|
+
"<'-ms-content-zoom-snap'>",
|
|
18
|
+
"<'-ms-content-zoom-snap-points'>",
|
|
19
|
+
"<'-ms-content-zoom-snap-type'>",
|
|
20
|
+
"<'-ms-filter'>",
|
|
21
|
+
"<'-ms-flow-from'>",
|
|
22
|
+
"<'-ms-flow-into'>",
|
|
23
|
+
"<'-ms-grid-columns'>",
|
|
24
|
+
"<'-ms-grid-rows'>",
|
|
25
|
+
"<'-ms-high-contrast-adjust'>",
|
|
26
|
+
"<'-ms-hyphenate-limit-chars'>",
|
|
27
|
+
"<'-ms-hyphenate-limit-lines'>",
|
|
28
|
+
"<'-ms-hyphenate-limit-zone'>",
|
|
29
|
+
"<'-ms-ime-align'>",
|
|
30
|
+
"<'-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
|
+
"<'-ms-scroll-chaining'>",
|
|
40
|
+
"<'-ms-scroll-limit'>",
|
|
41
|
+
"<'-ms-scroll-limit-x-max'>",
|
|
42
|
+
"<'-ms-scroll-limit-x-min'>",
|
|
43
|
+
"<'-ms-scroll-limit-y-max'>",
|
|
44
|
+
"<'-ms-scroll-limit-y-min'>",
|
|
45
|
+
"<'-ms-scroll-rails'>",
|
|
46
|
+
"<'-ms-scroll-snap-points-x'>",
|
|
47
|
+
"<'-ms-scroll-snap-points-y'>",
|
|
48
|
+
"<'-ms-scroll-snap-type'>",
|
|
49
|
+
"<'-ms-scroll-snap-x'>",
|
|
50
|
+
"<'-ms-scroll-snap-y'>",
|
|
51
|
+
"<'-ms-scroll-translation'>",
|
|
52
|
+
"<'-ms-text-autospace'>",
|
|
53
|
+
"<'-ms-touch-select'>",
|
|
54
|
+
"<'-ms-user-select'>",
|
|
55
|
+
"<'-ms-wrap-flow'>",
|
|
56
|
+
"<'-ms-wrap-margin'>",
|
|
57
|
+
"<'-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
|
+
"<'-webkit-appearance'>",
|
|
82
|
+
"<'-webkit-border-before'>",
|
|
83
|
+
"<'-webkit-border-before-color'>",
|
|
84
|
+
"<'-webkit-border-before-style'>",
|
|
85
|
+
"<'-webkit-border-before-width'>",
|
|
86
|
+
"<'-webkit-box-reflect'>",
|
|
87
|
+
"<'-webkit-line-clamp'>",
|
|
88
|
+
"<'-webkit-mask'>",
|
|
89
|
+
"<'-webkit-mask-attachment'>",
|
|
90
|
+
"<'-webkit-mask-clip'>",
|
|
91
|
+
"<'-webkit-mask-composite'>",
|
|
92
|
+
"<'-webkit-mask-image'>",
|
|
93
|
+
"<'-webkit-mask-origin'>",
|
|
94
|
+
"<'-webkit-mask-position'>",
|
|
95
|
+
"<'-webkit-mask-position-x'>",
|
|
96
|
+
"<'-webkit-mask-position-y'>",
|
|
97
|
+
"<'-webkit-mask-repeat'>",
|
|
98
|
+
"<'-webkit-mask-repeat-x'>",
|
|
99
|
+
"<'-webkit-mask-repeat-y'>",
|
|
100
|
+
"<'-webkit-mask-size'>",
|
|
101
|
+
"<'-webkit-overflow-scrolling'>",
|
|
102
|
+
"<'-webkit-tap-highlight-color'>",
|
|
103
|
+
"<'-webkit-text-fill-color'>",
|
|
104
|
+
"<'-webkit-text-stroke'>",
|
|
105
|
+
"<'-webkit-text-stroke-color'>",
|
|
106
|
+
"<'-webkit-text-stroke-width'>",
|
|
107
|
+
"<'-webkit-touch-callout'>",
|
|
108
|
+
"<'-webkit-user-modify'>",
|
|
109
|
+
"<'align-content'>",
|
|
110
|
+
"<'align-items'>",
|
|
111
|
+
"<'align-self'>",
|
|
112
|
+
"<'align-tracks'>",
|
|
113
|
+
"<'all'>",
|
|
114
|
+
"<'animation'>",
|
|
115
|
+
"<'animation-delay'>",
|
|
116
|
+
"<'animation-direction'>",
|
|
117
|
+
"<'animation-duration'>",
|
|
118
|
+
"<'animation-fill-mode'>",
|
|
119
|
+
"<'animation-iteration-count'>",
|
|
120
|
+
"<'animation-name'>",
|
|
121
|
+
"<'animation-play-state'>",
|
|
122
|
+
"<'animation-timing-function'>",
|
|
123
|
+
"<'appearance'>",
|
|
124
|
+
"<'aspect-ratio'>",
|
|
125
|
+
"<'azimuth'>",
|
|
126
|
+
"<'backdrop-filter'>",
|
|
127
|
+
"<'backface-visibility'>",
|
|
128
|
+
"<'background'>",
|
|
129
|
+
"<'background-attachment'>",
|
|
130
|
+
"<'background-blend-mode'>",
|
|
131
|
+
"<'background-clip'>",
|
|
132
|
+
"<'background-color'>",
|
|
133
|
+
"<'background-image'>",
|
|
134
|
+
"<'background-origin'>",
|
|
135
|
+
"<'background-position'>",
|
|
136
|
+
"<'background-position-x'>",
|
|
137
|
+
"<'background-position-y'>",
|
|
138
|
+
"<'background-repeat'>",
|
|
139
|
+
"<'background-size'>",
|
|
140
|
+
"<'block-overflow'>",
|
|
141
|
+
"<'block-size'>",
|
|
142
|
+
"<'border'>",
|
|
143
|
+
"<'border-block'>",
|
|
144
|
+
"<'border-block-color'>",
|
|
145
|
+
"<'border-block-style'>",
|
|
146
|
+
"<'border-block-width'>",
|
|
147
|
+
"<'border-block-end'>",
|
|
148
|
+
"<'border-block-end-color'>",
|
|
149
|
+
"<'border-block-end-style'>",
|
|
150
|
+
"<'border-block-end-width'>",
|
|
151
|
+
"<'border-block-start'>",
|
|
152
|
+
"<'border-block-start-color'>",
|
|
153
|
+
"<'border-block-start-style'>",
|
|
154
|
+
"<'border-block-start-width'>",
|
|
155
|
+
"<'border-bottom'>",
|
|
156
|
+
"<'border-bottom-color'>",
|
|
157
|
+
"<'border-bottom-left-radius'>",
|
|
158
|
+
"<'border-bottom-right-radius'>",
|
|
159
|
+
"<'border-bottom-style'>",
|
|
160
|
+
"<'border-bottom-width'>",
|
|
161
|
+
"<'border-collapse'>",
|
|
162
|
+
"<'border-color'>",
|
|
163
|
+
"<'border-end-end-radius'>",
|
|
164
|
+
"<'border-end-start-radius'>",
|
|
165
|
+
"<'border-image'>",
|
|
166
|
+
"<'border-image-outset'>",
|
|
167
|
+
"<'border-image-repeat'>",
|
|
168
|
+
"<'border-image-slice'>",
|
|
169
|
+
"<'border-image-source'>",
|
|
170
|
+
"<'border-image-width'>",
|
|
171
|
+
"<'border-inline'>",
|
|
172
|
+
"<'border-inline-end'>",
|
|
173
|
+
"<'border-inline-color'>",
|
|
174
|
+
"<'border-inline-style'>",
|
|
175
|
+
"<'border-inline-width'>",
|
|
176
|
+
"<'border-inline-end-color'>",
|
|
177
|
+
"<'border-inline-end-style'>",
|
|
178
|
+
"<'border-inline-end-width'>",
|
|
179
|
+
"<'border-inline-start'>",
|
|
180
|
+
"<'border-inline-start-color'>",
|
|
181
|
+
"<'border-inline-start-style'>",
|
|
182
|
+
"<'border-inline-start-width'>",
|
|
183
|
+
"<'border-left'>",
|
|
184
|
+
"<'border-left-color'>",
|
|
185
|
+
"<'border-left-style'>",
|
|
186
|
+
"<'border-left-width'>",
|
|
187
|
+
"<'border-radius'>",
|
|
188
|
+
"<'border-right'>",
|
|
189
|
+
"<'border-right-color'>",
|
|
190
|
+
"<'border-right-style'>",
|
|
191
|
+
"<'border-right-width'>",
|
|
192
|
+
"<'border-spacing'>",
|
|
193
|
+
"<'border-start-end-radius'>",
|
|
194
|
+
"<'border-start-start-radius'>",
|
|
195
|
+
"<'border-style'>",
|
|
196
|
+
"<'border-top'>",
|
|
197
|
+
"<'border-top-color'>",
|
|
198
|
+
"<'border-top-left-radius'>",
|
|
199
|
+
"<'border-top-right-radius'>",
|
|
200
|
+
"<'border-top-style'>",
|
|
201
|
+
"<'border-top-width'>",
|
|
202
|
+
"<'border-width'>",
|
|
203
|
+
"<'bottom'>",
|
|
204
|
+
"<'box-align'>",
|
|
205
|
+
"<'box-decoration-break'>",
|
|
206
|
+
"<'box-direction'>",
|
|
207
|
+
"<'box-flex'>",
|
|
208
|
+
"<'box-flex-group'>",
|
|
209
|
+
"<'box-lines'>",
|
|
210
|
+
"<'box-ordinal-group'>",
|
|
211
|
+
"<'box-orient'>",
|
|
212
|
+
"<'box-pack'>",
|
|
213
|
+
"<'box-shadow'>",
|
|
214
|
+
"<'box-sizing'>",
|
|
215
|
+
"<'break-after'>",
|
|
216
|
+
"<'break-before'>",
|
|
217
|
+
"<'break-inside'>",
|
|
218
|
+
"<'caption-side'>",
|
|
219
|
+
"<'caret-color'>",
|
|
220
|
+
"<'clear'>",
|
|
221
|
+
"<'clip'>",
|
|
222
|
+
"<'clip-path'>",
|
|
223
|
+
"<'color'>",
|
|
224
|
+
"<'color-adjust'>",
|
|
225
|
+
"<'column-count'>",
|
|
226
|
+
"<'column-fill'>",
|
|
227
|
+
"<'column-gap'>",
|
|
228
|
+
"<'column-rule'>",
|
|
229
|
+
"<'column-rule-color'>",
|
|
230
|
+
"<'column-rule-style'>",
|
|
231
|
+
"<'column-rule-width'>",
|
|
232
|
+
"<'column-span'>",
|
|
233
|
+
"<'column-width'>",
|
|
234
|
+
"<'columns'>",
|
|
235
|
+
"<'contain'>",
|
|
236
|
+
"<'content'>",
|
|
237
|
+
"<'counter-increment'>",
|
|
238
|
+
"<'counter-reset'>",
|
|
239
|
+
"<'counter-set'>",
|
|
240
|
+
"<'cursor'>",
|
|
241
|
+
"<'direction'>",
|
|
242
|
+
"<'display'>",
|
|
243
|
+
"<'empty-cells'>",
|
|
244
|
+
"<'filter'>",
|
|
245
|
+
"<'flex'>",
|
|
246
|
+
"<'flex-basis'>",
|
|
247
|
+
"<'flex-direction'>",
|
|
248
|
+
"<'flex-flow'>",
|
|
249
|
+
"<'flex-grow'>",
|
|
250
|
+
"<'flex-shrink'>",
|
|
251
|
+
"<'flex-wrap'>",
|
|
252
|
+
"<'float'>",
|
|
253
|
+
"<'font'>",
|
|
254
|
+
"<'font-family'>",
|
|
255
|
+
"<'font-feature-settings'>",
|
|
256
|
+
"<'font-kerning'>",
|
|
257
|
+
"<'font-language-override'>",
|
|
258
|
+
"<'font-optical-sizing'>",
|
|
259
|
+
"<'font-variation-settings'>",
|
|
260
|
+
"<'font-size'>",
|
|
261
|
+
"<'font-size-adjust'>",
|
|
262
|
+
"<'font-smooth'>",
|
|
263
|
+
"<'font-stretch'>",
|
|
264
|
+
"<'font-style'>",
|
|
265
|
+
"<'font-synthesis'>",
|
|
266
|
+
"<'font-variant'>",
|
|
267
|
+
"<'font-variant-alternates'>",
|
|
268
|
+
"<'font-variant-caps'>",
|
|
269
|
+
"<'font-variant-east-asian'>",
|
|
270
|
+
"<'font-variant-ligatures'>",
|
|
271
|
+
"<'font-variant-numeric'>",
|
|
272
|
+
"<'font-variant-position'>",
|
|
273
|
+
"<'font-weight'>",
|
|
274
|
+
"<'gap'>",
|
|
275
|
+
"<'grid'>",
|
|
276
|
+
"<'grid-area'>",
|
|
277
|
+
"<'grid-auto-columns'>",
|
|
278
|
+
"<'grid-auto-flow'>",
|
|
279
|
+
"<'grid-auto-rows'>",
|
|
280
|
+
"<'grid-column'>",
|
|
281
|
+
"<'grid-column-end'>",
|
|
282
|
+
"<'grid-column-gap'>",
|
|
283
|
+
"<'grid-column-start'>",
|
|
284
|
+
"<'grid-gap'>",
|
|
285
|
+
"<'grid-row'>",
|
|
286
|
+
"<'grid-row-end'>",
|
|
287
|
+
"<'grid-row-gap'>",
|
|
288
|
+
"<'grid-row-start'>",
|
|
289
|
+
"<'grid-template'>",
|
|
290
|
+
"<'grid-template-areas'>",
|
|
291
|
+
"<'grid-template-columns'>",
|
|
292
|
+
"<'grid-template-rows'>",
|
|
293
|
+
"<'hanging-punctuation'>",
|
|
294
|
+
"<'height'>",
|
|
295
|
+
"<'hyphens'>",
|
|
296
|
+
"<'image-orientation'>",
|
|
297
|
+
"<'image-rendering'>",
|
|
298
|
+
"<'image-resolution'>",
|
|
299
|
+
"<'ime-mode'>",
|
|
300
|
+
"<'initial-letter'>",
|
|
301
|
+
"<'initial-letter-align'>",
|
|
302
|
+
"<'inline-size'>",
|
|
303
|
+
"<'inset'>",
|
|
304
|
+
"<'inset-block'>",
|
|
305
|
+
"<'inset-block-end'>",
|
|
306
|
+
"<'inset-block-start'>",
|
|
307
|
+
"<'inset-inline'>",
|
|
308
|
+
"<'inset-inline-end'>",
|
|
309
|
+
"<'inset-inline-start'>",
|
|
310
|
+
"<'isolation'>",
|
|
311
|
+
"<'justify-content'>",
|
|
312
|
+
"<'justify-items'>",
|
|
313
|
+
"<'justify-self'>",
|
|
314
|
+
"<'justify-tracks'>",
|
|
315
|
+
"<'left'>",
|
|
316
|
+
"<'letter-spacing'>",
|
|
317
|
+
"<'line-break'>",
|
|
318
|
+
"<'line-clamp'>",
|
|
319
|
+
"<'line-height'>",
|
|
320
|
+
"<'line-height-step'>",
|
|
321
|
+
"<'list-style'>",
|
|
322
|
+
"<'list-style-image'>",
|
|
323
|
+
"<'list-style-position'>",
|
|
324
|
+
"<'list-style-type'>",
|
|
325
|
+
"<'margin'>",
|
|
326
|
+
"<'margin-block'>",
|
|
327
|
+
"<'margin-block-end'>",
|
|
328
|
+
"<'margin-block-start'>",
|
|
329
|
+
"<'margin-bottom'>",
|
|
330
|
+
"<'margin-inline'>",
|
|
331
|
+
"<'margin-inline-end'>",
|
|
332
|
+
"<'margin-inline-start'>",
|
|
333
|
+
"<'margin-left'>",
|
|
334
|
+
"<'margin-right'>",
|
|
335
|
+
"<'margin-top'>",
|
|
336
|
+
"<'margin-trim'>",
|
|
337
|
+
"<'mask'>",
|
|
338
|
+
"<'mask-border'>",
|
|
339
|
+
"<'mask-border-mode'>",
|
|
340
|
+
"<'mask-border-outset'>",
|
|
341
|
+
"<'mask-border-repeat'>",
|
|
342
|
+
"<'mask-border-slice'>",
|
|
343
|
+
"<'mask-border-source'>",
|
|
344
|
+
"<'mask-border-width'>",
|
|
345
|
+
"<'mask-clip'>",
|
|
346
|
+
"<'mask-composite'>",
|
|
347
|
+
"<'mask-image'>",
|
|
348
|
+
"<'mask-mode'>",
|
|
349
|
+
"<'mask-origin'>",
|
|
350
|
+
"<'mask-position'>",
|
|
351
|
+
"<'mask-repeat'>",
|
|
352
|
+
"<'mask-size'>",
|
|
353
|
+
"<'mask-type'>",
|
|
354
|
+
"<'masonry-auto-flow'>",
|
|
355
|
+
"<'math-style'>",
|
|
356
|
+
"<'max-block-size'>",
|
|
357
|
+
"<'max-height'>",
|
|
358
|
+
"<'max-inline-size'>",
|
|
359
|
+
"<'max-lines'>",
|
|
360
|
+
"<'max-width'>",
|
|
361
|
+
"<'min-block-size'>",
|
|
362
|
+
"<'min-height'>",
|
|
363
|
+
"<'min-inline-size'>",
|
|
364
|
+
"<'min-width'>",
|
|
365
|
+
"<'mix-blend-mode'>",
|
|
366
|
+
"<'object-fit'>",
|
|
367
|
+
"<'object-position'>",
|
|
368
|
+
"<'offset'>",
|
|
369
|
+
"<'offset-anchor'>",
|
|
370
|
+
"<'offset-distance'>",
|
|
371
|
+
"<'offset-path'>",
|
|
372
|
+
"<'offset-position'>",
|
|
373
|
+
"<'offset-rotate'>",
|
|
374
|
+
"<'opacity'>",
|
|
375
|
+
"<'order'>",
|
|
376
|
+
"<'orphans'>",
|
|
377
|
+
"<'outline'>",
|
|
378
|
+
"<'outline-color'>",
|
|
379
|
+
"<'outline-offset'>",
|
|
380
|
+
"<'outline-style'>",
|
|
381
|
+
"<'outline-width'>",
|
|
382
|
+
"<'overflow'>",
|
|
383
|
+
"<'overflow-anchor'>",
|
|
384
|
+
"<'overflow-block'>",
|
|
385
|
+
"<'overflow-clip-box'>",
|
|
386
|
+
"<'overflow-inline'>",
|
|
387
|
+
"<'overflow-wrap'>",
|
|
388
|
+
"<'overflow-x'>",
|
|
389
|
+
"<'overflow-y'>",
|
|
390
|
+
"<'overscroll-behavior'>",
|
|
391
|
+
"<'overscroll-behavior-block'>",
|
|
392
|
+
"<'overscroll-behavior-inline'>",
|
|
393
|
+
"<'overscroll-behavior-x'>",
|
|
394
|
+
"<'overscroll-behavior-y'>",
|
|
395
|
+
"<'padding'>",
|
|
396
|
+
"<'padding-block'>",
|
|
397
|
+
"<'padding-block-end'>",
|
|
398
|
+
"<'padding-block-start'>",
|
|
399
|
+
"<'padding-bottom'>",
|
|
400
|
+
"<'padding-inline'>",
|
|
401
|
+
"<'padding-inline-end'>",
|
|
402
|
+
"<'padding-inline-start'>",
|
|
403
|
+
"<'padding-left'>",
|
|
404
|
+
"<'padding-right'>",
|
|
405
|
+
"<'padding-top'>",
|
|
406
|
+
"<'page-break-after'>",
|
|
407
|
+
"<'page-break-before'>",
|
|
408
|
+
"<'page-break-inside'>",
|
|
409
|
+
"<'paint-order'>",
|
|
410
|
+
"<'perspective'>",
|
|
411
|
+
"<'perspective-origin'>",
|
|
412
|
+
"<'place-content'>",
|
|
413
|
+
"<'place-items'>",
|
|
414
|
+
"<'place-self'>",
|
|
415
|
+
"<'pointer-events'>",
|
|
416
|
+
"<'position'>",
|
|
417
|
+
"<'quotes'>",
|
|
418
|
+
"<'resize'>",
|
|
419
|
+
"<'right'>",
|
|
420
|
+
"<'rotate'>",
|
|
421
|
+
"<'row-gap'>",
|
|
422
|
+
"<'ruby-align'>",
|
|
423
|
+
"<'ruby-merge'>",
|
|
424
|
+
"<'ruby-position'>",
|
|
425
|
+
"<'scale'>",
|
|
426
|
+
"<'scrollbar-color'>",
|
|
427
|
+
"<'scrollbar-gutter'>",
|
|
428
|
+
"<'scrollbar-width'>",
|
|
429
|
+
"<'scroll-behavior'>",
|
|
430
|
+
"<'scroll-margin'>",
|
|
431
|
+
"<'scroll-margin-block'>",
|
|
432
|
+
"<'scroll-margin-block-start'>",
|
|
433
|
+
"<'scroll-margin-block-end'>",
|
|
434
|
+
"<'scroll-margin-bottom'>",
|
|
435
|
+
"<'scroll-margin-inline'>",
|
|
436
|
+
"<'scroll-margin-inline-start'>",
|
|
437
|
+
"<'scroll-margin-inline-end'>",
|
|
438
|
+
"<'scroll-margin-left'>",
|
|
439
|
+
"<'scroll-margin-right'>",
|
|
440
|
+
"<'scroll-margin-top'>",
|
|
441
|
+
"<'scroll-padding'>",
|
|
442
|
+
"<'scroll-padding-block'>",
|
|
443
|
+
"<'scroll-padding-block-start'>",
|
|
444
|
+
"<'scroll-padding-block-end'>",
|
|
445
|
+
"<'scroll-padding-bottom'>",
|
|
446
|
+
"<'scroll-padding-inline'>",
|
|
447
|
+
"<'scroll-padding-inline-start'>",
|
|
448
|
+
"<'scroll-padding-inline-end'>",
|
|
449
|
+
"<'scroll-padding-left'>",
|
|
450
|
+
"<'scroll-padding-right'>",
|
|
451
|
+
"<'scroll-padding-top'>",
|
|
452
|
+
"<'scroll-snap-align'>",
|
|
453
|
+
"<'scroll-snap-coordinate'>",
|
|
454
|
+
"<'scroll-snap-destination'>",
|
|
455
|
+
"<'scroll-snap-points-x'>",
|
|
456
|
+
"<'scroll-snap-points-y'>",
|
|
457
|
+
"<'scroll-snap-stop'>",
|
|
458
|
+
"<'scroll-snap-type'>",
|
|
459
|
+
"<'scroll-snap-type-x'>",
|
|
460
|
+
"<'scroll-snap-type-y'>",
|
|
461
|
+
"<'shape-image-threshold'>",
|
|
462
|
+
"<'shape-margin'>",
|
|
463
|
+
"<'shape-outside'>",
|
|
464
|
+
"<'tab-size'>",
|
|
465
|
+
"<'table-layout'>",
|
|
466
|
+
"<'text-align'>",
|
|
467
|
+
"<'text-align-last'>",
|
|
468
|
+
"<'text-combine-upright'>",
|
|
469
|
+
"<'text-decoration'>",
|
|
470
|
+
"<'text-decoration-color'>",
|
|
471
|
+
"<'text-decoration-line'>",
|
|
472
|
+
"<'text-decoration-skip'>",
|
|
473
|
+
"<'text-decoration-skip-ink'>",
|
|
474
|
+
"<'text-decoration-style'>",
|
|
475
|
+
"<'text-decoration-thickness'>",
|
|
476
|
+
"<'text-emphasis'>",
|
|
477
|
+
"<'text-emphasis-color'>",
|
|
478
|
+
"<'text-emphasis-position'>",
|
|
479
|
+
"<'text-emphasis-style'>",
|
|
480
|
+
"<'text-indent'>",
|
|
481
|
+
"<'text-justify'>",
|
|
482
|
+
"<'text-orientation'>",
|
|
483
|
+
"<'text-overflow'>",
|
|
484
|
+
"<'text-rendering'>",
|
|
485
|
+
"<'text-shadow'>",
|
|
486
|
+
"<'text-size-adjust'>",
|
|
487
|
+
"<'text-transform'>",
|
|
488
|
+
"<'text-underline-offset'>",
|
|
489
|
+
"<'text-underline-position'>",
|
|
490
|
+
"<'top'>",
|
|
491
|
+
"<'touch-action'>",
|
|
492
|
+
"<'transform'>",
|
|
493
|
+
"<'transform-box'>",
|
|
494
|
+
"<'transform-origin'>",
|
|
495
|
+
"<'transform-style'>",
|
|
496
|
+
"<'transition'>",
|
|
497
|
+
"<'transition-delay'>",
|
|
498
|
+
"<'transition-duration'>",
|
|
499
|
+
"<'transition-property'>",
|
|
500
|
+
"<'transition-timing-function'>",
|
|
501
|
+
"<'translate'>",
|
|
502
|
+
"<'unicode-bidi'>",
|
|
503
|
+
"<'user-select'>",
|
|
504
|
+
"<'vertical-align'>",
|
|
505
|
+
"<'visibility'>",
|
|
506
|
+
"<'white-space'>",
|
|
507
|
+
"<'widows'>",
|
|
508
|
+
"<'width'>",
|
|
509
|
+
"<'will-change'>",
|
|
510
|
+
"<'word-break'>",
|
|
511
|
+
"<'word-spacing'>",
|
|
512
|
+
"<'word-wrap'>",
|
|
513
|
+
"<'writing-mode'>",
|
|
514
|
+
"<'z-index'>",
|
|
515
|
+
"<'zoom'>",
|
|
516
|
+
"<'-moz-background-clip'>",
|
|
517
|
+
"<'-moz-border-radius-bottomleft'>",
|
|
518
|
+
"<'-moz-border-radius-bottomright'>",
|
|
519
|
+
"<'-moz-border-radius-topleft'>",
|
|
520
|
+
"<'-moz-border-radius-topright'>",
|
|
521
|
+
"<'-moz-control-character-visibility'>",
|
|
522
|
+
"<'-moz-osx-font-smoothing'>",
|
|
523
|
+
"<'-moz-user-select'>",
|
|
524
|
+
"<'-ms-flex-align'>",
|
|
525
|
+
"<'-ms-flex-item-align'>",
|
|
526
|
+
"<'-ms-flex-line-pack'>",
|
|
527
|
+
"<'-ms-flex-negative'>",
|
|
528
|
+
"<'-ms-flex-pack'>",
|
|
529
|
+
"<'-ms-flex-order'>",
|
|
530
|
+
"<'-ms-flex-positive'>",
|
|
531
|
+
"<'-ms-flex-preferred-size'>",
|
|
532
|
+
"<'-ms-interpolation-mode'>",
|
|
533
|
+
"<'-ms-grid-column-align'>",
|
|
534
|
+
"<'-ms-grid-row-align'>",
|
|
535
|
+
"<'-ms-hyphenate-limit-last'>",
|
|
536
|
+
"<'-webkit-background-clip'>",
|
|
537
|
+
"<'-webkit-column-break-after'>",
|
|
538
|
+
"<'-webkit-column-break-before'>",
|
|
539
|
+
"<'-webkit-column-break-inside'>",
|
|
540
|
+
"<'-webkit-font-smoothing'>",
|
|
541
|
+
"<'-webkit-mask-box-image'>",
|
|
542
|
+
"<'-webkit-print-color-adjust'>",
|
|
543
|
+
"<'-webkit-text-security'>",
|
|
544
|
+
"<'-webkit-user-drag'>",
|
|
545
|
+
"<'-webkit-user-select'>",
|
|
546
|
+
"<'alignment-baseline'>",
|
|
547
|
+
"<'baseline-shift'>",
|
|
548
|
+
"<'behavior'>",
|
|
549
|
+
"<'clip-rule'>",
|
|
550
|
+
"<'cue'>",
|
|
551
|
+
"<'cue-after'>",
|
|
552
|
+
"<'cue-before'>",
|
|
553
|
+
"<'dominant-baseline'>",
|
|
554
|
+
"<'fill'>",
|
|
555
|
+
"<'fill-opacity'>",
|
|
556
|
+
"<'fill-rule'>",
|
|
557
|
+
"<'glyph-orientation-horizontal'>",
|
|
558
|
+
"<'glyph-orientation-vertical'>",
|
|
559
|
+
"<'kerning'>",
|
|
560
|
+
"<'marker'>",
|
|
561
|
+
"<'marker-end'>",
|
|
562
|
+
"<'marker-mid'>",
|
|
563
|
+
"<'marker-start'>",
|
|
564
|
+
"<'pause'>",
|
|
565
|
+
"<'pause-after'>",
|
|
566
|
+
"<'pause-before'>",
|
|
567
|
+
"<'rest'>",
|
|
568
|
+
"<'rest-after'>",
|
|
569
|
+
"<'rest-before'>",
|
|
570
|
+
"<'shape-rendering'>",
|
|
571
|
+
"<'src'>",
|
|
572
|
+
"<'speak'>",
|
|
573
|
+
"<'speak-as'>",
|
|
574
|
+
"<'stroke'>",
|
|
575
|
+
"<'stroke-dasharray'>",
|
|
576
|
+
"<'stroke-dashoffset'>",
|
|
577
|
+
"<'stroke-linecap'>",
|
|
578
|
+
"<'stroke-linejoin'>",
|
|
579
|
+
"<'stroke-miterlimit'>",
|
|
580
|
+
"<'stroke-opacity'>",
|
|
581
|
+
"<'stroke-width'>",
|
|
582
|
+
"<'text-anchor'>",
|
|
583
|
+
"<'unicode-range'>",
|
|
584
|
+
"<'voice-balance'>",
|
|
585
|
+
"<'voice-duration'>",
|
|
586
|
+
"<'voice-family'>",
|
|
587
|
+
"<'voice-pitch'>",
|
|
588
|
+
"<'voice-range'>",
|
|
589
|
+
"<'voice-rate'>",
|
|
590
|
+
"<'voice-stress'>",
|
|
591
|
+
"<'voice-volume'>",
|
|
592
|
+
"<absolute-size>",
|
|
593
|
+
"<alpha-value>",
|
|
594
|
+
"<angle-percentage>",
|
|
595
|
+
"<angular-color-hint>",
|
|
596
|
+
"<angular-color-stop>",
|
|
597
|
+
"<angular-color-stop-list>",
|
|
598
|
+
"<animateable-feature>",
|
|
599
|
+
"<attachment>",
|
|
600
|
+
"<attr()>",
|
|
601
|
+
"<attr-matcher>",
|
|
602
|
+
"<attr-modifier>",
|
|
603
|
+
"<attribute-selector>",
|
|
604
|
+
"<auto-repeat>",
|
|
605
|
+
"<auto-track-list>",
|
|
606
|
+
"<baseline-position>",
|
|
607
|
+
"<basic-shape>",
|
|
608
|
+
"<bg-image>",
|
|
609
|
+
"<bg-layer>",
|
|
610
|
+
"<bg-position>",
|
|
611
|
+
"<bg-size>",
|
|
612
|
+
"<blur()>",
|
|
613
|
+
"<blend-mode>",
|
|
614
|
+
"<box>",
|
|
615
|
+
"<brightness()>",
|
|
616
|
+
"<calc()>",
|
|
617
|
+
"<calc-sum>",
|
|
618
|
+
"<calc-product>",
|
|
619
|
+
"<calc-value>",
|
|
620
|
+
"<cf-final-image>",
|
|
621
|
+
"<cf-mixing-image>",
|
|
622
|
+
"<circle()>",
|
|
623
|
+
"<clamp()>",
|
|
624
|
+
"<class-selector>",
|
|
625
|
+
"<clip-source>",
|
|
626
|
+
"<color>",
|
|
627
|
+
"<color-stop>",
|
|
628
|
+
"<color-stop-angle>",
|
|
629
|
+
"<color-stop-length>",
|
|
630
|
+
"<color-stop-list>",
|
|
631
|
+
"<combinator>",
|
|
632
|
+
"<common-lig-values>",
|
|
633
|
+
"<compat-auto>",
|
|
634
|
+
"<composite-style>",
|
|
635
|
+
"<compositing-operator>",
|
|
636
|
+
"<compound-selector>",
|
|
637
|
+
"<compound-selector-list>",
|
|
638
|
+
"<complex-selector>",
|
|
639
|
+
"<complex-selector-list>",
|
|
640
|
+
"<conic-gradient()>",
|
|
641
|
+
"<contextual-alt-values>",
|
|
642
|
+
"<content-distribution>",
|
|
643
|
+
"<content-list>",
|
|
644
|
+
"<content-position>",
|
|
645
|
+
"<content-replacement>",
|
|
646
|
+
"<contrast()>",
|
|
647
|
+
"<counter()>",
|
|
648
|
+
"<counter-style>",
|
|
649
|
+
"<counter-style-name>",
|
|
650
|
+
"<counters()>",
|
|
651
|
+
"<cross-fade()>",
|
|
652
|
+
"<cubic-bezier-timing-function>",
|
|
653
|
+
"<deprecated-system-color>",
|
|
654
|
+
"<discretionary-lig-values>",
|
|
655
|
+
"<display-box>",
|
|
656
|
+
"<display-inside>",
|
|
657
|
+
"<display-internal>",
|
|
658
|
+
"<display-legacy>",
|
|
659
|
+
"<display-listitem>",
|
|
660
|
+
"<display-outside>",
|
|
661
|
+
"<drop-shadow()>",
|
|
662
|
+
"<east-asian-variant-values>",
|
|
663
|
+
"<east-asian-width-values>",
|
|
664
|
+
"<element()>",
|
|
665
|
+
"<ellipse()>",
|
|
666
|
+
"<ending-shape>",
|
|
667
|
+
"<env()>",
|
|
668
|
+
"<explicit-track-list>",
|
|
669
|
+
"<family-name>",
|
|
670
|
+
"<feature-tag-value>",
|
|
671
|
+
"<feature-type>",
|
|
672
|
+
"<feature-value-block>",
|
|
673
|
+
"<feature-value-block-list>",
|
|
674
|
+
"<feature-value-declaration>",
|
|
675
|
+
"<feature-value-declaration-list>",
|
|
676
|
+
"<feature-value-name>",
|
|
677
|
+
"<fill-rule>",
|
|
678
|
+
"<filter-function>",
|
|
679
|
+
"<filter-function-list>",
|
|
680
|
+
"<final-bg-layer>",
|
|
681
|
+
"<fit-content()>",
|
|
682
|
+
"<fixed-breadth>",
|
|
683
|
+
"<fixed-repeat>",
|
|
684
|
+
"<fixed-size>",
|
|
685
|
+
"<font-stretch-absolute>",
|
|
686
|
+
"<font-variant-css21>",
|
|
687
|
+
"<font-weight-absolute>",
|
|
688
|
+
"<frequency-percentage>",
|
|
689
|
+
"<general-enclosed>",
|
|
690
|
+
"<generic-family>",
|
|
691
|
+
"<generic-name>",
|
|
692
|
+
"<geometry-box>",
|
|
693
|
+
"<gradient>",
|
|
694
|
+
"<grayscale()>",
|
|
695
|
+
"<grid-line>",
|
|
696
|
+
"<historical-lig-values>",
|
|
697
|
+
"<hsl()>",
|
|
698
|
+
"<hsla()>",
|
|
699
|
+
"<hue>",
|
|
700
|
+
"<hue-rotate()>",
|
|
701
|
+
"<id-selector>",
|
|
702
|
+
"<image>",
|
|
703
|
+
"<image()>",
|
|
704
|
+
"<image-set()>",
|
|
705
|
+
"<image-set-option>",
|
|
706
|
+
"<image-src>",
|
|
707
|
+
"<image-tags>",
|
|
708
|
+
"<inflexible-breadth>",
|
|
709
|
+
"<inset()>",
|
|
710
|
+
"<invert()>",
|
|
711
|
+
"<keyframes-name>",
|
|
712
|
+
"<keyframe-block>",
|
|
713
|
+
"<keyframe-block-list>",
|
|
714
|
+
"<keyframe-selector>",
|
|
715
|
+
"<leader()>",
|
|
716
|
+
"<leader-type>",
|
|
717
|
+
"<length-percentage>",
|
|
718
|
+
"<line-names>",
|
|
719
|
+
"<line-name-list>",
|
|
720
|
+
"<line-style>",
|
|
721
|
+
"<line-width>",
|
|
722
|
+
"<linear-color-hint>",
|
|
723
|
+
"<linear-color-stop>",
|
|
724
|
+
"<linear-gradient()>",
|
|
725
|
+
"<mask-layer>",
|
|
726
|
+
"<mask-position>",
|
|
727
|
+
"<mask-reference>",
|
|
728
|
+
"<mask-source>",
|
|
729
|
+
"<masking-mode>",
|
|
730
|
+
"<matrix()>",
|
|
731
|
+
"<matrix3d()>",
|
|
732
|
+
"<max()>",
|
|
733
|
+
"<media-and>",
|
|
734
|
+
"<media-condition>",
|
|
735
|
+
"<media-condition-without-or>",
|
|
736
|
+
"<media-feature>",
|
|
737
|
+
"<media-in-parens>",
|
|
738
|
+
"<media-not>",
|
|
739
|
+
"<media-or>",
|
|
740
|
+
"<media-query>",
|
|
741
|
+
"<media-query-list>",
|
|
742
|
+
"<media-type>",
|
|
743
|
+
"<mf-boolean>",
|
|
744
|
+
"<mf-name>",
|
|
745
|
+
"<mf-plain>",
|
|
746
|
+
"<mf-range>",
|
|
747
|
+
"<mf-value>",
|
|
748
|
+
"<min()>",
|
|
749
|
+
"<minmax()>",
|
|
750
|
+
"<named-color>",
|
|
751
|
+
"<namespace-prefix>",
|
|
752
|
+
"<ns-prefix>",
|
|
753
|
+
"<number-percentage>",
|
|
754
|
+
"<numeric-figure-values>",
|
|
755
|
+
"<numeric-fraction-values>",
|
|
756
|
+
"<numeric-spacing-values>",
|
|
757
|
+
"<nth>",
|
|
758
|
+
"<opacity()>",
|
|
759
|
+
"<overflow-position>",
|
|
760
|
+
"<outline-radius>",
|
|
761
|
+
"<page-body>",
|
|
762
|
+
"<page-margin-box>",
|
|
763
|
+
"<page-margin-box-type>",
|
|
764
|
+
"<page-selector-list>",
|
|
765
|
+
"<page-selector>",
|
|
766
|
+
"<path()>",
|
|
767
|
+
"<paint()>",
|
|
768
|
+
"<perspective()>",
|
|
769
|
+
"<polygon()>",
|
|
770
|
+
"<position>",
|
|
771
|
+
"<pseudo-class-selector>",
|
|
772
|
+
"<pseudo-element-selector>",
|
|
773
|
+
"<pseudo-page>",
|
|
774
|
+
"<quote>",
|
|
775
|
+
"<radial-gradient()>",
|
|
776
|
+
"<relative-selector>",
|
|
777
|
+
"<relative-selector-list>",
|
|
778
|
+
"<relative-size>",
|
|
779
|
+
"<repeat-style>",
|
|
780
|
+
"<repeating-linear-gradient()>",
|
|
781
|
+
"<repeating-radial-gradient()>",
|
|
782
|
+
"<rgb()>",
|
|
783
|
+
"<rgba()>",
|
|
784
|
+
"<rotate()>",
|
|
785
|
+
"<rotate3d()>",
|
|
786
|
+
"<rotateX()>",
|
|
787
|
+
"<rotateY()>",
|
|
788
|
+
"<rotateZ()>",
|
|
789
|
+
"<saturate()>",
|
|
790
|
+
"<scale()>",
|
|
791
|
+
"<scale3d()>",
|
|
792
|
+
"<scaleX()>",
|
|
793
|
+
"<scaleY()>",
|
|
794
|
+
"<scaleZ()>",
|
|
795
|
+
"<self-position>",
|
|
796
|
+
"<shape-radius>",
|
|
797
|
+
"<skew()>",
|
|
798
|
+
"<skewX()>",
|
|
799
|
+
"<skewY()>",
|
|
800
|
+
"<sepia()>",
|
|
801
|
+
"<shadow>",
|
|
802
|
+
"<shadow-t>",
|
|
803
|
+
"<shape>",
|
|
804
|
+
"<shape-box>",
|
|
805
|
+
"<side-or-corner>",
|
|
806
|
+
"<single-animation>",
|
|
807
|
+
"<single-animation-direction>",
|
|
808
|
+
"<single-animation-fill-mode>",
|
|
809
|
+
"<single-animation-iteration-count>",
|
|
810
|
+
"<single-animation-play-state>",
|
|
811
|
+
"<single-transition>",
|
|
812
|
+
"<single-transition-property>",
|
|
813
|
+
"<size>",
|
|
814
|
+
"<step-position>",
|
|
815
|
+
"<step-timing-function>",
|
|
816
|
+
"<subclass-selector>",
|
|
817
|
+
"<supports-condition>",
|
|
818
|
+
"<supports-in-parens>",
|
|
819
|
+
"<supports-feature>",
|
|
820
|
+
"<supports-decl>",
|
|
821
|
+
"<supports-selector-fn>",
|
|
822
|
+
"<symbol>",
|
|
823
|
+
"<target>",
|
|
824
|
+
"<target-counter()>",
|
|
825
|
+
"<target-counters()>",
|
|
826
|
+
"<target-text()>",
|
|
827
|
+
"<time-percentage>",
|
|
828
|
+
"<timing-function>",
|
|
829
|
+
"<track-breadth>",
|
|
830
|
+
"<track-list>",
|
|
831
|
+
"<track-repeat>",
|
|
832
|
+
"<track-size>",
|
|
833
|
+
"<transform-function>",
|
|
834
|
+
"<transform-list>",
|
|
835
|
+
"<translate()>",
|
|
836
|
+
"<translate3d()>",
|
|
837
|
+
"<translateX()>",
|
|
838
|
+
"<translateY()>",
|
|
839
|
+
"<translateZ()>",
|
|
840
|
+
"<type-or-unit>",
|
|
841
|
+
"<type-selector>",
|
|
842
|
+
"<var()>",
|
|
843
|
+
"<viewport-length>",
|
|
844
|
+
"<wq-name>",
|
|
845
|
+
"<-legacy-gradient>",
|
|
846
|
+
"<-legacy-linear-gradient>",
|
|
847
|
+
"<-legacy-repeating-linear-gradient>",
|
|
848
|
+
"<-legacy-linear-gradient-arguments>",
|
|
849
|
+
"<-legacy-radial-gradient>",
|
|
850
|
+
"<-legacy-repeating-radial-gradient>",
|
|
851
|
+
"<-legacy-radial-gradient-arguments>",
|
|
852
|
+
"<-legacy-radial-gradient-size>",
|
|
853
|
+
"<-legacy-radial-gradient-shape>",
|
|
854
|
+
"<-non-standard-font>",
|
|
855
|
+
"<-non-standard-color>",
|
|
856
|
+
"<-non-standard-image-rendering>",
|
|
857
|
+
"<-non-standard-overflow>",
|
|
858
|
+
"<-non-standard-width>",
|
|
859
|
+
"<-webkit-gradient()>",
|
|
860
|
+
"<-webkit-gradient-color-stop>",
|
|
861
|
+
"<-webkit-gradient-point>",
|
|
862
|
+
"<-webkit-gradient-radius>",
|
|
863
|
+
"<-webkit-gradient-type>",
|
|
864
|
+
"<-webkit-mask-box-repeat>",
|
|
865
|
+
"<-webkit-mask-clip-style>",
|
|
866
|
+
"<-ms-filter-function-list>",
|
|
867
|
+
"<-ms-filter-function>",
|
|
868
|
+
"<-ms-filter-function-progid>",
|
|
869
|
+
"<-ms-filter-function-legacy>",
|
|
870
|
+
"<-ms-filter>",
|
|
871
|
+
"<age>",
|
|
872
|
+
"<attr-name>",
|
|
873
|
+
"<attr-fallback>",
|
|
874
|
+
"<border-radius>",
|
|
875
|
+
"<bottom>",
|
|
876
|
+
"<generic-voice>",
|
|
877
|
+
"<gender>",
|
|
878
|
+
"<left>",
|
|
879
|
+
"<mask-image>",
|
|
880
|
+
"<name-repeat>",
|
|
881
|
+
"<paint>",
|
|
882
|
+
"<page-size>",
|
|
883
|
+
"<ratio>",
|
|
884
|
+
"<right>",
|
|
885
|
+
"<svg-length>",
|
|
886
|
+
"<svg-writing-mode>",
|
|
887
|
+
"<top>",
|
|
888
|
+
"<track-group>",
|
|
889
|
+
"<track-list-v0>",
|
|
890
|
+
"<track-minmax>",
|
|
891
|
+
"<x>",
|
|
892
|
+
"<y>",
|
|
893
|
+
"<declaration>",
|
|
894
|
+
"<declaration-list>",
|
|
895
|
+
"<url>",
|
|
896
|
+
"<url-modifier>",
|
|
897
|
+
"<number-zero-one>",
|
|
898
|
+
"<number-one-or-greater>",
|
|
899
|
+
"<positive-integer>",
|
|
900
|
+
"<-non-standard-display>",
|
|
901
|
+
"<ident-token>",
|
|
902
|
+
"<function-token>",
|
|
903
|
+
"<at-keyword-token>",
|
|
904
|
+
"<hash-token>",
|
|
905
|
+
"<string-token>",
|
|
906
|
+
"<bad-string-token>",
|
|
907
|
+
"<url-token>",
|
|
908
|
+
"<bad-url-token>",
|
|
909
|
+
"<delim-token>",
|
|
910
|
+
"<number-token>",
|
|
911
|
+
"<percentage-token>",
|
|
912
|
+
"<dimension-token>",
|
|
913
|
+
"<whitespace-token>",
|
|
914
|
+
"<CDO-token>",
|
|
915
|
+
"<CDC-token>",
|
|
916
|
+
"<colon-token>",
|
|
917
|
+
"<semicolon-token>",
|
|
918
|
+
"<comma-token>",
|
|
919
|
+
"<[-token>",
|
|
920
|
+
"<]-token>",
|
|
921
|
+
"<(-token>",
|
|
922
|
+
"<)-token>",
|
|
923
|
+
"<{-token>",
|
|
924
|
+
"<}-token>",
|
|
925
|
+
"<string>",
|
|
926
|
+
"<ident>",
|
|
927
|
+
"<custom-ident>",
|
|
928
|
+
"<custom-property-name>",
|
|
929
|
+
"<hex-color>",
|
|
930
|
+
"<an-plus-b>",
|
|
931
|
+
"<urange>",
|
|
932
|
+
"<declaration-value>",
|
|
933
|
+
"<any-value>",
|
|
934
|
+
"<dimension>",
|
|
935
|
+
"<angle>",
|
|
936
|
+
"<decibel>",
|
|
937
|
+
"<frequency>",
|
|
938
|
+
"<flex>",
|
|
939
|
+
"<length>",
|
|
940
|
+
"<resolution>",
|
|
941
|
+
"<semitones>",
|
|
942
|
+
"<time>",
|
|
943
|
+
"<percentage>",
|
|
944
|
+
"<zero>",
|
|
945
|
+
"<number>",
|
|
946
|
+
"<integer>",
|
|
947
|
+
"<-ms-legacy-expression>",
|
|
948
|
+
"<bcp-47>"
|
|
949
|
+
]
|
|
950
|
+
},
|
|
951
|
+
"extended-type": {
|
|
952
|
+
"type": "string",
|
|
953
|
+
"enum": [
|
|
954
|
+
"Any",
|
|
955
|
+
"NoEmptyAny",
|
|
956
|
+
"OneLineAny",
|
|
957
|
+
"Zero",
|
|
958
|
+
"Number",
|
|
959
|
+
"Int",
|
|
960
|
+
"Uint",
|
|
961
|
+
"XMLName",
|
|
962
|
+
"DOMID",
|
|
963
|
+
"FunctionBody",
|
|
964
|
+
"Pattern",
|
|
965
|
+
"DateTime",
|
|
966
|
+
"TabIndex",
|
|
967
|
+
"BCP47",
|
|
968
|
+
"URL",
|
|
969
|
+
"AbsoluteURL",
|
|
970
|
+
"HashName",
|
|
971
|
+
"OneCodePointChar",
|
|
972
|
+
"CustomElementName",
|
|
973
|
+
"BrowsingContextName",
|
|
974
|
+
"BrowsingContextNameOrKeyword",
|
|
975
|
+
"HTTPSchemaURL",
|
|
976
|
+
"MIMEType",
|
|
977
|
+
"ItemProp",
|
|
978
|
+
"Srcset",
|
|
979
|
+
"SourceSizeList",
|
|
980
|
+
"IconSize",
|
|
981
|
+
"AutoComplete",
|
|
982
|
+
"Accept",
|
|
983
|
+
"SerializedPermissionsPolicy",
|
|
984
|
+
"<css-declaration-list>",
|
|
985
|
+
"<class-list>",
|
|
986
|
+
"<svg-font-size>",
|
|
987
|
+
"<svg-font-size-adjust>",
|
|
988
|
+
"<'color-profile'>",
|
|
989
|
+
"<'color-rendering'>",
|
|
990
|
+
"<'enable-background'>",
|
|
991
|
+
"<list-of-svg-feature-string>",
|
|
992
|
+
"<animatable-value>",
|
|
993
|
+
"<begin-value-list>",
|
|
994
|
+
"<end-value-list>",
|
|
995
|
+
"<list-of-value>",
|
|
996
|
+
"<clock-value>",
|
|
997
|
+
"<color-matrix>",
|
|
998
|
+
"<dasharray>",
|
|
999
|
+
"<key-points>",
|
|
1000
|
+
"<key-splines>",
|
|
1001
|
+
"<key-times>",
|
|
1002
|
+
"<system-language>",
|
|
1003
|
+
"<list-of-lengths>",
|
|
1004
|
+
"<list-of-numbers>",
|
|
1005
|
+
"<number-optional-number>",
|
|
1006
|
+
"<origin>",
|
|
1007
|
+
"<svg-path>",
|
|
1008
|
+
"<list-of-percentages>",
|
|
1009
|
+
"<points>",
|
|
1010
|
+
"<preserve-aspect-ratio>",
|
|
1011
|
+
"<view-box>",
|
|
1012
|
+
"<rotate>",
|
|
1013
|
+
"<text-coordinate>"
|
|
1014
|
+
]
|
|
1015
|
+
},
|
|
1016
|
+
"html-attr-requirement": { "type": "string", "enum": ["Boolean"] },
|
|
1017
|
+
"keyword-defined-type": {
|
|
1018
|
+
"oneOf": [
|
|
1019
|
+
{ "$ref": "#/definitions/css-syntax" },
|
|
1020
|
+
{ "$ref": "#/definitions/extended-type" },
|
|
1021
|
+
{ "$ref": "#/definitions/html-attr-requirement" }
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
"list": {
|
|
1025
|
+
"description": "- [Space-separated tokens](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#space-separated-tokens)\n- [Comma-separated tokens](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#comma-separated-tokens)",
|
|
1026
|
+
"type": "object",
|
|
1027
|
+
"additionalProperties": false,
|
|
1028
|
+
"required": ["token", "separator"],
|
|
1029
|
+
"properties": {
|
|
1030
|
+
"token": { "oneOf": [{ "$ref": "#/definitions/extended-type" }, { "$ref": "#/definitions/enum" }] },
|
|
1031
|
+
"disallowToSurroundBySpaces": { "type": "boolean" },
|
|
1032
|
+
"allowEmpty": { "type": "boolean" },
|
|
1033
|
+
"ordered": { "type": "boolean" },
|
|
1034
|
+
"unique": { "type": "boolean" },
|
|
1035
|
+
"caseInsensitive": { "type": "boolean" },
|
|
1036
|
+
"number": {
|
|
1037
|
+
"oneOf": [
|
|
1038
|
+
{ "type": "string", "enum": ["zeroOrMore", "oneOrMore"] },
|
|
1039
|
+
{
|
|
1040
|
+
"type": "object",
|
|
1041
|
+
"additionalProperties": false,
|
|
1042
|
+
"required": ["min", "max"],
|
|
1043
|
+
"properties": { "min": { "type": "number" }, "max": { "type": "number" } }
|
|
1044
|
+
}
|
|
1045
|
+
]
|
|
1046
|
+
},
|
|
1047
|
+
"separator": { "type": "string", "enum": ["space", "comma"] }
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
"enum": {
|
|
1051
|
+
"description": "[Enumerated attributes](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute)",
|
|
1052
|
+
"type": "object",
|
|
1053
|
+
"additionalProperties": false,
|
|
1054
|
+
"required": ["enum"],
|
|
1055
|
+
"properties": {
|
|
1056
|
+
"enum": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string" } },
|
|
1057
|
+
"disallowToSurroundBySpaces": { "type": "boolean" },
|
|
1058
|
+
"caseInsensitive": { "type": "boolean" },
|
|
1059
|
+
"invalidValueDefault": { "type": "string" },
|
|
1060
|
+
"missingValueDefault": { "type": "string" },
|
|
1061
|
+
"sameStates": {
|
|
1062
|
+
"type": "object",
|
|
1063
|
+
"additionalProperties": true,
|
|
1064
|
+
"items": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string" } }
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
"number": {
|
|
1069
|
+
"description": "[Numbers](https://html.spec.whatwg.org/dev/common-microsyntaxes.html#numbers)",
|
|
1070
|
+
"type": "object",
|
|
1071
|
+
"required": ["type"],
|
|
1072
|
+
"additionalProperties": false,
|
|
1073
|
+
"properties": {
|
|
1074
|
+
"type": { "type": "string", "enum": ["float", "integer"] },
|
|
1075
|
+
"gt": { "type": "number" },
|
|
1076
|
+
"gte": { "type": "number" },
|
|
1077
|
+
"lt": { "type": "number" },
|
|
1078
|
+
"lte": { "type": "number" },
|
|
1079
|
+
"clampable": { "type": "boolean" }
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"type": {
|
|
1083
|
+
"oneOf": [
|
|
1084
|
+
{ "$ref": "#/definitions/keyword-defined-type" },
|
|
1085
|
+
{ "$ref": "#/definitions/list" },
|
|
1086
|
+
{ "$ref": "#/definitions/enum" },
|
|
1087
|
+
{ "$ref": "#/definitions/number" }
|
|
1088
|
+
]
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
"properties": { "type": { "$ref": "#/definitions/type" } }
|
|
1092
|
+
}
|