vscode-css-languageservice 5.1.6 → 5.1.10
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/lib/esm/cssLanguageService.js +2 -2
- package/lib/esm/data/webCustomData.js +202 -124
- package/lib/esm/languageFacts/colors.js +30 -2
- package/lib/esm/languageFacts/entry.js +11 -6
- package/lib/esm/parser/cssNodes.js +94 -46
- package/lib/esm/parser/cssParser.js +108 -28
- package/lib/esm/parser/lessParser.js +2 -2
- package/lib/esm/parser/scssParser.js +2 -2
- package/lib/esm/services/cssCompletion.js +45 -31
- package/lib/esm/services/cssNavigation.js +39 -12
- package/lib/esm/services/lint.js +1 -1
- package/lib/esm/services/scssCompletion.js +2 -2
- package/lib/esm/services/scssNavigation.js +1 -1
- package/lib/esm/services/selectorPrinting.js +5 -5
- package/lib/umd/cssLanguageService.js +2 -2
- package/lib/umd/data/webCustomData.js +202 -124
- package/lib/umd/languageFacts/colors.js +30 -2
- package/lib/umd/languageFacts/entry.js +12 -7
- package/lib/umd/parser/cssNodes.js +95 -47
- package/lib/umd/parser/cssParser.js +108 -28
- package/lib/umd/parser/lessParser.js +2 -2
- package/lib/umd/parser/scssParser.js +2 -2
- package/lib/umd/services/cssCompletion.js +45 -31
- package/lib/umd/services/cssNavigation.js +39 -12
- package/lib/umd/services/lint.js +1 -1
- package/lib/umd/services/scssCompletion.js +2 -2
- package/lib/umd/services/scssNavigation.js +1 -1
- package/lib/umd/services/selectorPrinting.js +5 -5
- package/package.json +9 -9
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
}
|
|
63
63
|
],
|
|
64
64
|
"syntax": "normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>",
|
|
65
|
-
"relevance":
|
|
65
|
+
"relevance": 61,
|
|
66
66
|
"description": "Aligns a flex container’s lines within the flex container when there is extra space in the cross-axis, similar to how 'justify-content' aligns individual items within the main-axis.",
|
|
67
67
|
"restrictions": [
|
|
68
68
|
"enum"
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
}
|
|
94
94
|
],
|
|
95
95
|
"syntax": "normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]",
|
|
96
|
-
"relevance":
|
|
96
|
+
"relevance": 85,
|
|
97
97
|
"description": "Aligns flex items along the cross axis of the current line of the flex container.",
|
|
98
98
|
"restrictions": [
|
|
99
99
|
"enum"
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
}
|
|
268
268
|
],
|
|
269
269
|
"syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>",
|
|
270
|
-
"relevance":
|
|
270
|
+
"relevance": 70,
|
|
271
271
|
"description": "Allows the default alignment along the cross axis to be overridden for individual flex items.",
|
|
272
272
|
"restrictions": [
|
|
273
273
|
"enum"
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
}
|
|
357
357
|
],
|
|
358
358
|
"syntax": "<single-animation>#",
|
|
359
|
-
"relevance":
|
|
359
|
+
"relevance": 82,
|
|
360
360
|
"references": [
|
|
361
361
|
{
|
|
362
362
|
"name": "MDN Reference",
|
|
@@ -375,7 +375,7 @@
|
|
|
375
375
|
{
|
|
376
376
|
"name": "animation-delay",
|
|
377
377
|
"syntax": "<time>#",
|
|
378
|
-
"relevance":
|
|
378
|
+
"relevance": 62,
|
|
379
379
|
"references": [
|
|
380
380
|
{
|
|
381
381
|
"name": "MDN Reference",
|
|
@@ -540,7 +540,7 @@
|
|
|
540
540
|
{
|
|
541
541
|
"name": "animation-timing-function",
|
|
542
542
|
"syntax": "<easing-function>#",
|
|
543
|
-
"relevance":
|
|
543
|
+
"relevance": 68,
|
|
544
544
|
"references": [
|
|
545
545
|
{
|
|
546
546
|
"name": "MDN Reference",
|
|
@@ -765,7 +765,7 @@
|
|
|
765
765
|
{
|
|
766
766
|
"name": "background-clip",
|
|
767
767
|
"syntax": "<box>#",
|
|
768
|
-
"relevance":
|
|
768
|
+
"relevance": 67,
|
|
769
769
|
"references": [
|
|
770
770
|
{
|
|
771
771
|
"name": "MDN Reference",
|
|
@@ -988,7 +988,7 @@
|
|
|
988
988
|
"url": "https://developer.mozilla.org/docs/Web/CSS/block-size"
|
|
989
989
|
}
|
|
990
990
|
],
|
|
991
|
-
"description": "
|
|
991
|
+
"description": "Size of an element in the direction opposite that of the direction specified by 'writing-mode'.",
|
|
992
992
|
"restrictions": [
|
|
993
993
|
"length",
|
|
994
994
|
"percentage"
|
|
@@ -1217,7 +1217,7 @@
|
|
|
1217
1217
|
{
|
|
1218
1218
|
"name": "border-bottom-color",
|
|
1219
1219
|
"syntax": "<'border-top-color'>",
|
|
1220
|
-
"relevance":
|
|
1220
|
+
"relevance": 71,
|
|
1221
1221
|
"references": [
|
|
1222
1222
|
{
|
|
1223
1223
|
"name": "MDN Reference",
|
|
@@ -1248,7 +1248,7 @@
|
|
|
1248
1248
|
{
|
|
1249
1249
|
"name": "border-bottom-right-radius",
|
|
1250
1250
|
"syntax": "<length-percentage>{1,2}",
|
|
1251
|
-
"relevance":
|
|
1251
|
+
"relevance": 74,
|
|
1252
1252
|
"references": [
|
|
1253
1253
|
{
|
|
1254
1254
|
"name": "MDN Reference",
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
}
|
|
1306
1306
|
],
|
|
1307
1307
|
"syntax": "collapse | separate",
|
|
1308
|
-
"relevance":
|
|
1308
|
+
"relevance": 75,
|
|
1309
1309
|
"references": [
|
|
1310
1310
|
{
|
|
1311
1311
|
"name": "MDN Reference",
|
|
@@ -1369,7 +1369,7 @@
|
|
|
1369
1369
|
}
|
|
1370
1370
|
],
|
|
1371
1371
|
"syntax": "<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>",
|
|
1372
|
-
"relevance":
|
|
1372
|
+
"relevance": 53,
|
|
1373
1373
|
"references": [
|
|
1374
1374
|
{
|
|
1375
1375
|
"name": "MDN Reference",
|
|
@@ -1687,7 +1687,7 @@
|
|
|
1687
1687
|
{
|
|
1688
1688
|
"name": "border-left",
|
|
1689
1689
|
"syntax": "<line-width> || <line-style> || <color>",
|
|
1690
|
-
"relevance":
|
|
1690
|
+
"relevance": 82,
|
|
1691
1691
|
"references": [
|
|
1692
1692
|
{
|
|
1693
1693
|
"name": "MDN Reference",
|
|
@@ -1720,7 +1720,7 @@
|
|
|
1720
1720
|
{
|
|
1721
1721
|
"name": "border-left-style",
|
|
1722
1722
|
"syntax": "<line-style>",
|
|
1723
|
-
"relevance":
|
|
1723
|
+
"relevance": 54,
|
|
1724
1724
|
"references": [
|
|
1725
1725
|
{
|
|
1726
1726
|
"name": "MDN Reference",
|
|
@@ -1735,7 +1735,7 @@
|
|
|
1735
1735
|
{
|
|
1736
1736
|
"name": "border-left-width",
|
|
1737
1737
|
"syntax": "<line-width>",
|
|
1738
|
-
"relevance":
|
|
1738
|
+
"relevance": 59,
|
|
1739
1739
|
"references": [
|
|
1740
1740
|
{
|
|
1741
1741
|
"name": "MDN Reference",
|
|
@@ -1847,7 +1847,7 @@
|
|
|
1847
1847
|
"name": "border-style",
|
|
1848
1848
|
"values": [],
|
|
1849
1849
|
"syntax": "<line-style>{1,4}",
|
|
1850
|
-
"relevance":
|
|
1850
|
+
"relevance": 80,
|
|
1851
1851
|
"references": [
|
|
1852
1852
|
{
|
|
1853
1853
|
"name": "MDN Reference",
|
|
@@ -1927,7 +1927,7 @@
|
|
|
1927
1927
|
{
|
|
1928
1928
|
"name": "border-top-style",
|
|
1929
1929
|
"syntax": "<line-style>",
|
|
1930
|
-
"relevance":
|
|
1930
|
+
"relevance": 58,
|
|
1931
1931
|
"references": [
|
|
1932
1932
|
{
|
|
1933
1933
|
"name": "MDN Reference",
|
|
@@ -1959,7 +1959,7 @@
|
|
|
1959
1959
|
"name": "border-width",
|
|
1960
1960
|
"values": [],
|
|
1961
1961
|
"syntax": "<line-width>{1,4}",
|
|
1962
|
-
"relevance":
|
|
1962
|
+
"relevance": 81,
|
|
1963
1963
|
"references": [
|
|
1964
1964
|
{
|
|
1965
1965
|
"name": "MDN Reference",
|
|
@@ -1999,7 +1999,7 @@
|
|
|
1999
1999
|
"browsers": [
|
|
2000
2000
|
"E79",
|
|
2001
2001
|
"FF32",
|
|
2002
|
-
"
|
|
2002
|
+
"S7",
|
|
2003
2003
|
"C22",
|
|
2004
2004
|
"O15"
|
|
2005
2005
|
],
|
|
@@ -2066,7 +2066,7 @@
|
|
|
2066
2066
|
}
|
|
2067
2067
|
],
|
|
2068
2068
|
"syntax": "content-box | border-box",
|
|
2069
|
-
"relevance":
|
|
2069
|
+
"relevance": 93,
|
|
2070
2070
|
"references": [
|
|
2071
2071
|
{
|
|
2072
2072
|
"name": "MDN Reference",
|
|
@@ -2240,7 +2240,7 @@
|
|
|
2240
2240
|
}
|
|
2241
2241
|
],
|
|
2242
2242
|
"syntax": "auto | <color>",
|
|
2243
|
-
"relevance":
|
|
2243
|
+
"relevance": 52,
|
|
2244
2244
|
"references": [
|
|
2245
2245
|
{
|
|
2246
2246
|
"name": "MDN Reference",
|
|
@@ -2466,7 +2466,7 @@
|
|
|
2466
2466
|
}
|
|
2467
2467
|
],
|
|
2468
2468
|
"syntax": "normal | <length-percentage>",
|
|
2469
|
-
"relevance":
|
|
2469
|
+
"relevance": 54,
|
|
2470
2470
|
"description": "Sets the gap between columns. If there is a column rule between columns, it will appear in the middle of the gap.",
|
|
2471
2471
|
"restrictions": [
|
|
2472
2472
|
"length",
|
|
@@ -2646,7 +2646,7 @@
|
|
|
2646
2646
|
}
|
|
2647
2647
|
],
|
|
2648
2648
|
"syntax": "none | strict | content | [ size || layout || style || paint ]",
|
|
2649
|
-
"relevance":
|
|
2649
|
+
"relevance": 54,
|
|
2650
2650
|
"references": [
|
|
2651
2651
|
{
|
|
2652
2652
|
"name": "MDN Reference",
|
|
@@ -2730,7 +2730,7 @@
|
|
|
2730
2730
|
}
|
|
2731
2731
|
],
|
|
2732
2732
|
"syntax": "[ <custom-ident> <integer>? ]+ | none",
|
|
2733
|
-
"relevance":
|
|
2733
|
+
"relevance": 53,
|
|
2734
2734
|
"references": [
|
|
2735
2735
|
{
|
|
2736
2736
|
"name": "MDN Reference",
|
|
@@ -2951,7 +2951,7 @@
|
|
|
2951
2951
|
}
|
|
2952
2952
|
],
|
|
2953
2953
|
"syntax": "ltr | rtl",
|
|
2954
|
-
"relevance":
|
|
2954
|
+
"relevance": 70,
|
|
2955
2955
|
"references": [
|
|
2956
2956
|
{
|
|
2957
2957
|
"name": "MDN Reference",
|
|
@@ -3491,7 +3491,7 @@
|
|
|
3491
3491
|
{
|
|
3492
3492
|
"name": "flex-shrink",
|
|
3493
3493
|
"syntax": "<number>",
|
|
3494
|
-
"relevance":
|
|
3494
|
+
"relevance": 73,
|
|
3495
3495
|
"references": [
|
|
3496
3496
|
{
|
|
3497
3497
|
"name": "MDN Reference",
|
|
@@ -3722,7 +3722,7 @@
|
|
|
3722
3722
|
}
|
|
3723
3723
|
],
|
|
3724
3724
|
"syntax": "[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar",
|
|
3725
|
-
"relevance":
|
|
3725
|
+
"relevance": 83,
|
|
3726
3726
|
"references": [
|
|
3727
3727
|
{
|
|
3728
3728
|
"name": "MDN Reference",
|
|
@@ -4422,7 +4422,7 @@
|
|
|
4422
4422
|
"description": "Do not preserve the font’s x-height."
|
|
4423
4423
|
}
|
|
4424
4424
|
],
|
|
4425
|
-
"syntax": "none | <number>",
|
|
4425
|
+
"syntax": "none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]",
|
|
4426
4426
|
"relevance": 50,
|
|
4427
4427
|
"references": [
|
|
4428
4428
|
{
|
|
@@ -4562,7 +4562,7 @@
|
|
|
4562
4562
|
}
|
|
4563
4563
|
],
|
|
4564
4564
|
"syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || 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>) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",
|
|
4565
|
-
"relevance":
|
|
4565
|
+
"relevance": 65,
|
|
4566
4566
|
"references": [
|
|
4567
4567
|
{
|
|
4568
4568
|
"name": "MDN Reference",
|
|
@@ -5314,7 +5314,7 @@
|
|
|
5314
5314
|
],
|
|
5315
5315
|
"status": "obsolete",
|
|
5316
5316
|
"syntax": "<'grid-row-gap'> <'grid-column-gap'>?",
|
|
5317
|
-
"relevance":
|
|
5317
|
+
"relevance": 3,
|
|
5318
5318
|
"description": "Shorthand that specifies the gutters between grid columns and grid rows in one declaration. Replaced by 'gap' property.",
|
|
5319
5319
|
"restrictions": [
|
|
5320
5320
|
"length"
|
|
@@ -5555,7 +5555,7 @@
|
|
|
5555
5555
|
}
|
|
5556
5556
|
],
|
|
5557
5557
|
"syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
|
|
5558
|
-
"relevance":
|
|
5558
|
+
"relevance": 58,
|
|
5559
5559
|
"references": [
|
|
5560
5560
|
{
|
|
5561
5561
|
"name": "MDN Reference",
|
|
@@ -5603,7 +5603,7 @@
|
|
|
5603
5603
|
}
|
|
5604
5604
|
],
|
|
5605
5605
|
"syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
|
|
5606
|
-
"relevance":
|
|
5606
|
+
"relevance": 53,
|
|
5607
5607
|
"references": [
|
|
5608
5608
|
{
|
|
5609
5609
|
"name": "MDN Reference",
|
|
@@ -5834,7 +5834,7 @@
|
|
|
5834
5834
|
"url": "https://developer.mozilla.org/docs/Web/CSS/inline-size"
|
|
5835
5835
|
}
|
|
5836
5836
|
],
|
|
5837
|
-
"description": "
|
|
5837
|
+
"description": "Size of an element in the direction specified by 'writing-mode'.",
|
|
5838
5838
|
"restrictions": [
|
|
5839
5839
|
"length",
|
|
5840
5840
|
"percentage"
|
|
@@ -5941,7 +5941,7 @@
|
|
|
5941
5941
|
}
|
|
5942
5942
|
],
|
|
5943
5943
|
"syntax": "normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]",
|
|
5944
|
-
"relevance":
|
|
5944
|
+
"relevance": 85,
|
|
5945
5945
|
"description": "Aligns flex items along the main axis of the current line of the flex container.",
|
|
5946
5946
|
"restrictions": [
|
|
5947
5947
|
"enum"
|
|
@@ -6302,7 +6302,7 @@
|
|
|
6302
6302
|
"url": "https://developer.mozilla.org/docs/Web/CSS/margin"
|
|
6303
6303
|
}
|
|
6304
6304
|
],
|
|
6305
|
-
"description": "Shorthand property to set values the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits.",
|
|
6305
|
+
"description": "Shorthand property to set values for the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits.",
|
|
6306
6306
|
"restrictions": [
|
|
6307
6307
|
"length",
|
|
6308
6308
|
"percentage"
|
|
@@ -6351,7 +6351,7 @@
|
|
|
6351
6351
|
}
|
|
6352
6352
|
],
|
|
6353
6353
|
"syntax": "<'margin-left'>",
|
|
6354
|
-
"relevance":
|
|
6354
|
+
"relevance": 52,
|
|
6355
6355
|
"references": [
|
|
6356
6356
|
{
|
|
6357
6357
|
"name": "MDN Reference",
|
|
@@ -6372,14 +6372,14 @@
|
|
|
6372
6372
|
}
|
|
6373
6373
|
],
|
|
6374
6374
|
"syntax": "<length> | <percentage> | auto",
|
|
6375
|
-
"relevance":
|
|
6375
|
+
"relevance": 91,
|
|
6376
6376
|
"references": [
|
|
6377
6377
|
{
|
|
6378
6378
|
"name": "MDN Reference",
|
|
6379
6379
|
"url": "https://developer.mozilla.org/docs/Web/CSS/margin-bottom"
|
|
6380
6380
|
}
|
|
6381
6381
|
],
|
|
6382
|
-
"description": "Shorthand property to set values the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6382
|
+
"description": "Shorthand property to set values for the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6383
6383
|
"restrictions": [
|
|
6384
6384
|
"length",
|
|
6385
6385
|
"percentage"
|
|
@@ -6456,7 +6456,7 @@
|
|
|
6456
6456
|
"url": "https://developer.mozilla.org/docs/Web/CSS/margin-left"
|
|
6457
6457
|
}
|
|
6458
6458
|
],
|
|
6459
|
-
"description": "Shorthand property to set values the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6459
|
+
"description": "Shorthand property to set values for the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6460
6460
|
"restrictions": [
|
|
6461
6461
|
"length",
|
|
6462
6462
|
"percentage"
|
|
@@ -6477,7 +6477,7 @@
|
|
|
6477
6477
|
"url": "https://developer.mozilla.org/docs/Web/CSS/margin-right"
|
|
6478
6478
|
}
|
|
6479
6479
|
],
|
|
6480
|
-
"description": "Shorthand property to set values the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6480
|
+
"description": "Shorthand property to set values for the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6481
6481
|
"restrictions": [
|
|
6482
6482
|
"length",
|
|
6483
6483
|
"percentage"
|
|
@@ -6498,7 +6498,7 @@
|
|
|
6498
6498
|
"url": "https://developer.mozilla.org/docs/Web/CSS/margin-top"
|
|
6499
6499
|
}
|
|
6500
6500
|
],
|
|
6501
|
-
"description": "Shorthand property to set values the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6501
|
+
"description": "Shorthand property to set values for the thickness of the margin area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. Negative values for margin properties are allowed, but there may be implementation-specific limits..",
|
|
6502
6502
|
"restrictions": [
|
|
6503
6503
|
"length",
|
|
6504
6504
|
"percentage"
|
|
@@ -6579,7 +6579,7 @@
|
|
|
6579
6579
|
{
|
|
6580
6580
|
"name": "mask-image",
|
|
6581
6581
|
"browsers": [
|
|
6582
|
-
"
|
|
6582
|
+
"E79",
|
|
6583
6583
|
"FF53",
|
|
6584
6584
|
"S4",
|
|
6585
6585
|
"C1",
|
|
@@ -6670,9 +6670,9 @@
|
|
|
6670
6670
|
{
|
|
6671
6671
|
"name": "mask-position",
|
|
6672
6672
|
"browsers": [
|
|
6673
|
-
"
|
|
6673
|
+
"E79",
|
|
6674
6674
|
"FF53",
|
|
6675
|
-
"S3.
|
|
6675
|
+
"S3.1",
|
|
6676
6676
|
"C1",
|
|
6677
6677
|
"O15"
|
|
6678
6678
|
],
|
|
@@ -6694,9 +6694,9 @@
|
|
|
6694
6694
|
{
|
|
6695
6695
|
"name": "mask-repeat",
|
|
6696
6696
|
"browsers": [
|
|
6697
|
-
"
|
|
6697
|
+
"E79",
|
|
6698
6698
|
"FF53",
|
|
6699
|
-
"S3.
|
|
6699
|
+
"S3.1",
|
|
6700
6700
|
"C1",
|
|
6701
6701
|
"O15"
|
|
6702
6702
|
],
|
|
@@ -6716,7 +6716,7 @@
|
|
|
6716
6716
|
{
|
|
6717
6717
|
"name": "mask-size",
|
|
6718
6718
|
"browsers": [
|
|
6719
|
-
"
|
|
6719
|
+
"E79",
|
|
6720
6720
|
"FF53",
|
|
6721
6721
|
"S4",
|
|
6722
6722
|
"C4",
|
|
@@ -6756,7 +6756,7 @@
|
|
|
6756
6756
|
"browsers": [
|
|
6757
6757
|
"E79",
|
|
6758
6758
|
"FF35",
|
|
6759
|
-
"
|
|
6759
|
+
"S7",
|
|
6760
6760
|
"C24",
|
|
6761
6761
|
"O15"
|
|
6762
6762
|
],
|
|
@@ -6806,7 +6806,7 @@
|
|
|
6806
6806
|
"url": "https://developer.mozilla.org/docs/Web/CSS/max-block-size"
|
|
6807
6807
|
}
|
|
6808
6808
|
],
|
|
6809
|
-
"description": "
|
|
6809
|
+
"description": "Maximum size of an element in the direction opposite that of the direction specified by 'writing-mode'.",
|
|
6810
6810
|
"restrictions": [
|
|
6811
6811
|
"length",
|
|
6812
6812
|
"percentage"
|
|
@@ -6869,7 +6869,7 @@
|
|
|
6869
6869
|
"url": "https://developer.mozilla.org/docs/Web/CSS/max-inline-size"
|
|
6870
6870
|
}
|
|
6871
6871
|
],
|
|
6872
|
-
"description": "
|
|
6872
|
+
"description": "Maximum size of an element in the direction specified by 'writing-mode'.",
|
|
6873
6873
|
"restrictions": [
|
|
6874
6874
|
"length",
|
|
6875
6875
|
"percentage"
|
|
@@ -6926,7 +6926,7 @@
|
|
|
6926
6926
|
"url": "https://developer.mozilla.org/docs/Web/CSS/min-block-size"
|
|
6927
6927
|
}
|
|
6928
6928
|
],
|
|
6929
|
-
"description": "
|
|
6929
|
+
"description": "Minimal size of an element in the direction opposite that of the direction specified by 'writing-mode'.",
|
|
6930
6930
|
"restrictions": [
|
|
6931
6931
|
"length",
|
|
6932
6932
|
"percentage"
|
|
@@ -6982,7 +6982,7 @@
|
|
|
6982
6982
|
"url": "https://developer.mozilla.org/docs/Web/CSS/min-inline-size"
|
|
6983
6983
|
}
|
|
6984
6984
|
],
|
|
6985
|
-
"description": "
|
|
6985
|
+
"description": "Minimal size of an element in the direction specified by 'writing-mode'.",
|
|
6986
6986
|
"restrictions": [
|
|
6987
6987
|
"length",
|
|
6988
6988
|
"percentage"
|
|
@@ -11154,7 +11154,7 @@
|
|
|
11154
11154
|
}
|
|
11155
11155
|
],
|
|
11156
11156
|
"syntax": "fill | contain | cover | none | scale-down",
|
|
11157
|
-
"relevance":
|
|
11157
|
+
"relevance": 68,
|
|
11158
11158
|
"references": [
|
|
11159
11159
|
{
|
|
11160
11160
|
"name": "MDN Reference",
|
|
@@ -11298,7 +11298,7 @@
|
|
|
11298
11298
|
{
|
|
11299
11299
|
"name": "order",
|
|
11300
11300
|
"syntax": "<integer>",
|
|
11301
|
-
"relevance":
|
|
11301
|
+
"relevance": 64,
|
|
11302
11302
|
"references": [
|
|
11303
11303
|
{
|
|
11304
11304
|
"name": "MDN Reference",
|
|
@@ -11696,7 +11696,7 @@
|
|
|
11696
11696
|
"O9.5"
|
|
11697
11697
|
],
|
|
11698
11698
|
"syntax": "<length>",
|
|
11699
|
-
"relevance":
|
|
11699
|
+
"relevance": 67,
|
|
11700
11700
|
"references": [
|
|
11701
11701
|
{
|
|
11702
11702
|
"name": "MDN Reference",
|
|
@@ -11733,7 +11733,7 @@
|
|
|
11733
11733
|
{
|
|
11734
11734
|
"name": "outline-width",
|
|
11735
11735
|
"syntax": "<line-width>",
|
|
11736
|
-
"relevance":
|
|
11736
|
+
"relevance": 61,
|
|
11737
11737
|
"references": [
|
|
11738
11738
|
{
|
|
11739
11739
|
"name": "MDN Reference",
|
|
@@ -11796,7 +11796,7 @@
|
|
|
11796
11796
|
}
|
|
11797
11797
|
],
|
|
11798
11798
|
"syntax": "normal | break-word | anywhere",
|
|
11799
|
-
"relevance":
|
|
11799
|
+
"relevance": 64,
|
|
11800
11800
|
"references": [
|
|
11801
11801
|
{
|
|
11802
11802
|
"name": "MDN Reference",
|
|
@@ -11900,7 +11900,7 @@
|
|
|
11900
11900
|
"url": "https://developer.mozilla.org/docs/Web/CSS/padding"
|
|
11901
11901
|
}
|
|
11902
11902
|
],
|
|
11903
|
-
"description": "Shorthand property to set values the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
11903
|
+
"description": "Shorthand property to set values for the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
11904
11904
|
"restrictions": [
|
|
11905
11905
|
"length",
|
|
11906
11906
|
"percentage"
|
|
@@ -11916,7 +11916,7 @@
|
|
|
11916
11916
|
"url": "https://developer.mozilla.org/docs/Web/CSS/padding-bottom"
|
|
11917
11917
|
}
|
|
11918
11918
|
],
|
|
11919
|
-
"description": "Shorthand property to set values the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
11919
|
+
"description": "Shorthand property to set values for the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
11920
11920
|
"restrictions": [
|
|
11921
11921
|
"length",
|
|
11922
11922
|
"percentage"
|
|
@@ -12017,14 +12017,14 @@
|
|
|
12017
12017
|
{
|
|
12018
12018
|
"name": "padding-left",
|
|
12019
12019
|
"syntax": "<length> | <percentage>",
|
|
12020
|
-
"relevance":
|
|
12020
|
+
"relevance": 90,
|
|
12021
12021
|
"references": [
|
|
12022
12022
|
{
|
|
12023
12023
|
"name": "MDN Reference",
|
|
12024
12024
|
"url": "https://developer.mozilla.org/docs/Web/CSS/padding-left"
|
|
12025
12025
|
}
|
|
12026
12026
|
],
|
|
12027
|
-
"description": "Shorthand property to set values the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
12027
|
+
"description": "Shorthand property to set values for the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
12028
12028
|
"restrictions": [
|
|
12029
12029
|
"length",
|
|
12030
12030
|
"percentage"
|
|
@@ -12033,14 +12033,14 @@
|
|
|
12033
12033
|
{
|
|
12034
12034
|
"name": "padding-right",
|
|
12035
12035
|
"syntax": "<length> | <percentage>",
|
|
12036
|
-
"relevance":
|
|
12036
|
+
"relevance": 89,
|
|
12037
12037
|
"references": [
|
|
12038
12038
|
{
|
|
12039
12039
|
"name": "MDN Reference",
|
|
12040
12040
|
"url": "https://developer.mozilla.org/docs/Web/CSS/padding-right"
|
|
12041
12041
|
}
|
|
12042
12042
|
],
|
|
12043
|
-
"description": "Shorthand property to set values the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
12043
|
+
"description": "Shorthand property to set values for the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
12044
12044
|
"restrictions": [
|
|
12045
12045
|
"length",
|
|
12046
12046
|
"percentage"
|
|
@@ -12056,7 +12056,7 @@
|
|
|
12056
12056
|
"url": "https://developer.mozilla.org/docs/Web/CSS/padding-top"
|
|
12057
12057
|
}
|
|
12058
12058
|
],
|
|
12059
|
-
"description": "Shorthand property to set values the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
12059
|
+
"description": "Shorthand property to set values for the thickness of the padding area. If left is omitted, it is the same as right. If bottom is omitted it is the same as top, if right is omitted it is the same as top. The value may not be negative.",
|
|
12060
12060
|
"restrictions": [
|
|
12061
12061
|
"length",
|
|
12062
12062
|
"percentage"
|
|
@@ -12149,7 +12149,7 @@
|
|
|
12149
12149
|
}
|
|
12150
12150
|
],
|
|
12151
12151
|
"syntax": "auto | avoid",
|
|
12152
|
-
"relevance":
|
|
12152
|
+
"relevance": 53,
|
|
12153
12153
|
"references": [
|
|
12154
12154
|
{
|
|
12155
12155
|
"name": "MDN Reference",
|
|
@@ -12207,7 +12207,7 @@
|
|
|
12207
12207
|
}
|
|
12208
12208
|
],
|
|
12209
12209
|
"syntax": "none | <length>",
|
|
12210
|
-
"relevance":
|
|
12210
|
+
"relevance": 55,
|
|
12211
12211
|
"references": [
|
|
12212
12212
|
{
|
|
12213
12213
|
"name": "MDN Reference",
|
|
@@ -12262,7 +12262,7 @@
|
|
|
12262
12262
|
},
|
|
12263
12263
|
{
|
|
12264
12264
|
"name": "visible",
|
|
12265
|
-
"description": "The given element can be the target element for pointer events when the ‘visibility’ property is set to visible and the pointer is over either the interior or the
|
|
12265
|
+
"description": "The given element can be the target element for pointer events when the ‘visibility’ property is set to visible and the pointer is over either the interior or the perimeter of the element."
|
|
12266
12266
|
},
|
|
12267
12267
|
{
|
|
12268
12268
|
"name": "visibleFill",
|
|
@@ -12421,7 +12421,7 @@
|
|
|
12421
12421
|
}
|
|
12422
12422
|
],
|
|
12423
12423
|
"syntax": "none | both | horizontal | vertical | block | inline",
|
|
12424
|
-
"relevance":
|
|
12424
|
+
"relevance": 59,
|
|
12425
12425
|
"references": [
|
|
12426
12426
|
{
|
|
12427
12427
|
"name": "MDN Reference",
|
|
@@ -12919,7 +12919,7 @@
|
|
|
12919
12919
|
}
|
|
12920
12920
|
],
|
|
12921
12921
|
"syntax": "none | [ x | y | block | inline | both ] [ mandatory | proximity ]?",
|
|
12922
|
-
"relevance":
|
|
12922
|
+
"relevance": 52,
|
|
12923
12923
|
"references": [
|
|
12924
12924
|
{
|
|
12925
12925
|
"name": "MDN Reference",
|
|
@@ -13068,7 +13068,7 @@
|
|
|
13068
13068
|
}
|
|
13069
13069
|
],
|
|
13070
13070
|
"syntax": "[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#",
|
|
13071
|
-
"relevance":
|
|
13071
|
+
"relevance": 66,
|
|
13072
13072
|
"description": "@font-face descriptor. Specifies the resource containing font data. It is required, whether the font is downloadable or locally installed.",
|
|
13073
13073
|
"restrictions": [
|
|
13074
13074
|
"enum",
|
|
@@ -13307,8 +13307,8 @@
|
|
|
13307
13307
|
"name": "tab-size",
|
|
13308
13308
|
"browsers": [
|
|
13309
13309
|
"E79",
|
|
13310
|
-
"
|
|
13311
|
-
"
|
|
13310
|
+
"FF91",
|
|
13311
|
+
"S7",
|
|
13312
13312
|
"C21",
|
|
13313
13313
|
"O15"
|
|
13314
13314
|
],
|
|
@@ -13601,7 +13601,7 @@
|
|
|
13601
13601
|
"name": "text-indent",
|
|
13602
13602
|
"values": [],
|
|
13603
13603
|
"syntax": "<length-percentage> && hanging? && each-line?",
|
|
13604
|
-
"relevance":
|
|
13604
|
+
"relevance": 68,
|
|
13605
13605
|
"references": [
|
|
13606
13606
|
{
|
|
13607
13607
|
"name": "MDN Reference",
|
|
@@ -13675,7 +13675,7 @@
|
|
|
13675
13675
|
"FF41",
|
|
13676
13676
|
"S14",
|
|
13677
13677
|
"C48",
|
|
13678
|
-
"
|
|
13678
|
+
"O35"
|
|
13679
13679
|
],
|
|
13680
13680
|
"values": [
|
|
13681
13681
|
{
|
|
@@ -13685,7 +13685,7 @@
|
|
|
13685
13685
|
"FF41",
|
|
13686
13686
|
"S14",
|
|
13687
13687
|
"C48",
|
|
13688
|
-
"
|
|
13688
|
+
"O35"
|
|
13689
13689
|
],
|
|
13690
13690
|
"description": "This value is equivalent to 'sideways-right' in 'vertical-rl' writing mode and equivalent to 'sideways-left' in 'vertical-lr' writing mode."
|
|
13691
13691
|
},
|
|
@@ -13696,7 +13696,7 @@
|
|
|
13696
13696
|
"FF41",
|
|
13697
13697
|
"S14",
|
|
13698
13698
|
"C48",
|
|
13699
|
-
"
|
|
13699
|
+
"O35"
|
|
13700
13700
|
],
|
|
13701
13701
|
"description": "In vertical writing modes, this causes text to be set as if in a horizontal layout, but rotated 90° clockwise."
|
|
13702
13702
|
},
|
|
@@ -13792,7 +13792,7 @@
|
|
|
13792
13792
|
}
|
|
13793
13793
|
],
|
|
13794
13794
|
"syntax": "none | <shadow-t>#",
|
|
13795
|
-
"relevance":
|
|
13795
|
+
"relevance": 74,
|
|
13796
13796
|
"references": [
|
|
13797
13797
|
{
|
|
13798
13798
|
"name": "MDN Reference",
|
|
@@ -13925,7 +13925,7 @@
|
|
|
13925
13925
|
}
|
|
13926
13926
|
],
|
|
13927
13927
|
"syntax": "auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation",
|
|
13928
|
-
"relevance":
|
|
13928
|
+
"relevance": 68,
|
|
13929
13929
|
"references": [
|
|
13930
13930
|
{
|
|
13931
13931
|
"name": "MDN Reference",
|
|
@@ -14128,7 +14128,7 @@
|
|
|
14128
14128
|
{
|
|
14129
14129
|
"name": "transition-delay",
|
|
14130
14130
|
"syntax": "<time>#",
|
|
14131
|
-
"relevance":
|
|
14131
|
+
"relevance": 62,
|
|
14132
14132
|
"references": [
|
|
14133
14133
|
{
|
|
14134
14134
|
"name": "MDN Reference",
|
|
@@ -14168,7 +14168,7 @@
|
|
|
14168
14168
|
}
|
|
14169
14169
|
],
|
|
14170
14170
|
"syntax": "none | <single-transition-property>#",
|
|
14171
|
-
"relevance":
|
|
14171
|
+
"relevance": 63,
|
|
14172
14172
|
"references": [
|
|
14173
14173
|
{
|
|
14174
14174
|
"name": "MDN Reference",
|
|
@@ -14183,7 +14183,7 @@
|
|
|
14183
14183
|
{
|
|
14184
14184
|
"name": "transition-timing-function",
|
|
14185
14185
|
"syntax": "<easing-function>#",
|
|
14186
|
-
"relevance":
|
|
14186
|
+
"relevance": 63,
|
|
14187
14187
|
"references": [
|
|
14188
14188
|
{
|
|
14189
14189
|
"name": "MDN Reference",
|
|
@@ -14549,7 +14549,7 @@
|
|
|
14549
14549
|
}
|
|
14550
14550
|
],
|
|
14551
14551
|
"syntax": "<unicode-range>#",
|
|
14552
|
-
"relevance":
|
|
14552
|
+
"relevance": 58,
|
|
14553
14553
|
"description": "@font-face descriptor. Defines the set of Unicode codepoints that may be supported by the font face for which it is declared.",
|
|
14554
14554
|
"restrictions": [
|
|
14555
14555
|
"unicode-range"
|
|
@@ -14579,7 +14579,7 @@
|
|
|
14579
14579
|
}
|
|
14580
14580
|
],
|
|
14581
14581
|
"syntax": "auto | text | none | contain | all",
|
|
14582
|
-
"relevance":
|
|
14582
|
+
"relevance": 77,
|
|
14583
14583
|
"references": [
|
|
14584
14584
|
{
|
|
14585
14585
|
"name": "MDN Reference",
|
|
@@ -16342,7 +16342,7 @@
|
|
|
16342
16342
|
"browsers": [
|
|
16343
16343
|
"E12",
|
|
16344
16344
|
"C16",
|
|
16345
|
-
"
|
|
16345
|
+
"O15"
|
|
16346
16346
|
],
|
|
16347
16347
|
"status": "nonstandard",
|
|
16348
16348
|
"syntax": "<color>",
|
|
@@ -16852,7 +16852,7 @@
|
|
|
16852
16852
|
}
|
|
16853
16853
|
],
|
|
16854
16854
|
"syntax": "normal | pre | nowrap | pre-wrap | pre-line | break-spaces",
|
|
16855
|
-
"relevance":
|
|
16855
|
+
"relevance": 90,
|
|
16856
16856
|
"references": [
|
|
16857
16857
|
{
|
|
16858
16858
|
"name": "MDN Reference",
|
|
@@ -16944,7 +16944,7 @@
|
|
|
16944
16944
|
}
|
|
16945
16945
|
],
|
|
16946
16946
|
"syntax": "auto | <animateable-feature>#",
|
|
16947
|
-
"relevance":
|
|
16947
|
+
"relevance": 63,
|
|
16948
16948
|
"references": [
|
|
16949
16949
|
{
|
|
16950
16950
|
"name": "MDN Reference",
|
|
@@ -17021,7 +17021,7 @@
|
|
|
17021
17021
|
}
|
|
17022
17022
|
],
|
|
17023
17023
|
"syntax": "normal | break-word",
|
|
17024
|
-
"relevance":
|
|
17024
|
+
"relevance": 77,
|
|
17025
17025
|
"description": "Specifies whether the UA may break within a word to prevent overflow when an otherwise-unbreakable string is too long to fit.",
|
|
17026
17026
|
"restrictions": [
|
|
17027
17027
|
"enum"
|
|
@@ -17440,7 +17440,7 @@
|
|
|
17440
17440
|
"browsers": [
|
|
17441
17441
|
"E18",
|
|
17442
17442
|
"FF53",
|
|
17443
|
-
"S3.
|
|
17443
|
+
"S3.1",
|
|
17444
17444
|
"C1",
|
|
17445
17445
|
"O15"
|
|
17446
17446
|
],
|
|
@@ -17467,7 +17467,7 @@
|
|
|
17467
17467
|
"browsers": [
|
|
17468
17468
|
"E18",
|
|
17469
17469
|
"FF49",
|
|
17470
|
-
"S3.
|
|
17470
|
+
"S3.1",
|
|
17471
17471
|
"C1",
|
|
17472
17472
|
"O15"
|
|
17473
17473
|
],
|
|
@@ -17487,7 +17487,7 @@
|
|
|
17487
17487
|
"browsers": [
|
|
17488
17488
|
"E18",
|
|
17489
17489
|
"FF49",
|
|
17490
|
-
"S3.
|
|
17490
|
+
"S3.1",
|
|
17491
17491
|
"C1",
|
|
17492
17492
|
"O15"
|
|
17493
17493
|
],
|
|
@@ -17537,6 +17537,23 @@
|
|
|
17537
17537
|
],
|
|
17538
17538
|
"description": "The -webkit-mask-repeat-y property specifies whether and how a mask image is repeated (tiled) vertically."
|
|
17539
17539
|
},
|
|
17540
|
+
{
|
|
17541
|
+
"name": "accent-color",
|
|
17542
|
+
"syntax": "auto | <color>",
|
|
17543
|
+
"relevance": 50,
|
|
17544
|
+
"browsers": [
|
|
17545
|
+
"E93",
|
|
17546
|
+
"FF92",
|
|
17547
|
+
"C93"
|
|
17548
|
+
],
|
|
17549
|
+
"references": [
|
|
17550
|
+
{
|
|
17551
|
+
"name": "MDN Reference",
|
|
17552
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/accent-color"
|
|
17553
|
+
}
|
|
17554
|
+
],
|
|
17555
|
+
"description": "Sets the color of the elements accent"
|
|
17556
|
+
},
|
|
17540
17557
|
{
|
|
17541
17558
|
"name": "align-tracks",
|
|
17542
17559
|
"status": "experimental",
|
|
@@ -17557,7 +17574,7 @@
|
|
|
17557
17574
|
"name": "appearance",
|
|
17558
17575
|
"status": "experimental",
|
|
17559
17576
|
"syntax": "none | auto | textfield | menulist-button | <compat-auto>",
|
|
17560
|
-
"relevance":
|
|
17577
|
+
"relevance": 61,
|
|
17561
17578
|
"browsers": [
|
|
17562
17579
|
"E84",
|
|
17563
17580
|
"FF80",
|
|
@@ -17577,10 +17594,11 @@
|
|
|
17577
17594
|
"name": "aspect-ratio",
|
|
17578
17595
|
"status": "experimental",
|
|
17579
17596
|
"syntax": "auto | <ratio>",
|
|
17580
|
-
"relevance":
|
|
17597
|
+
"relevance": 52,
|
|
17581
17598
|
"browsers": [
|
|
17582
17599
|
"E88",
|
|
17583
17600
|
"FF89",
|
|
17601
|
+
"S15",
|
|
17584
17602
|
"C88",
|
|
17585
17603
|
"O74"
|
|
17586
17604
|
],
|
|
@@ -17701,6 +17719,7 @@
|
|
|
17701
17719
|
"browsers": [
|
|
17702
17720
|
"E89",
|
|
17703
17721
|
"FF66",
|
|
17722
|
+
"S15",
|
|
17704
17723
|
"C89",
|
|
17705
17724
|
"O75"
|
|
17706
17725
|
],
|
|
@@ -17719,6 +17738,7 @@
|
|
|
17719
17738
|
"browsers": [
|
|
17720
17739
|
"E89",
|
|
17721
17740
|
"FF66",
|
|
17741
|
+
"S15",
|
|
17722
17742
|
"C89",
|
|
17723
17743
|
"O75"
|
|
17724
17744
|
],
|
|
@@ -17813,6 +17833,7 @@
|
|
|
17813
17833
|
"browsers": [
|
|
17814
17834
|
"E89",
|
|
17815
17835
|
"FF66",
|
|
17836
|
+
"S15",
|
|
17816
17837
|
"C89",
|
|
17817
17838
|
"O75"
|
|
17818
17839
|
],
|
|
@@ -17831,6 +17852,7 @@
|
|
|
17831
17852
|
"browsers": [
|
|
17832
17853
|
"E89",
|
|
17833
17854
|
"FF66",
|
|
17855
|
+
"S15",
|
|
17834
17856
|
"C89",
|
|
17835
17857
|
"O75"
|
|
17836
17858
|
],
|
|
@@ -18020,7 +18042,7 @@
|
|
|
18020
18042
|
{
|
|
18021
18043
|
"name": "color-scheme",
|
|
18022
18044
|
"syntax": "normal | [ light | dark | <custom-ident> ]+",
|
|
18023
|
-
"relevance":
|
|
18045
|
+
"relevance": 51,
|
|
18024
18046
|
"browsers": [
|
|
18025
18047
|
"E81",
|
|
18026
18048
|
"S13",
|
|
@@ -18132,7 +18154,7 @@
|
|
|
18132
18154
|
"name": "forced-color-adjust",
|
|
18133
18155
|
"status": "experimental",
|
|
18134
18156
|
"syntax": "auto | none",
|
|
18135
|
-
"relevance":
|
|
18157
|
+
"relevance": 50,
|
|
18136
18158
|
"browsers": [
|
|
18137
18159
|
"E79",
|
|
18138
18160
|
"C89",
|
|
@@ -18149,7 +18171,7 @@
|
|
|
18149
18171
|
{
|
|
18150
18172
|
"name": "gap",
|
|
18151
18173
|
"syntax": "<'row-gap'> <'column-gap'>?",
|
|
18152
|
-
"relevance":
|
|
18174
|
+
"relevance": 51,
|
|
18153
18175
|
"browsers": [
|
|
18154
18176
|
"E84",
|
|
18155
18177
|
"FF63",
|
|
@@ -18215,7 +18237,7 @@
|
|
|
18215
18237
|
"syntax": "<'top'>{1,4}",
|
|
18216
18238
|
"relevance": 50,
|
|
18217
18239
|
"browsers": [
|
|
18218
|
-
"
|
|
18240
|
+
"E87",
|
|
18219
18241
|
"FF66",
|
|
18220
18242
|
"S14.1",
|
|
18221
18243
|
"C87",
|
|
@@ -18234,7 +18256,7 @@
|
|
|
18234
18256
|
"syntax": "<'top'>{1,2}",
|
|
18235
18257
|
"relevance": 50,
|
|
18236
18258
|
"browsers": [
|
|
18237
|
-
"
|
|
18259
|
+
"E87",
|
|
18238
18260
|
"FF63",
|
|
18239
18261
|
"S14.1",
|
|
18240
18262
|
"C87",
|
|
@@ -18253,7 +18275,7 @@
|
|
|
18253
18275
|
"syntax": "<'top'>",
|
|
18254
18276
|
"relevance": 50,
|
|
18255
18277
|
"browsers": [
|
|
18256
|
-
"
|
|
18278
|
+
"E87",
|
|
18257
18279
|
"FF63",
|
|
18258
18280
|
"S14.1",
|
|
18259
18281
|
"C87",
|
|
@@ -18272,7 +18294,7 @@
|
|
|
18272
18294
|
"syntax": "<'top'>",
|
|
18273
18295
|
"relevance": 50,
|
|
18274
18296
|
"browsers": [
|
|
18275
|
-
"
|
|
18297
|
+
"E87",
|
|
18276
18298
|
"FF63",
|
|
18277
18299
|
"S14.1",
|
|
18278
18300
|
"C87",
|
|
@@ -18291,7 +18313,7 @@
|
|
|
18291
18313
|
"syntax": "<'top'>{1,2}",
|
|
18292
18314
|
"relevance": 50,
|
|
18293
18315
|
"browsers": [
|
|
18294
|
-
"
|
|
18316
|
+
"E87",
|
|
18295
18317
|
"FF63",
|
|
18296
18318
|
"S14.1",
|
|
18297
18319
|
"C87",
|
|
@@ -18310,7 +18332,7 @@
|
|
|
18310
18332
|
"syntax": "<'top'>",
|
|
18311
18333
|
"relevance": 50,
|
|
18312
18334
|
"browsers": [
|
|
18313
|
-
"
|
|
18335
|
+
"E87",
|
|
18314
18336
|
"FF63",
|
|
18315
18337
|
"S14.1",
|
|
18316
18338
|
"C87",
|
|
@@ -18329,7 +18351,7 @@
|
|
|
18329
18351
|
"syntax": "<'top'>",
|
|
18330
18352
|
"relevance": 50,
|
|
18331
18353
|
"browsers": [
|
|
18332
|
-
"
|
|
18354
|
+
"E87",
|
|
18333
18355
|
"FF63",
|
|
18334
18356
|
"S14.1",
|
|
18335
18357
|
"C87",
|
|
@@ -18440,9 +18462,9 @@
|
|
|
18440
18462
|
"syntax": "<mask-layer>#",
|
|
18441
18463
|
"relevance": 50,
|
|
18442
18464
|
"browsers": [
|
|
18443
|
-
"
|
|
18465
|
+
"E79",
|
|
18444
18466
|
"FF2",
|
|
18445
|
-
"S3.
|
|
18467
|
+
"S3.1",
|
|
18446
18468
|
"C1",
|
|
18447
18469
|
"O15"
|
|
18448
18470
|
],
|
|
@@ -18797,7 +18819,8 @@
|
|
|
18797
18819
|
"relevance": 50,
|
|
18798
18820
|
"browsers": [
|
|
18799
18821
|
"E90",
|
|
18800
|
-
"C90"
|
|
18822
|
+
"C90",
|
|
18823
|
+
"O76"
|
|
18801
18824
|
],
|
|
18802
18825
|
"references": [
|
|
18803
18826
|
{
|
|
@@ -18936,7 +18959,7 @@
|
|
|
18936
18959
|
"syntax": "<'padding-left'>{1,2}",
|
|
18937
18960
|
"relevance": 50,
|
|
18938
18961
|
"browsers": [
|
|
18939
|
-
"
|
|
18962
|
+
"E87",
|
|
18940
18963
|
"FF66",
|
|
18941
18964
|
"S14.1",
|
|
18942
18965
|
"C87",
|
|
@@ -18956,11 +18979,17 @@
|
|
|
18956
18979
|
"relevance": 50,
|
|
18957
18980
|
"browsers": [
|
|
18958
18981
|
"E79",
|
|
18959
|
-
"
|
|
18982
|
+
"FF45",
|
|
18960
18983
|
"S9",
|
|
18961
18984
|
"C59",
|
|
18962
18985
|
"O46"
|
|
18963
18986
|
],
|
|
18987
|
+
"references": [
|
|
18988
|
+
{
|
|
18989
|
+
"name": "MDN Reference",
|
|
18990
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/place-content"
|
|
18991
|
+
}
|
|
18992
|
+
],
|
|
18964
18993
|
"description": "The place-content CSS shorthand property sets both the align-content and justify-content properties."
|
|
18965
18994
|
},
|
|
18966
18995
|
{
|
|
@@ -18974,6 +19003,12 @@
|
|
|
18974
19003
|
"C59",
|
|
18975
19004
|
"O46"
|
|
18976
19005
|
],
|
|
19006
|
+
"references": [
|
|
19007
|
+
{
|
|
19008
|
+
"name": "MDN Reference",
|
|
19009
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/place-items"
|
|
19010
|
+
}
|
|
19011
|
+
],
|
|
18977
19012
|
"description": "The CSS place-items shorthand property sets both the align-items and justify-items properties. The first value is the align-items property value, the second the justify-items one. If the second value is not present, the first value is also used for it."
|
|
18978
19013
|
},
|
|
18979
19014
|
{
|
|
@@ -18987,6 +19022,12 @@
|
|
|
18987
19022
|
"C59",
|
|
18988
19023
|
"O46"
|
|
18989
19024
|
],
|
|
19025
|
+
"references": [
|
|
19026
|
+
{
|
|
19027
|
+
"name": "MDN Reference",
|
|
19028
|
+
"url": "https://developer.mozilla.org/docs/Web/CSS/place-self"
|
|
19029
|
+
}
|
|
19030
|
+
],
|
|
18990
19031
|
"description": "The place-self CSS property is a shorthand property sets both the align-self and justify-self properties. The first value is the align-self property value, the second the justify-self one. If the second value is not present, the first value is also used for it."
|
|
18991
19032
|
},
|
|
18992
19033
|
{
|
|
@@ -19043,7 +19084,7 @@
|
|
|
19043
19084
|
},
|
|
19044
19085
|
{
|
|
19045
19086
|
"name": "scrollbar-color",
|
|
19046
|
-
"syntax": "auto |
|
|
19087
|
+
"syntax": "auto | <color>{2}",
|
|
19047
19088
|
"relevance": 50,
|
|
19048
19089
|
"browsers": [
|
|
19049
19090
|
"FF64"
|
|
@@ -19058,7 +19099,7 @@
|
|
|
19058
19099
|
},
|
|
19059
19100
|
{
|
|
19060
19101
|
"name": "scrollbar-gutter",
|
|
19061
|
-
"syntax": "auto |
|
|
19102
|
+
"syntax": "auto | stable && both-edges?",
|
|
19062
19103
|
"relevance": 50,
|
|
19063
19104
|
"browsers": [
|
|
19064
19105
|
"C88"
|
|
@@ -19318,6 +19359,7 @@
|
|
|
19318
19359
|
"browsers": [
|
|
19319
19360
|
"E79",
|
|
19320
19361
|
"FF68",
|
|
19362
|
+
"S15",
|
|
19321
19363
|
"C69",
|
|
19322
19364
|
"O56"
|
|
19323
19365
|
],
|
|
@@ -19336,6 +19378,7 @@
|
|
|
19336
19378
|
"browsers": [
|
|
19337
19379
|
"E79",
|
|
19338
19380
|
"FF68",
|
|
19381
|
+
"S15",
|
|
19339
19382
|
"C69",
|
|
19340
19383
|
"O56"
|
|
19341
19384
|
],
|
|
@@ -19354,6 +19397,7 @@
|
|
|
19354
19397
|
"browsers": [
|
|
19355
19398
|
"E79",
|
|
19356
19399
|
"FF68",
|
|
19400
|
+
"S15",
|
|
19357
19401
|
"C69",
|
|
19358
19402
|
"O56"
|
|
19359
19403
|
],
|
|
@@ -19391,6 +19435,7 @@
|
|
|
19391
19435
|
"browsers": [
|
|
19392
19436
|
"E79",
|
|
19393
19437
|
"FF68",
|
|
19438
|
+
"S15",
|
|
19394
19439
|
"C69",
|
|
19395
19440
|
"O56"
|
|
19396
19441
|
],
|
|
@@ -19409,6 +19454,7 @@
|
|
|
19409
19454
|
"browsers": [
|
|
19410
19455
|
"E79",
|
|
19411
19456
|
"FF68",
|
|
19457
|
+
"S15",
|
|
19412
19458
|
"C69",
|
|
19413
19459
|
"O56"
|
|
19414
19460
|
],
|
|
@@ -19427,6 +19473,7 @@
|
|
|
19427
19473
|
"browsers": [
|
|
19428
19474
|
"E79",
|
|
19429
19475
|
"FF68",
|
|
19476
|
+
"S15",
|
|
19430
19477
|
"C69",
|
|
19431
19478
|
"O56"
|
|
19432
19479
|
],
|
|
@@ -19498,7 +19545,7 @@
|
|
|
19498
19545
|
{
|
|
19499
19546
|
"name": "scroll-snap-align",
|
|
19500
19547
|
"syntax": "[ none | start | end | center ]{1,2}",
|
|
19501
|
-
"relevance":
|
|
19548
|
+
"relevance": 52,
|
|
19502
19549
|
"browsers": [
|
|
19503
19550
|
"E79",
|
|
19504
19551
|
"FF68",
|
|
@@ -19520,6 +19567,7 @@
|
|
|
19520
19567
|
"relevance": 50,
|
|
19521
19568
|
"browsers": [
|
|
19522
19569
|
"E79",
|
|
19570
|
+
"S15",
|
|
19523
19571
|
"C75",
|
|
19524
19572
|
"O62"
|
|
19525
19573
|
],
|
|
@@ -19638,7 +19686,7 @@
|
|
|
19638
19686
|
"browsers": [
|
|
19639
19687
|
"E79",
|
|
19640
19688
|
"FF46",
|
|
19641
|
-
"
|
|
19689
|
+
"S7",
|
|
19642
19690
|
"C25",
|
|
19643
19691
|
"O15"
|
|
19644
19692
|
],
|
|
@@ -19657,7 +19705,7 @@
|
|
|
19657
19705
|
"browsers": [
|
|
19658
19706
|
"E79",
|
|
19659
19707
|
"FF46",
|
|
19660
|
-
"
|
|
19708
|
+
"S7",
|
|
19661
19709
|
"C25",
|
|
19662
19710
|
"O15"
|
|
19663
19711
|
],
|
|
@@ -19676,7 +19724,7 @@
|
|
|
19676
19724
|
"browsers": [
|
|
19677
19725
|
"E79",
|
|
19678
19726
|
"FF46",
|
|
19679
|
-
"
|
|
19727
|
+
"S7",
|
|
19680
19728
|
"C25",
|
|
19681
19729
|
"O15"
|
|
19682
19730
|
],
|
|
@@ -19695,7 +19743,7 @@
|
|
|
19695
19743
|
"browsers": [
|
|
19696
19744
|
"E79",
|
|
19697
19745
|
"FF46",
|
|
19698
|
-
"
|
|
19746
|
+
"S7",
|
|
19699
19747
|
"C25",
|
|
19700
19748
|
"O15"
|
|
19701
19749
|
],
|
|
@@ -19711,7 +19759,7 @@
|
|
|
19711
19759
|
"name": "text-size-adjust",
|
|
19712
19760
|
"status": "experimental",
|
|
19713
19761
|
"syntax": "none | auto | <percentage>",
|
|
19714
|
-
"relevance":
|
|
19762
|
+
"relevance": 59,
|
|
19715
19763
|
"browsers": [
|
|
19716
19764
|
"E79",
|
|
19717
19765
|
"C54",
|
|
@@ -19785,13 +19833,41 @@
|
|
|
19785
19833
|
"relevance": 50,
|
|
19786
19834
|
"description": "The speak-as descriptor specifies how a counter symbol constructed with a given @counter-style will be represented in the spoken form. For example, an author can specify a counter symbol to be either spoken as its numerical value or just represented with an audio cue."
|
|
19787
19835
|
},
|
|
19836
|
+
{
|
|
19837
|
+
"name": "ascent-override",
|
|
19838
|
+
"status": "experimental",
|
|
19839
|
+
"syntax": "normal | <percentage>",
|
|
19840
|
+
"relevance": 50,
|
|
19841
|
+
"description": "Describes the ascent metric of a font."
|
|
19842
|
+
},
|
|
19843
|
+
{
|
|
19844
|
+
"name": "descent-override",
|
|
19845
|
+
"status": "experimental",
|
|
19846
|
+
"syntax": "normal | <percentage>",
|
|
19847
|
+
"relevance": 50,
|
|
19848
|
+
"description": "Describes the descent metric of a font."
|
|
19849
|
+
},
|
|
19788
19850
|
{
|
|
19789
19851
|
"name": "font-display",
|
|
19790
19852
|
"status": "experimental",
|
|
19791
19853
|
"syntax": "[ auto | block | swap | fallback | optional ]",
|
|
19792
|
-
"relevance":
|
|
19854
|
+
"relevance": 58,
|
|
19793
19855
|
"description": "The font-display descriptor determines how a font face is displayed based on whether and when it is downloaded and ready to use."
|
|
19794
19856
|
},
|
|
19857
|
+
{
|
|
19858
|
+
"name": "line-gap-override",
|
|
19859
|
+
"status": "experimental",
|
|
19860
|
+
"syntax": "normal | <percentage>",
|
|
19861
|
+
"relevance": 50,
|
|
19862
|
+
"description": "Describes the line-gap metric of a font."
|
|
19863
|
+
},
|
|
19864
|
+
{
|
|
19865
|
+
"name": "size-adjust",
|
|
19866
|
+
"status": "experimental",
|
|
19867
|
+
"syntax": "<percentage>",
|
|
19868
|
+
"relevance": 50,
|
|
19869
|
+
"description": "A multiplier for glyph outlines and metrics of a font."
|
|
19870
|
+
},
|
|
19795
19871
|
{
|
|
19796
19872
|
"name": "bleed",
|
|
19797
19873
|
"syntax": "auto | <length>",
|
|
@@ -19870,8 +19946,10 @@
|
|
|
19870
19946
|
{
|
|
19871
19947
|
"name": "@counter-style",
|
|
19872
19948
|
"browsers": [
|
|
19949
|
+
"E91",
|
|
19873
19950
|
"FF33",
|
|
19874
|
-
"C91"
|
|
19951
|
+
"C91",
|
|
19952
|
+
"O77"
|
|
19875
19953
|
],
|
|
19876
19954
|
"references": [
|
|
19877
19955
|
{
|
|
@@ -20934,11 +21012,11 @@
|
|
|
20934
21012
|
"name": ":is",
|
|
20935
21013
|
"status": "experimental",
|
|
20936
21014
|
"browsers": [
|
|
20937
|
-
"
|
|
21015
|
+
"E88",
|
|
20938
21016
|
"FF78",
|
|
20939
21017
|
"S14",
|
|
20940
21018
|
"C88",
|
|
20941
|
-
"
|
|
21019
|
+
"O74"
|
|
20942
21020
|
],
|
|
20943
21021
|
"references": [
|
|
20944
21022
|
{
|
|
@@ -21061,7 +21139,7 @@
|
|
|
21061
21139
|
{
|
|
21062
21140
|
"name": "::backdrop",
|
|
21063
21141
|
"browsers": [
|
|
21064
|
-
"
|
|
21142
|
+
"E79",
|
|
21065
21143
|
"FF47",
|
|
21066
21144
|
"C37",
|
|
21067
21145
|
"IE11",
|
|
@@ -21452,7 +21530,7 @@
|
|
|
21452
21530
|
"name": "::-webkit-progress-bar",
|
|
21453
21531
|
"browsers": [
|
|
21454
21532
|
"E79",
|
|
21455
|
-
"
|
|
21533
|
+
"S7",
|
|
21456
21534
|
"C25",
|
|
21457
21535
|
"O15"
|
|
21458
21536
|
],
|
|
@@ -21467,7 +21545,7 @@
|
|
|
21467
21545
|
"name": "::-webkit-progress-inner-element",
|
|
21468
21546
|
"browsers": [
|
|
21469
21547
|
"E79",
|
|
21470
|
-
"
|
|
21548
|
+
"S7",
|
|
21471
21549
|
"C23",
|
|
21472
21550
|
"O15"
|
|
21473
21551
|
],
|
|
@@ -21482,7 +21560,7 @@
|
|
|
21482
21560
|
"name": "::-webkit-progress-value",
|
|
21483
21561
|
"browsers": [
|
|
21484
21562
|
"E79",
|
|
21485
|
-
"
|
|
21563
|
+
"S7",
|
|
21486
21564
|
"C25",
|
|
21487
21565
|
"O15"
|
|
21488
21566
|
],
|
|
@@ -21826,7 +21904,7 @@
|
|
|
21826
21904
|
{
|
|
21827
21905
|
"name": "::placeholder",
|
|
21828
21906
|
"browsers": [
|
|
21829
|
-
"
|
|
21907
|
+
"E79",
|
|
21830
21908
|
"FF51",
|
|
21831
21909
|
"S10.1",
|
|
21832
21910
|
"C57",
|