@csstools/css-syntax-patches-for-csstree 1.1.2 → 1.1.4

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/CHANGELOG.md CHANGED
@@ -1,9 +1,10 @@
1
1
  # Changes to CSS Syntax Patches For CSSTree
2
2
 
3
- ### 1.1.2
3
+ ### 1.1.4
4
4
 
5
- _March 26, 2026_
5
+ _May 13, 2026_
6
+
7
+ - Update `@webref/css` to [`v8.5.4`](https://github.com/w3c/webref/releases/tag/%40webref%2Fcss%408.5.4)
6
8
 
7
- - Update `@webref/css` to [`v8.5.1`](https://github.com/w3c/webref/releases/tag/%40webref%2Fcss%408.5.1)
8
9
 
9
10
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/packages/css-syntax-patches-for-csstree/CHANGELOG.md)
package/dist/index.json CHANGED
@@ -12,6 +12,7 @@
12
12
  "descriptors": {
13
13
  "ascent-override": "[ normal | <percentage [0,∞]> ]{1,2}",
14
14
  "descent-override": "[ normal | <percentage [0,∞]> ]{1,2}",
15
+ "font-family": "<font-family-name>",
15
16
  "font-language-override": "normal | <string>",
16
17
  "font-named-instance": "auto | <string>",
17
18
  "font-size": "auto | [ <number> ]{1,2}",
@@ -33,6 +34,11 @@
33
34
  "font-display": "auto | block | swap | fallback | optional"
34
35
  }
35
36
  },
37
+ "font-palette-values": {
38
+ "descriptors": {
39
+ "font-family": "<font-family-name>#"
40
+ }
41
+ },
36
42
  "function": {
37
43
  "descriptors": {
38
44
  "result": "<declaration-value>?"
@@ -130,6 +136,7 @@
130
136
  "box-shadow-position": "[ outset | inset ]#",
131
137
  "box-shadow-spread": "<length>#",
132
138
  "box-snap": "none | block-start | block-end | center | baseline | last-baseline",
139
+ "caret-color": "auto | <color> [ auto | <color> ]?",
133
140
  "clear": "| block-start | block-end | top | bottom | both-inline | both-block",
134
141
  "clip": "rect( <top> , <right> , <bottom> , <left> ) | rect( <top> <right> <bottom> <left> ) | auto",
135
142
  "color-adjust": "<'print-color-adjust'>",
@@ -140,26 +147,26 @@
140
147
  "column-rule": "<gap-rule-list> | <gap-auto-rule-list>",
141
148
  "column-rule-break": "none | normal | intersection",
142
149
  "column-rule-color": "<line-color-list> | <auto-line-color-list>",
143
- "column-rule-edge-inset": "<length-percentage> [ <length-percentage> ]?",
144
- "column-rule-edge-inset-end": "<length-percentage>",
145
- "column-rule-edge-inset-start": "<length-percentage>",
146
- "column-rule-inset": "<'column-rule-edge-inset'> [ / <'column-rule-interior-inset'> ]?",
150
+ "column-rule-inset": "<'column-rule-inset-cap'> [ / <'column-rule-inset-junction'> ]?",
151
+ "column-rule-inset-cap": "<length-percentage> [ <length-percentage> ]?",
152
+ "column-rule-inset-cap-end": "<length-percentage>",
153
+ "column-rule-inset-cap-start": "<length-percentage>",
147
154
  "column-rule-inset-end": "<length-percentage>",
155
+ "column-rule-inset-junction": "<length-percentage> [ <length-percentage> ]?",
156
+ "column-rule-inset-junction-end": "<length-percentage>",
157
+ "column-rule-inset-junction-start": "<length-percentage>",
148
158
  "column-rule-inset-start": "<length-percentage>",
149
- "column-rule-interior-inset": "<length-percentage> [ <length-percentage> ]?",
150
- "column-rule-interior-inset-end": "<length-percentage>",
151
- "column-rule-interior-inset-start": "<length-percentage>",
152
159
  "column-rule-style": "<line-style-list> | <auto-line-style-list>",
153
- "column-rule-visibility-items": "all | around | between",
160
+ "column-rule-visibility-items": "all | around | between | normal",
154
161
  "column-rule-width": "<line-width-list> | <auto-line-width-list>",
155
162
  "column-span": "| <integer [1,∞]> | auto",
156
163
  "column-width": "auto | <length [0,∞]> | min-content | max-content | fit-content( <length-percentage> )",
157
164
  "contain": "none | strict | content | [ [ size | inline-size ] || layout || style || paint ]",
158
- "contain-intrinsic-block-size": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
159
- "contain-intrinsic-height": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
160
- "contain-intrinsic-inline-size": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
161
- "contain-intrinsic-size": "[ [ auto | from-element ]? [ none | <length [0,∞]> ] ]{1,2}",
162
- "contain-intrinsic-width": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
165
+ "contain-intrinsic-block-size": "auto? [ none | <length [0,∞]> ]",
166
+ "contain-intrinsic-height": "auto? [ none | <length [0,∞]> ]",
167
+ "contain-intrinsic-inline-size": "auto? [ none | <length [0,∞]> ]",
168
+ "contain-intrinsic-size": "[ auto? [ none | <length [0,∞]> ] ]{1,2}",
169
+ "contain-intrinsic-width": "auto? [ none | <length [0,∞]> ]",
163
170
  "container-type": "normal | [ [ size | inline-size ] || scroll-state ]",
164
171
  "content": "| <element()>",
165
172
  "continue": "auto | discard | collapse | -webkit-legacy | overflow | paginate | fragments",
@@ -193,7 +200,7 @@
193
200
  "cursor": "[ <cursor-image> , ]* <cursor-predefined>",
194
201
  "cx": "<length-percentage>",
195
202
  "cy": "<length-percentage>",
196
- "display": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy> | grid-lanes | inline-grid-lanes | ruby | ruby-base | ruby-text | ruby-base-container | ruby-text-container | <display-outside> | <-non-standard-display> || [ <display-inside> | math ]",
203
+ "display": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy> | <-non-standard-display> | grid-lanes | inline-grid-lanes | <display-outside> || [ <display-inside> | math ]",
197
204
  "dominant-baseline": "use-script | no-change | reset-size | text-after-edge | text-before-edge | auto | <baseline-metric>",
198
205
  "event-trigger": "none | [ <'event-trigger-name'> <'event-trigger-source'> ]#",
199
206
  "event-trigger-name": "none | <dashed-ident>#",
@@ -216,14 +223,18 @@
216
223
  "flow-from": "<custom-ident> | none",
217
224
  "flow-into": "none | <custom-ident> [ element | content ]?",
218
225
  "flow-tolerance": "normal | <length-percentage> | infinite",
226
+ "font": "[ [ <'font-style'> || <font-variant-css2> || <'font-weight'> || <font-width-css3> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'># ] | <system-font-family-name> | <-non-standard-font>",
227
+ "font-family": "[ <font-family-name> | <generic-font-family> ]#",
219
228
  "font-size-adjust": "none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number [0,∞]> ]",
220
229
  "font-stretch": "normal | <percentage [0,∞]> | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded",
221
230
  "font-style": "normal | italic | left | right | oblique <angle [-90deg,90deg]>?",
222
231
  "font-synthesis-style": "auto | none | oblique-only",
223
- "font-variant": "normal | none | [ [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ] || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ] || [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ] || [ <east-asian-variant-values> || <east-asian-width-values> || ruby ] || [ sub | super ] || [ text | emoji | unicode ] ]",
232
+ "font-variant": "normal | none | [ [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ] || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || [ stylistic( <font-feature-value-name> ) || historical-forms || styleset( <font-feature-value-name># ) || character-variant( <font-feature-value-name># ) || swash( <font-feature-value-name> ) || ornaments( <font-feature-value-name> ) || annotation( <font-feature-value-name> ) ] || [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ] || [ <east-asian-variant-values> || <east-asian-width-values> || ruby ] || [ sub | super ] || [ text | emoji | unicode ] ]",
233
+ "font-variant-alternates": "normal | [ stylistic( <font-feature-value-name> ) || historical-forms || styleset( <font-feature-value-name># ) || character-variant( <font-feature-value-name># ) || swash( <font-feature-value-name> ) || ornaments( <font-feature-value-name> ) || annotation( <font-feature-value-name> ) ]",
224
234
  "font-variation-settings": "normal | [ <opentype-tag> <number> ]#",
225
235
  "footnote-display": "block | inline | compact",
226
236
  "footnote-policy": "auto | line | block",
237
+ "frame-sizing": "auto | content-width | content-height | content-block-size | content-inline-size",
227
238
  "glyph-orientation-vertical": "auto | 0deg | 90deg | 0 | 90",
228
239
  "grid-column-gap": "normal | <length-percentage [0,∞]> | <line-width>",
229
240
  "grid-gap": "<'row-gap'> <'column-gap'>?",
@@ -258,7 +269,11 @@
258
269
  "marker-mid": "none | <marker-ref>",
259
270
  "marker-side": "match-self | match-parent",
260
271
  "marker-start": "none | <marker-ref>",
261
- "mask-border-slice": "[ <number> | <percentage> ]{1,4} fill?",
272
+ "mask-border-outset": "<'border-image-outset'>",
273
+ "mask-border-repeat": "<'border-image-repeat'>",
274
+ "mask-border-slice": "<'border-image-slice'>",
275
+ "mask-border-source": "<'border-image-source'>",
276
+ "mask-border-width": "<'border-image-width'>",
262
277
  "max-height": "none | <length-percentage [0,∞]> | min-content | max-content | fit-content( <length-percentage [0,∞]> ) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain | <-non-standard-size>",
263
278
  "max-lines": "none | <integer [1,∞]>",
264
279
  "max-width": "none | <length-percentage [0,∞]> | min-content | max-content | fit-content( <length-percentage [0,∞]> ) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain | <-non-standard-size>",
@@ -271,19 +286,26 @@
271
286
  "outline-color": "auto | <'border-top-color'>",
272
287
  "overflow": "<'overflow-block'>{1,2} | <-non-standard-overflow>",
273
288
  "overflow-block": "| <-non-standard-overflow>",
274
- "overflow-clip-margin-block": "<visual-box> || <length [0,∞]>",
275
- "overflow-clip-margin-block-end": "<visual-box> || <length [0,∞]>",
276
- "overflow-clip-margin-block-start": "<visual-box> || <length [0,∞]>",
277
- "overflow-clip-margin-bottom": "<visual-box> || <length [0,∞]>",
278
- "overflow-clip-margin-inline": "<visual-box> || <length [0,∞]>",
279
- "overflow-clip-margin-inline-end": "<visual-box> || <length [0,∞]>",
280
- "overflow-clip-margin-inline-start": "<visual-box> || <length [0,∞]>",
281
- "overflow-clip-margin-left": "<visual-box> || <length [0,∞]>",
282
- "overflow-clip-margin-right": "<visual-box> || <length [0,∞]>",
283
- "overflow-clip-margin-top": "<visual-box> || <length [0,∞]>",
289
+ "overflow-clip-margin": "<visual-box> || <length>",
290
+ "overflow-clip-margin-block": "<visual-box> || <length>",
291
+ "overflow-clip-margin-block-end": "<visual-box> || <length>",
292
+ "overflow-clip-margin-block-start": "<visual-box> || <length>",
293
+ "overflow-clip-margin-bottom": "<visual-box> || <length>",
294
+ "overflow-clip-margin-inline": "<visual-box> || <length>",
295
+ "overflow-clip-margin-inline-end": "<visual-box> || <length>",
296
+ "overflow-clip-margin-inline-start": "<visual-box> || <length>",
297
+ "overflow-clip-margin-left": "<visual-box> || <length>",
298
+ "overflow-clip-margin-right": "<visual-box> || <length>",
299
+ "overflow-clip-margin-top": "<visual-box> || <length>",
284
300
  "overflow-inline": "| <-non-standard-overflow>",
285
301
  "overflow-x": "| <-non-standard-overflow>",
286
302
  "overflow-y": "| <-non-standard-overflow>",
303
+ "overscroll-behavior": "[ contain | none | auto | chain ]{1,2}",
304
+ "overscroll-behavior-block": "contain | none | auto | chain",
305
+ "overscroll-behavior-inline": "contain | none | auto | chain",
306
+ "overscroll-behavior-x": "contain | none | auto | chain",
307
+ "overscroll-behavior-y": "contain | none | auto | chain",
308
+ "path-length": "none | @ @ unknown symbol \" number [ 0 , ∞ ] \"",
287
309
  "pause-after": "<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strong",
288
310
  "pause-before": "<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strong",
289
311
  "perspective": "none | <length [0,∞]>",
@@ -292,7 +314,7 @@
292
314
  "pointer-timeline-axis": "[ block | inline | x | y ]#",
293
315
  "pointer-timeline-name": "[ none | <dashed-ident> ]#",
294
316
  "position": "| <running()>",
295
- "position-anchor": "| normal",
317
+ "position-anchor": "| normal | match-parent",
296
318
  "position-try-fallbacks": "none | [ [ <dashed-ident> || <try-tactic> ] | <position-area> ]#",
297
319
  "quotes": "| match-parent",
298
320
  "r": "<length-percentage>",
@@ -303,27 +325,28 @@
303
325
  "row-rule": "<gap-rule-list> | <gap-auto-rule-list>",
304
326
  "row-rule-break": "none | normal | intersection",
305
327
  "row-rule-color": "<line-color-list> | <auto-line-color-list>",
306
- "row-rule-edge-inset": "<length-percentage> [ <length-percentage> ]?",
307
- "row-rule-edge-inset-end": "<length-percentage>",
308
- "row-rule-edge-inset-start": "<length-percentage>",
309
- "row-rule-inset": "<'column-rule-edge-inset'> [ / <'column-rule-interior-inset'> ]?",
328
+ "row-rule-inset": "<'column-rule-inset-cap'> [ / <'column-rule-inset-junction'> ]?",
329
+ "row-rule-inset-cap": "<length-percentage> [ <length-percentage> ]?",
330
+ "row-rule-inset-cap-end": "<length-percentage>",
331
+ "row-rule-inset-cap-start": "<length-percentage>",
310
332
  "row-rule-inset-end": "<length-percentage>",
333
+ "row-rule-inset-junction": "<length-percentage> [ <length-percentage> ]?",
334
+ "row-rule-inset-junction-end": "<length-percentage>",
335
+ "row-rule-inset-junction-start": "<length-percentage>",
311
336
  "row-rule-inset-start": "<length-percentage>",
312
- "row-rule-interior-inset": "<length-percentage> [ <length-percentage> ]?",
313
- "row-rule-interior-inset-end": "<length-percentage>",
314
- "row-rule-interior-inset-start": "<length-percentage>",
315
337
  "row-rule-style": "<line-style-list> | <auto-line-style-list>",
316
- "row-rule-visibility-items": "all | around | between",
338
+ "row-rule-visibility-items": "all | around | between | normal",
317
339
  "row-rule-width": "<line-width-list> | <auto-line-width-list>",
318
340
  "ruby-merge": "separate | merge | auto",
341
+ "ruby-overhang": "auto | spaces",
319
342
  "rule": "<'column-rule'>",
320
343
  "rule-break": "<'column-rule-break'>",
321
344
  "rule-color": "<'column-rule-color'>",
322
- "rule-edge-inset": "<'column-rule-edge-inset'>",
323
345
  "rule-inset": "<'column-rule-inset'>",
346
+ "rule-inset-cap": "<'column-rule-inset-cap'>",
324
347
  "rule-inset-end": "<'column-rule-inset-end'>",
348
+ "rule-inset-junction": "<'column-rule-inset-junction'>",
325
349
  "rule-inset-start": "<'column-rule-inset-start'>",
326
- "rule-interior-inset": "<'column-rule-interior-inset'>",
327
350
  "rule-overlap": "row-over-column | column-over-row",
328
351
  "rule-style": "<'column-rule-style'>",
329
352
  "rule-visibility-items": "<'column-rule-visibility-items'>",
@@ -345,7 +368,6 @@
345
368
  "shape-inside": "auto | outside-shape | [ <basic-shape> || shape-box ] | <image> | display",
346
369
  "shape-margin": "<length-percentage [0,∞]>",
347
370
  "shape-padding": "<length-percentage [0,∞]>",
348
- "shape-subtract": "none | [ <basic-shape> | <url> ]+",
349
371
  "slider-orientation": "auto | left-to-right | right-to-left | top-to-bottom | bottom-to-top",
350
372
  "spatial-navigation-action": "auto | focus | scroll",
351
373
  "spatial-navigation-contain": "auto | contain",
@@ -368,7 +390,7 @@
368
390
  "stroke-position": "<position>#",
369
391
  "stroke-repeat": "<repeat-style>#",
370
392
  "stroke-size": "<bg-size>#",
371
- "stroke-width": "[ <length-percentage> | <number> ]#",
393
+ "stroke-width": "[ <length-percentage> | <line-width> | <number> ]#",
372
394
  "tab-size": "<number [0,∞]> | <length [0,∞]>",
373
395
  "text-align": "| <string> | justify-all",
374
396
  "text-align-all": "start | end | left | right | center | <string> | justify | match-parent",
@@ -380,6 +402,7 @@
380
402
  "text-decoration-skip-spaces": "none | all | [ start || end ]",
381
403
  "text-decoration-thickness": "auto | from-font | <length-percentage> | <line-width>",
382
404
  "text-emphasis-skip": "spaces || punctuation || symbols || narrow",
405
+ "text-fit": "[ none | grow | shrink ] [ consistent | per-line | per-line-all ]? <percentage>?",
383
406
  "text-group-align": "none | start | end | left | right | center",
384
407
  "text-indent": "[ <length-percentage> ] && hanging? && each-line?",
385
408
  "text-justify": "[ auto | none | inter-word | inter-character | ruby ] || no-compress",
@@ -476,6 +499,7 @@
476
499
  "color-stripe": "<color> && [ <length-percentage> | <flex> ]?",
477
500
  "color()": "color( [ from <color> ]? [ <custom-params> | [ <predefined-rgb> [ <number> | <percentage> | r | g | b | alpha | none ]{3} [ / [ <alpha-value> | r | g | b | alpha | none ] ]? ] | [ <xyz-space> [ <number> | <percentage> | x | y | z | alpha | none ]{3} [ / [ <alpha-value> | x | y | z | alpha | none ] ]? ] ] )",
478
501
  "colorspace-params": "[ <custom-params> | <predefined-rgb-params> | <xyz-params> ]",
502
+ "combinator": "'>' | '+' | '~' | [ '|' '|' ] | [ / <wq-name> / ]",
479
503
  "command-end-point": "[ to <position> | by <coordinate-pair> ]",
480
504
  "composite-mode": "clear | copy | source-over | destination-over | source-in | destination-in | source-out | destination-out | source-atop | destination-atop | xor | lighter | plus-darker | plus-lighter",
481
505
  "container-condition": "[ <container-name>? <container-query>? ]!",
@@ -502,17 +526,18 @@
502
526
  "env()": "env( <custom-ident> <integer [0,∞]>* , <declaration-value>? )",
503
527
  "event-trigger-event": "activate | interest | click | touch | dblclick | keypress( <string> ) | . . .",
504
528
  "fade()": "fade( [ <length-percentage> ] )",
505
- "feature-index": "<integer [0,∞]>",
506
529
  "feature-tag-value": "<opentype-tag> [ <integer [0,∞]> | on | off ]?",
507
- "feature-value-name": "<ident>",
508
530
  "filter()": "filter( [ <image> | <string> ] , <filter-value-list> )",
509
531
  "final-bg-layer": "<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <bg-clip> || <visual-box> || <'background-color'>",
510
532
  "first-valid()": "first-valid( <declaration-value># )",
511
533
  "fit-content()": "fit-content( <length-percentage> )",
512
534
  "fixed-breadth": "<length-percentage [0,∞]>",
535
+ "font-family-name": "<string> | <custom-ident>+",
536
+ "font-feature-index": "<integer>",
537
+ "font-feature-value-name": "<ident>",
513
538
  "font-features-tech": "[ features-opentype | features-aat | features-graphite ]",
514
539
  "font-format": "[ <string> | collection | embedded-opentype | opentype | svg | truetype | woff | woff2 ]",
515
- "font-src": "<url> [ format( <font-format> ) ]? [ tech( <font-tech># ) ]? | local( <family-name> )",
540
+ "font-src": "<url> [ format( <font-format> ) ]? [ tech( <font-tech># ) ]? | local( <font-family-name> )",
516
541
  "font-src-list": "[ <url> [ format( <font-format> ) ]? [ tech( <font-tech># ) ]? | local( <family-name> ) ]#",
517
542
  "font-tech": "[ <font-features-tech> | <color-font-tech> | variations | palettes | incremental ]",
518
543
  "font-weight-absolute": "[ normal | bold | <number [1,1000]> ]",
@@ -524,7 +549,10 @@
524
549
  "gap-rule": "<line-width> || <line-style> || <color>",
525
550
  "gap-rule-list": "<gap-rule-or-repeat>#",
526
551
  "gap-rule-or-repeat": "<gap-rule> | <gap-repeat-rule>",
527
- "generic-script-specific": "generic( fangsong ) | generic( kai ) | generic( khmer-mul ) | generic( nastaliq )",
552
+ "generic-font-complete": "serif | sans-serif | system-ui | cursive | fantasy | math | monospace",
553
+ "generic-font-family": "<generic-font-script-specific> | <generic-font-complete> | <generic-font-incomplete> | <-non-standard-generic-family>",
554
+ "generic-font-incomplete": "ui-serif | ui-sans-serif | ui-monospace | ui-rounded",
555
+ "generic-font-script-specific": "generic( fangsong ) | generic( kai ) | generic( khmer-mul ) | generic( nastaliq )",
528
556
  "generic-voice": "<age>? <gender> <integer>?",
529
557
  "gradient": "[ <linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()> | <repeating-conic-gradient()> | <-legacy-gradient> ]",
530
558
  "grid-line": "auto | <custom-ident> | [ [ <integer [-∞,-1]> | <integer [1,∞]> ] && <custom-ident>? ] | [ span && [ <integer [1,∞]> || <custom-ident> ] ]",
@@ -581,7 +609,7 @@
581
609
  "line-width": "<length [0,∞]> | hairline | thin | medium | thick",
582
610
  "line-width-list": "<line-width-or-repeat>#",
583
611
  "line-width-or-repeat": "[ <line-width> | <repeat-line-width> ]",
584
- "link-condition": "<link-condition-base> [ with <navigation-param-expression> ]?",
612
+ "link-condition": "<link-condition-base> [ with <navigation-match> ]?",
585
613
  "link-condition-base": "<navigation-location>",
586
614
  "marker-ref": "<url>",
587
615
  "media-and": "and <media-in-parens>",
@@ -607,15 +635,12 @@
607
635
  "navigation-condition": "not <navigation-in-parens> | <navigation-in-parens> [ and <navigation-in-parens> ]* | <navigation-in-parens> [ or <navigation-in-parens> ]*",
608
636
  "navigation-in-parens": "( <navigation-condition> ) | ( <navigation-test> ) | <general-enclosed>",
609
637
  "navigation-location": "<route-name> | <url-pattern()>",
610
- "navigation-location-keyword": "at | from | to",
638
+ "navigation-location-between-test": "between : <navigation-location> and <navigation-location>",
639
+ "navigation-location-keyword": "at | with | from | to",
611
640
  "navigation-location-test": "<navigation-location-keyword> : <navigation-location>",
612
- "navigation-param": "<navigation-param-key-value> | <navigation-param-function>",
613
- "navigation-param-and": "<navigation-param-expression> [ \" and \" <navigation-param-expression> ]*",
614
- "navigation-param-expression": "( <navigation-param-and> ) | ( <navigation-param-or> ) | <navigation-param>",
615
- "navigation-param-function": "navigation-param( <ident> )",
616
- "navigation-param-key-value": "( <ident> : <string> )",
617
- "navigation-param-or": "<navigation-param-expression> [ \" or \" <navigation-param-expression> ]*",
618
- "navigation-test": "<navigation-location-test> | <navigation-type-test>",
641
+ "navigation-match": "<pattern-match-type> ( <navigation-match-target> )",
642
+ "navigation-match-target": "navigation-at | navigation-with | navigation-from | navigation-to",
643
+ "navigation-test": "<navigation-location-test> | <navigation-location-between-test> | <navigation-type-test>",
619
644
  "navigation-type-keyword": "traverse | back | forward | reload",
620
645
  "navigation-type-test": "history : <navigation-type-keyword>",
621
646
  "number-optional-number": "<number> <number>?",
@@ -629,6 +654,7 @@
629
654
  "param()": "param( <dashed-ident> , <declaration-value>? )",
630
655
  "pattern-descriptor": "pattern : <url-pattern()>",
631
656
  "pattern-descriptors": ";* <pattern-descriptor> ;*",
657
+ "pattern-match-type": "match-pattern | match-params | match-url",
632
658
  "pointer-axis": "block | inline | x | y",
633
659
  "pointer-source": "root | nearest | self",
634
660
  "pointer()": "pointer( [ <pointer-source> || <pointer-axis> ]? )",
@@ -650,11 +676,13 @@
650
676
  "pt-name-and-class-selector": "<pt-name-selector> <pt-class-selector>? | <pt-class-selector>",
651
677
  "pt-name-selector": "'*' | <custom-ident>",
652
678
  "query-in-parens": "( <container-query> ) | ( <size-feature> ) | style( <style-query> ) | scroll-state( <scroll-state-query> ) | <general-enclosed>",
653
- "random-cache-key": "auto | <random-name> | fixed <number [0,1]>",
679
+ "random-cache-key": "<dashed-ident> || element-scoped || [ property-scoped | property-index-scoped | <random-ua-ident> ]",
654
680
  "random-item-args": "random-item( <declaration-value> , [ <declaration-value>? ]# )",
655
- "random-item()": "random-item( <random-cache-key> , [ <declaration-value>? ]# )",
656
- "random-name": "<dashed-ident> [ element | property index? ]?",
657
- "random()": "random( <random-cache-key>? , <calc-sum> , <calc-sum> , <calc-sum>? )",
681
+ "random-item()": "random-item( <random-key> , [ <declaration-value>? ]# )",
682
+ "random-key": "auto | <random-cache-key> | fixed <number [0,1]>",
683
+ "random-ua-ident": "<custom-ident>",
684
+ "random()": "random( <random-key>? , <calc-sum> , <calc-sum> , <calc-sum>? )",
685
+ "ray-size": "<radial-extent> | sides",
658
686
  "rectangular-color-space": "srgb | srgb-linear | display-p3 | display-p3-linear | a98-rgb | prophoto-rgb | rec2020 | lab | oklab | <xyz-space>",
659
687
  "referrer-policy-modifier": "referrer-policy( no-referrer | no-referrer-when-downgrade | same-origin | origin | strict-origin | origin-when-cross-origin | strict-origin-when-cross-origin | unsafe-url )",
660
688
  "relative-control-point": "<coordinate-pair> [ from [ start | end | origin ] ]?",
@@ -670,7 +698,7 @@
670
698
  "rounding-strategy": "| line-width",
671
699
  "route-name": "<dashed-ident>",
672
700
  "running()": "running( <custom-ident> )",
673
- "scope-boundaries": "[ ( <scope-start> ) ]? [ to ( <scope-end> ) ]?",
701
+ "scope-boundaries": "[ [ ( <scope-start> ) ]? [ to ( <scope-end> ) ]? ]!",
674
702
  "scope-end": "<selector-list>",
675
703
  "scope-start": "<selector-list>",
676
704
  "scroll-button-direction": "up | down | left | right | block-start | block-end | inline-start | inline-end | prev | next",
@@ -718,6 +746,7 @@
718
746
  "svg-paint": "child | child( <integer> )",
719
747
  "syntax-multiplier": "[ '#' | '+' ]",
720
748
  "system-color": "AccentColor | AccentColorText | ActiveText | ButtonBorder | ButtonFace | ButtonText | Canvas | CanvasText | Field | FieldText | GrayText | Highlight | HighlightText | LinkText | Mark | MarkText | SelectedItem | SelectedItemText | VisitedText | <deprecated-color>",
749
+ "system-font-family-name": "caption | icon | menu | message-box | small-caption | status-bar",
721
750
  "target-contrast": "<wcag2>",
722
751
  "text-edge": "[ text | ideographic | ideographic-ink ] | [ text | ideographic | ideographic-ink | cap | ex ] [ text | ideographic | ideographic-ink | alphabetic ]",
723
752
  "time-percentage": "[ <time> | <percentage> ]",
@@ -742,7 +771,7 @@
742
771
  "voice-family-name": "<string> | <custom-ident>+",
743
772
  "wcag2": "wcag2 | wcag2( [ <number> | [ aa | aaa ] && large? ] )",
744
773
  "whole-value": "<declaration-value>",
745
- "style-feature-name": "<dashed-ident> | -moz-appearance | -moz-background-clip | -moz-binding | -moz-border-bottom-colors | -moz-border-left-colors | -moz-border-radius-bottomleft | -moz-border-radius-bottomright | -moz-border-radius-topleft | -moz-border-radius-topright | -moz-border-right-colors | -moz-border-top-colors | -moz-context-properties | -moz-control-character-visibility | -moz-float-edge | -moz-force-broken-image-icon | -moz-orient | -moz-osx-font-smoothing | -moz-outline-radius | -moz-outline-radius-bottomleft | -moz-outline-radius-bottomright | -moz-outline-radius-topleft | -moz-outline-radius-topright | -moz-stack-sizing | -moz-text-blink | -moz-user-focus | -moz-user-input | -moz-user-modify | -moz-user-select | -moz-window-dragging | -moz-window-shadow | -ms-accelerator | -ms-block-progression | -ms-content-zoom-chaining | -ms-content-zoom-limit | -ms-content-zoom-limit-max | -ms-content-zoom-limit-min | -ms-content-zoom-snap | -ms-content-zoom-snap-points | -ms-content-zoom-snap-type | -ms-content-zooming | -ms-filter | -ms-flex-align | -ms-flex-item-align | -ms-flex-line-pack | -ms-flex-negative | -ms-flex-order | -ms-flex-pack | -ms-flex-positive | -ms-flex-preferred-size | -ms-flow-from | -ms-flow-into | -ms-grid-column-align | -ms-grid-columns | -ms-grid-row-align | -ms-grid-rows | -ms-high-contrast-adjust | -ms-hyphenate-limit-chars | -ms-hyphenate-limit-last | -ms-hyphenate-limit-lines | -ms-hyphenate-limit-zone | -ms-ime-align | -ms-interpolation-mode | -ms-overflow-style | -ms-scroll-chaining | -ms-scroll-limit | -ms-scroll-limit-x-max | -ms-scroll-limit-x-min | -ms-scroll-limit-y-max | -ms-scroll-limit-y-min | -ms-scroll-rails | -ms-scroll-snap-points-x | -ms-scroll-snap-points-y | -ms-scroll-snap-type | -ms-scroll-snap-x | -ms-scroll-snap-y | -ms-scroll-translation | -ms-scrollbar-3dlight-color | -ms-scrollbar-arrow-color | -ms-scrollbar-base-color | -ms-scrollbar-darkshadow-color | -ms-scrollbar-face-color | -ms-scrollbar-highlight-color | -ms-scrollbar-shadow-color | -ms-scrollbar-track-color | -ms-text-autospace | -ms-touch-select | -ms-user-select | -ms-wrap-flow | -ms-wrap-margin | -ms-wrap-through | -webkit-appearance | -webkit-background-clip | -webkit-border-before | -webkit-border-before-color | -webkit-border-before-style | -webkit-border-before-width | -webkit-box-reflect | -webkit-column-break-after | -webkit-column-break-before | -webkit-column-break-inside | -webkit-font-smoothing | -webkit-line-clamp | -webkit-mask | -webkit-mask-attachment | -webkit-mask-box-image | -webkit-mask-clip | -webkit-mask-composite | -webkit-mask-image | -webkit-mask-origin | -webkit-mask-position | -webkit-mask-position-x | -webkit-mask-position-y | -webkit-mask-repeat | -webkit-mask-repeat-x | -webkit-mask-repeat-y | -webkit-mask-size | -webkit-overflow-scrolling | -webkit-print-color-adjust | -webkit-tap-highlight-color | -webkit-text-fill-color | -webkit-text-security | -webkit-text-stroke | -webkit-text-stroke-color | -webkit-text-stroke-width | -webkit-touch-callout | -webkit-user-drag | -webkit-user-modify | -webkit-user-select | accent-color | align-content | align-items | align-self | align-tracks | alignment-baseline | all | anchor-name | anchor-scope | animation | animation-composition | animation-delay | animation-direction | animation-duration | animation-fill-mode | animation-iteration-count | animation-name | animation-play-state | animation-range | animation-range-center | animation-range-end | animation-range-start | animation-timeline | animation-timing-function | animation-trigger | appearance | aspect-ratio | backdrop-filter | backface-visibility | background | background-attachment | background-blend-mode | background-clip | background-color | background-image | background-origin | background-position | background-position-block | background-position-inline | background-position-x | background-position-y | background-repeat | background-repeat-block | background-repeat-inline | background-repeat-x | background-repeat-y | background-size | background-tbd | baseline-shift | baseline-source | behavior | block-ellipsis | block-size | block-step | block-step-align | block-step-insert | block-step-round | block-step-size | bookmark-label | bookmark-level | bookmark-state | border | border-block | border-block-clip | border-block-color | border-block-end | border-block-end-clip | border-block-end-color | border-block-end-radius | border-block-end-style | border-block-end-width | border-block-start | border-block-start-clip | border-block-start-color | border-block-start-radius | border-block-start-style | border-block-start-width | border-block-style | border-block-width | border-bottom | border-bottom-clip | border-bottom-color | border-bottom-left-radius | border-bottom-radius | border-bottom-right-radius | border-bottom-style | border-bottom-width | border-boundary | border-clip | border-collapse | border-color | border-end-end-radius | border-end-start-radius | border-image | border-image-outset | border-image-repeat | border-image-slice | border-image-source | border-image-width | border-inline | border-inline-clip | border-inline-color | border-inline-end | border-inline-end-clip | border-inline-end-color | border-inline-end-radius | border-inline-end-style | border-inline-end-width | border-inline-start | border-inline-start-clip | border-inline-start-color | border-inline-start-radius | border-inline-start-style | border-inline-start-width | border-inline-style | border-inline-width | border-left | border-left-clip | border-left-color | border-left-radius | border-left-style | border-left-width | border-limit | border-radius | border-right | border-right-clip | border-right-color | border-right-radius | border-right-style | border-right-width | border-shape | border-spacing | border-start-end-radius | border-start-start-radius | border-style | border-top | border-top-clip | border-top-color | border-top-left-radius | border-top-radius | border-top-right-radius | border-top-style | border-top-width | border-width | bottom | box-align | box-decoration-break | box-direction | box-flex | box-flex-group | box-lines | box-ordinal-group | box-orient | box-pack | box-shadow | box-shadow-blur | box-shadow-color | box-shadow-offset | box-shadow-position | box-shadow-spread | box-sizing | box-snap | break-after | break-before | break-inside | caption-side | caret | caret-animation | caret-color | caret-shape | clear | clip | clip-path | clip-rule | color | color-adjust | color-interpolation | color-interpolation-filters | color-scheme | column-count | column-fill | column-gap | column-height | column-rule | column-rule-break | column-rule-color | column-rule-edge-inset | column-rule-edge-inset-end | column-rule-edge-inset-start | column-rule-inset | column-rule-inset-end | column-rule-inset-start | column-rule-interior-inset | column-rule-interior-inset-end | column-rule-interior-inset-start | column-rule-style | column-rule-visibility-items | column-rule-width | column-span | column-width | column-wrap | columns | contain | contain-intrinsic-block-size | contain-intrinsic-height | contain-intrinsic-inline-size | contain-intrinsic-size | contain-intrinsic-width | container | container-name | container-type | content | content-visibility | continue | copy-into | corner | corner-block-end | corner-block-end-shape | corner-block-start | corner-block-start-shape | corner-bottom | corner-bottom-left | corner-bottom-left-shape | corner-bottom-right | corner-bottom-right-shape | corner-bottom-shape | corner-end-end | corner-end-end-shape | corner-end-start | corner-end-start-shape | corner-inline-end | corner-inline-end-shape | corner-inline-start | corner-inline-start-shape | corner-left | corner-left-shape | corner-right | corner-right-shape | corner-shape | corner-start-end | corner-start-end-shape | corner-start-start | corner-start-start-shape | corner-top | corner-top-left | corner-top-left-shape | corner-top-right | corner-top-right-shape | corner-top-shape | counter-increment | counter-reset | counter-set | cue | cue-after | cue-before | cursor | cx | cy | d | direction | display | dominant-baseline | dynamic-range-limit | empty-cells | event-trigger | event-trigger-name | event-trigger-source | field-sizing | fill | fill-break | fill-color | fill-image | fill-opacity | fill-origin | fill-position | fill-repeat | fill-rule | fill-size | filter | flex | flex-basis | flex-direction | flex-flow | flex-grow | flex-shrink | flex-wrap | float | float-defer | float-offset | float-reference | flood-color | flood-opacity | flow-from | flow-into | flow-tolerance | font | font-family | font-feature-settings | font-kerning | font-language-override | font-optical-sizing | font-palette | font-size | font-size-adjust | font-smooth | font-stretch | font-style | font-synthesis | font-synthesis-position | font-synthesis-small-caps | font-synthesis-style | font-synthesis-weight | font-variant | font-variant-alternates | font-variant-caps | font-variant-east-asian | font-variant-emoji | font-variant-ligatures | font-variant-numeric | font-variant-position | font-variation-settings | font-weight | font-width | footnote-display | footnote-policy | forced-color-adjust | gap | glyph-orientation-horizontal | glyph-orientation-vertical | grid | grid-area | grid-auto-columns | grid-auto-flow | grid-auto-rows | grid-column | grid-column-end | grid-column-gap | grid-column-start | grid-gap | grid-row | grid-row-end | grid-row-gap | grid-row-start | grid-template | grid-template-areas | grid-template-columns | grid-template-rows | hanging-punctuation | height | hyphenate-character | hyphenate-limit-chars | hyphenate-limit-last | hyphenate-limit-lines | hyphenate-limit-zone | hyphens | image-animation | image-orientation | image-rendering | image-resolution | ime-mode | initial-letter | initial-letter-align | initial-letter-wrap | inline-size | inline-sizing | input-security | inset | inset-block | inset-block-end | inset-block-start | inset-inline | inset-inline-end | inset-inline-start | interactivity | interest-delay | interest-delay-end | interest-delay-start | interpolate-size | isolation | justify-content | justify-items | justify-self | justify-tracks | kerning | left | letter-spacing | lighting-color | line-break | line-clamp | line-fit-edge | line-grid | line-height | line-height-step | line-padding | line-snap | link-parameters | list-style | list-style-image | list-style-position | list-style-type | margin | margin-block | margin-block-end | margin-block-start | margin-bottom | margin-break | margin-inline | margin-inline-end | margin-inline-start | margin-left | margin-right | margin-top | margin-trim | marker | marker-end | marker-mid | marker-side | marker-start | mask | mask-border | mask-border-mode | mask-border-outset | mask-border-repeat | mask-border-slice | mask-border-source | mask-border-width | mask-clip | mask-composite | mask-image | mask-mode | mask-origin | mask-position | mask-repeat | mask-size | mask-type | masonry-auto-flow | math-depth | math-shift | math-style | max-block-size | max-height | max-inline-size | max-lines | max-width | min-block-size | min-height | min-inline-size | min-intrinsic-sizing | min-width | mix-blend-mode | nav-down | nav-left | nav-right | nav-up | object-fit | object-position | object-view-box | offset | offset-anchor | offset-distance | offset-path | offset-position | offset-rotate | opacity | order | orphans | outline | outline-color | outline-offset | outline-style | outline-width | overflow | overflow-anchor | overflow-block | overflow-clip-box | overflow-clip-margin | overflow-clip-margin-block | overflow-clip-margin-block-end | overflow-clip-margin-block-start | overflow-clip-margin-bottom | overflow-clip-margin-inline | overflow-clip-margin-inline-end | overflow-clip-margin-inline-start | overflow-clip-margin-left | overflow-clip-margin-right | overflow-clip-margin-top | overflow-inline | overflow-wrap | overflow-x | overflow-y | overlay | overscroll-behavior | overscroll-behavior-block | overscroll-behavior-inline | overscroll-behavior-x | overscroll-behavior-y | padding | padding-block | padding-block-end | padding-block-start | padding-bottom | padding-inline | padding-inline-end | padding-inline-start | padding-left | padding-right | padding-top | page | page-break-after | page-break-before | page-break-inside | paint-order | pause | pause-after | pause-before | perspective | perspective-origin | place-content | place-items | place-self | pointer-events | pointer-timeline | pointer-timeline-axis | pointer-timeline-name | position | position-anchor | position-area | position-try | position-try-fallbacks | position-try-options | position-try-order | position-visibility | print-color-adjust | quotes | r | reading-flow | reading-order | region-fragment | resize | rest | rest-after | rest-before | right | rotate | row-gap | row-rule | row-rule-break | row-rule-color | row-rule-edge-inset | row-rule-edge-inset-end | row-rule-edge-inset-start | row-rule-inset | row-rule-inset-end | row-rule-inset-start | row-rule-interior-inset | row-rule-interior-inset-end | row-rule-interior-inset-start | row-rule-style | row-rule-visibility-items | row-rule-width | ruby-align | ruby-merge | ruby-overhang | ruby-position | rule | rule-break | rule-color | rule-edge-inset | rule-inset | rule-inset-end | rule-inset-start | rule-interior-inset | rule-overlap | rule-style | rule-visibility-items | rule-width | rx | ry | scale | scroll-behavior | scroll-initial-target | scroll-margin | scroll-margin-block | scroll-margin-block-end | scroll-margin-block-start | scroll-margin-bottom | scroll-margin-inline | scroll-margin-inline-end | scroll-margin-inline-start | scroll-margin-left | scroll-margin-right | scroll-margin-top | scroll-marker-group | scroll-padding | scroll-padding-block | scroll-padding-block-end | scroll-padding-block-start | scroll-padding-bottom | scroll-padding-inline | scroll-padding-inline-end | scroll-padding-inline-start | scroll-padding-left | scroll-padding-right | scroll-padding-top | scroll-snap-align | scroll-snap-coordinate | scroll-snap-destination | scroll-snap-points-x | scroll-snap-points-y | scroll-snap-stop | scroll-snap-type | scroll-snap-type-x | scroll-snap-type-y | scroll-target-group | scroll-timeline | scroll-timeline-axis | scroll-timeline-name | scrollbar-color | scrollbar-gutter | scrollbar-width | shape-image-threshold | shape-inside | shape-margin | shape-outside | shape-padding | shape-rendering | shape-subtract | slider-orientation | spatial-navigation-action | spatial-navigation-contain | spatial-navigation-function | speak | speak-as | stop-color | stop-opacity | string-set | stroke | stroke-align | stroke-alignment | stroke-break | stroke-color | stroke-dash-corner | stroke-dash-justify | stroke-dashadjust | stroke-dasharray | stroke-dashcorner | stroke-dashoffset | stroke-image | stroke-linecap | stroke-linejoin | stroke-miterlimit | stroke-opacity | stroke-origin | stroke-position | stroke-repeat | stroke-size | stroke-width | tab-size | table-layout | text-align | text-align-all | text-align-last | text-anchor | text-autospace | text-box | text-box-edge | text-box-trim | text-combine-upright | text-decoration | text-decoration-color | text-decoration-inset | text-decoration-line | text-decoration-skip | text-decoration-skip-box | text-decoration-skip-ink | text-decoration-skip-self | text-decoration-skip-spaces | text-decoration-style | text-decoration-thickness | text-emphasis | text-emphasis-color | text-emphasis-position | text-emphasis-skip | text-emphasis-style | text-group-align | text-indent | text-justify | text-orientation | text-overflow | text-rendering | text-shadow | text-size-adjust | text-spacing | text-spacing-trim | text-transform | text-underline-offset | text-underline-position | text-wrap | text-wrap-mode | text-wrap-style | timeline-scope | timeline-trigger | timeline-trigger-activation-range | timeline-trigger-activation-range-end | timeline-trigger-activation-range-start | timeline-trigger-active-range | timeline-trigger-active-range-end | timeline-trigger-active-range-start | timeline-trigger-exit-range | timeline-trigger-exit-range-end | timeline-trigger-exit-range-start | timeline-trigger-name | timeline-trigger-range | timeline-trigger-range-end | timeline-trigger-range-start | timeline-trigger-source | top | touch-action | transform | transform-box | transform-origin | transform-style | transition | transition-behavior | transition-delay | transition-duration | transition-property | transition-timing-function | translate | trigger-scope | unicode-bidi | user-select | vector-effect | vertical-align | view-timeline | view-timeline-axis | view-timeline-inset | view-timeline-name | view-transition-class | view-transition-group | view-transition-name | view-transition-scope | visibility | voice-balance | voice-duration | voice-family | voice-pitch | voice-range | voice-rate | voice-stress | voice-volume | white-space | white-space-collapse | white-space-trim | widows | width | will-change | word-break | word-space-transform | word-spacing | word-wrap | wrap-after | wrap-before | wrap-flow | wrap-inside | wrap-through | writing-mode | x | y | z-index | zoom"
774
+ "style-feature-name": "<dashed-ident> | -moz-appearance | -moz-background-clip | -moz-binding | -moz-border-bottom-colors | -moz-border-left-colors | -moz-border-radius-bottomleft | -moz-border-radius-bottomright | -moz-border-radius-topleft | -moz-border-radius-topright | -moz-border-right-colors | -moz-border-top-colors | -moz-context-properties | -moz-control-character-visibility | -moz-float-edge | -moz-force-broken-image-icon | -moz-orient | -moz-osx-font-smoothing | -moz-outline-radius | -moz-outline-radius-bottomleft | -moz-outline-radius-bottomright | -moz-outline-radius-topleft | -moz-outline-radius-topright | -moz-stack-sizing | -moz-text-blink | -moz-user-focus | -moz-user-input | -moz-user-modify | -moz-user-select | -moz-window-dragging | -moz-window-shadow | -ms-accelerator | -ms-block-progression | -ms-content-zoom-chaining | -ms-content-zoom-limit | -ms-content-zoom-limit-max | -ms-content-zoom-limit-min | -ms-content-zoom-snap | -ms-content-zoom-snap-points | -ms-content-zoom-snap-type | -ms-content-zooming | -ms-filter | -ms-flex-align | -ms-flex-item-align | -ms-flex-line-pack | -ms-flex-negative | -ms-flex-order | -ms-flex-pack | -ms-flex-positive | -ms-flex-preferred-size | -ms-flow-from | -ms-flow-into | -ms-grid-column-align | -ms-grid-columns | -ms-grid-row-align | -ms-grid-rows | -ms-high-contrast-adjust | -ms-hyphenate-limit-chars | -ms-hyphenate-limit-last | -ms-hyphenate-limit-lines | -ms-hyphenate-limit-zone | -ms-ime-align | -ms-interpolation-mode | -ms-overflow-style | -ms-scroll-chaining | -ms-scroll-limit | -ms-scroll-limit-x-max | -ms-scroll-limit-x-min | -ms-scroll-limit-y-max | -ms-scroll-limit-y-min | -ms-scroll-rails | -ms-scroll-snap-points-x | -ms-scroll-snap-points-y | -ms-scroll-snap-type | -ms-scroll-snap-x | -ms-scroll-snap-y | -ms-scroll-translation | -ms-scrollbar-3dlight-color | -ms-scrollbar-arrow-color | -ms-scrollbar-base-color | -ms-scrollbar-darkshadow-color | -ms-scrollbar-face-color | -ms-scrollbar-highlight-color | -ms-scrollbar-shadow-color | -ms-scrollbar-track-color | -ms-text-autospace | -ms-touch-select | -ms-user-select | -ms-wrap-flow | -ms-wrap-margin | -ms-wrap-through | -webkit-appearance | -webkit-background-clip | -webkit-border-before | -webkit-border-before-color | -webkit-border-before-style | -webkit-border-before-width | -webkit-box-reflect | -webkit-column-break-after | -webkit-column-break-before | -webkit-column-break-inside | -webkit-font-smoothing | -webkit-line-clamp | -webkit-mask | -webkit-mask-attachment | -webkit-mask-box-image | -webkit-mask-clip | -webkit-mask-composite | -webkit-mask-image | -webkit-mask-origin | -webkit-mask-position | -webkit-mask-position-x | -webkit-mask-position-y | -webkit-mask-repeat | -webkit-mask-repeat-x | -webkit-mask-repeat-y | -webkit-mask-size | -webkit-overflow-scrolling | -webkit-print-color-adjust | -webkit-tap-highlight-color | -webkit-text-fill-color | -webkit-text-security | -webkit-text-stroke | -webkit-text-stroke-color | -webkit-text-stroke-width | -webkit-touch-callout | -webkit-user-drag | -webkit-user-modify | -webkit-user-select | accent-color | align-content | align-items | align-self | align-tracks | alignment-baseline | all | anchor-name | anchor-scope | animation | animation-composition | animation-delay | animation-direction | animation-duration | animation-fill-mode | animation-iteration-count | animation-name | animation-play-state | animation-range | animation-range-center | animation-range-end | animation-range-start | animation-timeline | animation-timing-function | animation-trigger | appearance | aspect-ratio | backdrop-filter | backface-visibility | background | background-attachment | background-blend-mode | background-clip | background-color | background-image | background-origin | background-position | background-position-block | background-position-inline | background-position-x | background-position-y | background-repeat | background-repeat-block | background-repeat-inline | background-repeat-x | background-repeat-y | background-size | background-tbd | baseline-shift | baseline-source | behavior | block-ellipsis | block-size | block-step | block-step-align | block-step-insert | block-step-round | block-step-size | bookmark-label | bookmark-level | bookmark-state | border | border-block | border-block-clip | border-block-color | border-block-end | border-block-end-clip | border-block-end-color | border-block-end-radius | border-block-end-style | border-block-end-width | border-block-start | border-block-start-clip | border-block-start-color | border-block-start-radius | border-block-start-style | border-block-start-width | border-block-style | border-block-width | border-bottom | border-bottom-clip | border-bottom-color | border-bottom-left-radius | border-bottom-radius | border-bottom-right-radius | border-bottom-style | border-bottom-width | border-boundary | border-clip | border-collapse | border-color | border-end-end-radius | border-end-start-radius | border-image | border-image-outset | border-image-repeat | border-image-slice | border-image-source | border-image-width | border-inline | border-inline-clip | border-inline-color | border-inline-end | border-inline-end-clip | border-inline-end-color | border-inline-end-radius | border-inline-end-style | border-inline-end-width | border-inline-start | border-inline-start-clip | border-inline-start-color | border-inline-start-radius | border-inline-start-style | border-inline-start-width | border-inline-style | border-inline-width | border-left | border-left-clip | border-left-color | border-left-radius | border-left-style | border-left-width | border-limit | border-radius | border-right | border-right-clip | border-right-color | border-right-radius | border-right-style | border-right-width | border-shape | border-spacing | border-start-end-radius | border-start-start-radius | border-style | border-top | border-top-clip | border-top-color | border-top-left-radius | border-top-radius | border-top-right-radius | border-top-style | border-top-width | border-width | bottom | box-align | box-decoration-break | box-direction | box-flex | box-flex-group | box-lines | box-ordinal-group | box-orient | box-pack | box-shadow | box-shadow-blur | box-shadow-color | box-shadow-offset | box-shadow-position | box-shadow-spread | box-sizing | box-snap | break-after | break-before | break-inside | caption-side | caret | caret-animation | caret-color | caret-shape | clear | clip | clip-path | clip-rule | color | color-adjust | color-interpolation | color-interpolation-filters | color-scheme | column-count | column-fill | column-gap | column-height | column-rule | column-rule-break | column-rule-color | column-rule-inset | column-rule-inset-cap | column-rule-inset-cap-end | column-rule-inset-cap-start | column-rule-inset-end | column-rule-inset-junction | column-rule-inset-junction-end | column-rule-inset-junction-start | column-rule-inset-start | column-rule-style | column-rule-visibility-items | column-rule-width | column-span | column-width | column-wrap | columns | contain | contain-intrinsic-block-size | contain-intrinsic-height | contain-intrinsic-inline-size | contain-intrinsic-size | contain-intrinsic-width | container | container-name | container-type | content | content-visibility | continue | copy-into | corner | corner-block-end | corner-block-end-shape | corner-block-start | corner-block-start-shape | corner-bottom | corner-bottom-left | corner-bottom-left-shape | corner-bottom-right | corner-bottom-right-shape | corner-bottom-shape | corner-end-end | corner-end-end-shape | corner-end-start | corner-end-start-shape | corner-inline-end | corner-inline-end-shape | corner-inline-start | corner-inline-start-shape | corner-left | corner-left-shape | corner-right | corner-right-shape | corner-shape | corner-start-end | corner-start-end-shape | corner-start-start | corner-start-start-shape | corner-top | corner-top-left | corner-top-left-shape | corner-top-right | corner-top-right-shape | corner-top-shape | counter-increment | counter-reset | counter-set | cue | cue-after | cue-before | cursor | cx | cy | d | direction | display | dominant-baseline | dynamic-range-limit | empty-cells | event-trigger | event-trigger-name | event-trigger-source | field-sizing | fill | fill-break | fill-color | fill-image | fill-opacity | fill-origin | fill-position | fill-repeat | fill-rule | fill-size | filter | flex | flex-basis | flex-direction | flex-flow | flex-grow | flex-shrink | flex-wrap | float | float-defer | float-offset | float-reference | flood-color | flood-opacity | flow-from | flow-into | flow-tolerance | font | font-family | font-feature-settings | font-kerning | font-language-override | font-optical-sizing | font-palette | font-size | font-size-adjust | font-smooth | font-stretch | font-style | font-synthesis | font-synthesis-position | font-synthesis-small-caps | font-synthesis-style | font-synthesis-weight | font-variant | font-variant-alternates | font-variant-caps | font-variant-east-asian | font-variant-emoji | font-variant-ligatures | font-variant-numeric | font-variant-position | font-variation-settings | font-weight | font-width | footnote-display | footnote-policy | forced-color-adjust | frame-sizing | gap | glyph-orientation-horizontal | glyph-orientation-vertical | grid | grid-area | grid-auto-columns | grid-auto-flow | grid-auto-rows | grid-column | grid-column-end | grid-column-gap | grid-column-start | grid-gap | grid-row | grid-row-end | grid-row-gap | grid-row-start | grid-template | grid-template-areas | grid-template-columns | grid-template-rows | hanging-punctuation | height | hyphenate-character | hyphenate-limit-chars | hyphenate-limit-last | hyphenate-limit-lines | hyphenate-limit-zone | hyphens | image-animation | image-orientation | image-rendering | image-resolution | ime-mode | initial-letter | initial-letter-align | initial-letter-wrap | inline-size | inline-sizing | input-security | inset | inset-block | inset-block-end | inset-block-start | inset-inline | inset-inline-end | inset-inline-start | interactivity | interest-delay | interest-delay-end | interest-delay-start | interpolate-size | isolation | justify-content | justify-items | justify-self | justify-tracks | kerning | left | letter-spacing | lighting-color | line-break | line-clamp | line-fit-edge | line-grid | line-height | line-height-step | line-padding | line-snap | link-parameters | list-style | list-style-image | list-style-position | list-style-type | margin | margin-block | margin-block-end | margin-block-start | margin-bottom | margin-break | margin-inline | margin-inline-end | margin-inline-start | margin-left | margin-right | margin-top | margin-trim | marker | marker-end | marker-mid | marker-side | marker-start | mask | mask-border | mask-border-mode | mask-border-outset | mask-border-repeat | mask-border-slice | mask-border-source | mask-border-width | mask-clip | mask-composite | mask-image | mask-mode | mask-origin | mask-position | mask-repeat | mask-size | mask-type | masonry-auto-flow | math-depth | math-shift | math-style | max-block-size | max-height | max-inline-size | max-lines | max-width | min-block-size | min-height | min-inline-size | min-intrinsic-sizing | min-width | mix-blend-mode | nav-down | nav-left | nav-right | nav-up | object-fit | object-position | object-view-box | offset | offset-anchor | offset-distance | offset-path | offset-position | offset-rotate | opacity | order | orphans | outline | outline-color | outline-offset | outline-style | outline-width | overflow | overflow-anchor | overflow-block | overflow-clip-box | overflow-clip-margin | overflow-clip-margin-block | overflow-clip-margin-block-end | overflow-clip-margin-block-start | overflow-clip-margin-bottom | overflow-clip-margin-inline | overflow-clip-margin-inline-end | overflow-clip-margin-inline-start | overflow-clip-margin-left | overflow-clip-margin-right | overflow-clip-margin-top | overflow-inline | overflow-wrap | overflow-x | overflow-y | overlay | overscroll-behavior | overscroll-behavior-block | overscroll-behavior-inline | overscroll-behavior-x | overscroll-behavior-y | padding | padding-block | padding-block-end | padding-block-start | padding-bottom | padding-inline | padding-inline-end | padding-inline-start | padding-left | padding-right | padding-top | page | page-break-after | page-break-before | page-break-inside | paint-order | path-length | pause | pause-after | pause-before | perspective | perspective-origin | place-content | place-items | place-self | pointer-events | pointer-timeline | pointer-timeline-axis | pointer-timeline-name | position | position-anchor | position-area | position-try | position-try-fallbacks | position-try-options | position-try-order | position-visibility | print-color-adjust | quotes | r | reading-flow | reading-order | region-fragment | resize | rest | rest-after | rest-before | right | rotate | row-gap | row-rule | row-rule-break | row-rule-color | row-rule-inset | row-rule-inset-cap | row-rule-inset-cap-end | row-rule-inset-cap-start | row-rule-inset-end | row-rule-inset-junction | row-rule-inset-junction-end | row-rule-inset-junction-start | row-rule-inset-start | row-rule-style | row-rule-visibility-items | row-rule-width | ruby-align | ruby-merge | ruby-overhang | ruby-position | rule | rule-break | rule-color | rule-inset | rule-inset-cap | rule-inset-end | rule-inset-junction | rule-inset-start | rule-overlap | rule-style | rule-visibility-items | rule-width | rx | ry | scale | scroll-behavior | scroll-initial-target | scroll-margin | scroll-margin-block | scroll-margin-block-end | scroll-margin-block-start | scroll-margin-bottom | scroll-margin-inline | scroll-margin-inline-end | scroll-margin-inline-start | scroll-margin-left | scroll-margin-right | scroll-margin-top | scroll-marker-group | scroll-padding | scroll-padding-block | scroll-padding-block-end | scroll-padding-block-start | scroll-padding-bottom | scroll-padding-inline | scroll-padding-inline-end | scroll-padding-inline-start | scroll-padding-left | scroll-padding-right | scroll-padding-top | scroll-snap-align | scroll-snap-coordinate | scroll-snap-destination | scroll-snap-points-x | scroll-snap-points-y | scroll-snap-stop | scroll-snap-type | scroll-snap-type-x | scroll-snap-type-y | scroll-target-group | scroll-timeline | scroll-timeline-axis | scroll-timeline-name | scrollbar-color | scrollbar-gutter | scrollbar-width | shape-image-threshold | shape-inside | shape-margin | shape-outside | shape-padding | shape-rendering | slider-orientation | spatial-navigation-action | spatial-navigation-contain | spatial-navigation-function | speak | speak-as | stop-color | stop-opacity | string-set | stroke | stroke-align | stroke-alignment | stroke-break | stroke-color | stroke-dash-corner | stroke-dash-justify | stroke-dashadjust | stroke-dasharray | stroke-dashcorner | stroke-dashoffset | stroke-image | stroke-linecap | stroke-linejoin | stroke-miterlimit | stroke-opacity | stroke-origin | stroke-position | stroke-repeat | stroke-size | stroke-width | tab-size | table-layout | text-align | text-align-all | text-align-last | text-anchor | text-autospace | text-box | text-box-edge | text-box-trim | text-combine-upright | text-decoration | text-decoration-color | text-decoration-inset | text-decoration-line | text-decoration-skip | text-decoration-skip-box | text-decoration-skip-ink | text-decoration-skip-self | text-decoration-skip-spaces | text-decoration-style | text-decoration-thickness | text-emphasis | text-emphasis-color | text-emphasis-position | text-emphasis-skip | text-emphasis-style | text-fit | text-group-align | text-indent | text-justify | text-orientation | text-overflow | text-rendering | text-shadow | text-size-adjust | text-spacing | text-spacing-trim | text-transform | text-underline-offset | text-underline-position | text-wrap | text-wrap-mode | text-wrap-style | timeline-scope | timeline-trigger | timeline-trigger-activation-range | timeline-trigger-activation-range-end | timeline-trigger-activation-range-start | timeline-trigger-active-range | timeline-trigger-active-range-end | timeline-trigger-active-range-start | timeline-trigger-exit-range | timeline-trigger-exit-range-end | timeline-trigger-exit-range-start | timeline-trigger-name | timeline-trigger-range | timeline-trigger-range-end | timeline-trigger-range-start | timeline-trigger-source | top | touch-action | transform | transform-box | transform-origin | transform-style | transition | transition-behavior | transition-delay | transition-duration | transition-property | transition-timing-function | translate | trigger-scope | unicode-bidi | user-select | vector-effect | vertical-align | view-timeline | view-timeline-axis | view-timeline-inset | view-timeline-name | view-transition-class | view-transition-group | view-transition-name | view-transition-scope | visibility | voice-balance | voice-duration | voice-family | voice-pitch | voice-range | voice-rate | voice-stress | voice-volume | white-space | white-space-collapse | white-space-trim | widows | width | will-change | word-break | word-space-transform | word-spacing | word-wrap | wrap-after | wrap-before | wrap-flow | wrap-inside | wrap-through | writing-mode | x | y | z-index | zoom"
746
775
  }
747
776
  }
748
777
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/css-syntax-patches-for-csstree",
3
3
  "description": "CSS syntax patches for CSS tree",
4
- "version": "1.1.2",
4
+ "version": "1.1.4",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",