mdn-data 2.0.28 → 2.0.30

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,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.30](https://github.com/mdn/data/compare/v2.0.29...v2.0.30) (2022-10-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * correct mask-repeat initial value ([b36469e](https://github.com/mdn/data/commit/b36469e253ba551ba2a5a9738b814522309e5f6a))
9
+ * correct scroll-timeline-axis and mask-repeat initial value ([#622](https://github.com/mdn/data/issues/622)) ([e48302d](https://github.com/mdn/data/commit/e48302df0348c753db319c059cd5827b3603807d))
10
+ * correct scroll-timeline-axis initial value ([5144622](https://github.com/mdn/data/commit/51446221397120b25d39125bb608a2572c47b0d2))
11
+
12
+ ## [2.0.29](https://github.com/mdn/data/compare/v2.0.28...v2.0.29) (2022-08-30)
13
+
14
+
15
+ ### Miscellaneous Chores
16
+
17
+ * release 2.0.29 ([da9510f](https://github.com/mdn/data/commit/da9510f7c6cbb79e6eeda6dda51bc39358301ea6))
18
+
3
19
  ## [2.0.28](https://github.com/mdn/data/compare/v2.0.27...v2.0.28) (2022-07-12)
4
20
 
5
21
 
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # MDN data
2
2
 
3
+ > **Note:** We are in the process of deprecating the `mdn/data` package in favor of [`w3c/webref`](https://github.com/w3c/webref). If this could present a problem to your project, please contact us via our [GitHub discussions](https://github.com/mdn/mdn-community/discussions/categories/platform). Thank you.
4
+
3
5
  [https://github.com/mdn/data](https://github.com/mdn/data)
4
6
 
5
7
  Maintained by the [MDN team at Mozilla](https://wiki.mozilla.org/MDN).
@@ -12,7 +14,6 @@ or [sidebar navigation](https://developer.mozilla.org/en-US/docs/Web/API/Window)
12
14
  External tools have started to make use of this data as well.
13
15
  For example, the [CSSTree](https://github.com/csstree/csstree/) CSS parser.
14
16
 
15
-
16
17
  [![NPM version](https://img.shields.io/npm/v/mdn-data.svg)](https://www.npmjs.com/package/mdn-data)
17
18
  [![lint](https://github.com/mdn/data/actions/workflows/lint.yml/badge.svg)](https://github.com/mdn/data/actions/workflows/lint.yml)
18
19
 
@@ -23,22 +24,26 @@ and `css`. Inside each of these directories is one or more
23
24
  JSON files containing the data.
24
25
 
25
26
  ### api
27
+
26
28
  Contains data about Web APIs:
27
- * API inheritance (interface inheritance and mixin implementations)
29
+
30
+ - API inheritance (interface inheritance and mixin implementations)
28
31
 
29
32
  ### css
30
- Contains data about:
31
- * CSS at-rules
32
- * CSS properties
33
- * CSS selectors
34
- * CSS syntaxes
35
- * CSS types
36
- * CSS units
37
33
 
38
- Read more about [CSS data](https://github.com/mdn/data/blob/master/css/readme.md) and the format of the files.
34
+ Contains data about:
39
35
 
36
+ - CSS at-rules
37
+ - CSS properties
38
+ - CSS selectors
39
+ - CSS syntaxes
40
+ - CSS types
41
+ - CSS units
42
+
43
+ Read more about [CSS data](https://github.com/mdn/data/blob/master/css/readme.md) and the format of the files.
40
44
 
41
45
  ### l10n
46
+
42
47
  The l10n folder contains localization strings that are used in the various
43
48
  json files throughout this repository.
44
49
 
@@ -52,5 +57,6 @@ We're very happy to accept contributions to this data. Please familiarize yourse
52
57
  with the schema for the data you're editing, and send us a pull request. See also the [Contributing file](https://github.com/mdn/data/blob/master/CONTRIBUTING.md) for more information.
53
58
 
54
59
  ## See also
55
- * [https://github.com/mdn/browser-compat-data](https://github.com/mdn/browser-compat-data)
56
- for compatibility data for Web technologies
60
+
61
+ - [https://github.com/mdn/browser-compat-data](https://github.com/mdn/browser-compat-data)
62
+ for compatibility data for Web technologies
@@ -102,7 +102,6 @@
102
102
  },
103
103
  "required": [
104
104
  "syntax",
105
- "media",
106
105
  "initial",
107
106
  "percentages",
108
107
  "computed",
@@ -1819,6 +1819,22 @@
1819
1819
  "status": "standard",
1820
1820
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation"
1821
1821
  },
1822
+ "animation-composition": {
1823
+ "syntax": "<single-animation-composition>#",
1824
+ "media": "visual",
1825
+ "inherited": false,
1826
+ "animationType": "notAnimatable",
1827
+ "percentages": "no",
1828
+ "groups": [
1829
+ "CSS Animations"
1830
+ ],
1831
+ "initial": "replace",
1832
+ "appliesto": "allElements",
1833
+ "computed": "asSpecified",
1834
+ "order": "uniqueOrder",
1835
+ "status": "experimental",
1836
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-composition"
1837
+ },
1822
1838
  "animation-delay": {
1823
1839
  "syntax": "<time>#",
1824
1840
  "media": "visual",
@@ -1960,7 +1976,7 @@
1960
1976
  "appliesto": "allElements",
1961
1977
  "computed": "listEachItemIdentifyerOrNoneAuto",
1962
1978
  "order": "uniqueOrder",
1963
- "status": "standard",
1979
+ "status": "experimental",
1964
1980
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline"
1965
1981
  },
1966
1982
  "appearance": {
@@ -3890,6 +3906,30 @@
3890
3906
  "status": "standard",
3891
3907
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caption-side"
3892
3908
  },
3909
+ "caret": {
3910
+ "syntax": "<'caret-color'> || <'caret-shape'>",
3911
+ "media": "interactive",
3912
+ "inherited": true,
3913
+ "animationType": [
3914
+ "caret-color",
3915
+ "caret-shape"
3916
+ ],
3917
+ "percentages": "no",
3918
+ "groups": [
3919
+ "CSS Basic User Interface"
3920
+ ],
3921
+ "initial": [
3922
+ "caret-color",
3923
+ "caret-shape"
3924
+ ],
3925
+ "appliesto": "elementsThatAcceptInput",
3926
+ "computed": [
3927
+ "caret-color",
3928
+ "caret-shape"
3929
+ ],
3930
+ "order": "perGrammar",
3931
+ "status": "standard"
3932
+ },
3893
3933
  "caret-color": {
3894
3934
  "syntax": "auto | <color>",
3895
3935
  "media": "interactive",
@@ -3906,6 +3946,21 @@
3906
3946
  "status": "standard",
3907
3947
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caret-color"
3908
3948
  },
3949
+ "caret-shape": {
3950
+ "syntax": "auto | bar | block | underscore",
3951
+ "media": "interactive",
3952
+ "inherited": true,
3953
+ "animationType": "byComputedValueType",
3954
+ "percentages": "no",
3955
+ "groups": [
3956
+ "CSS Basic User Interface"
3957
+ ],
3958
+ "initial": "auto",
3959
+ "appliesto": "elementsThatAcceptInput",
3960
+ "computed": "asSpecified",
3961
+ "order": "perGrammar",
3962
+ "status": "standard"
3963
+ },
3909
3964
  "clear": {
3910
3965
  "syntax": "none | left | right | both | inline-start | inline-end",
3911
3966
  "media": "visual",
@@ -4189,7 +4244,7 @@
4189
4244
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/columns"
4190
4245
  },
4191
4246
  "contain": {
4192
- "syntax": "none | strict | content | [ size || layout || style || paint ]",
4247
+ "syntax": "none | strict | content | [ [ size || inline-size ] || layout || style || paint ]",
4193
4248
  "media": "all",
4194
4249
  "inherited": false,
4195
4250
  "animationType": "discrete",
@@ -4204,6 +4259,95 @@
4204
4259
  "status": "standard",
4205
4260
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain"
4206
4261
  },
4262
+ "contain-intrinsic-size": {
4263
+ "syntax": "[ none | <length> | auto <length> ]{1,2}",
4264
+ "media": "visual",
4265
+ "inherited": false,
4266
+ "animationType": [
4267
+ "contain-intrinsic-width",
4268
+ "contain-intrinsic-height"
4269
+ ],
4270
+ "percentages": [
4271
+ "contain-intrinsic-width",
4272
+ "contain-intrinsic-height"
4273
+ ],
4274
+ "groups": [
4275
+ "CSS Containment"
4276
+ ],
4277
+ "initial": [
4278
+ "contain-intrinsic-width",
4279
+ "contain-intrinsic-height"
4280
+ ],
4281
+ "appliesto": "elementsForWhichSizeContainmentCanApply",
4282
+ "computed": [
4283
+ "contain-intrinsic-width",
4284
+ "contain-intrinsic-height"
4285
+ ],
4286
+ "order": "perGrammar",
4287
+ "status": "experimental",
4288
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size"
4289
+ },
4290
+ "contain-intrinsic-block-size": {
4291
+ "syntax": "none | <length> | auto <length>",
4292
+ "inherited": false,
4293
+ "animationType": "byComputedValueType",
4294
+ "percentages": "no",
4295
+ "groups": [
4296
+ "CSS Containment"
4297
+ ],
4298
+ "initial": "none",
4299
+ "appliesto": "elementsForWhichSizeContainmentCanApply",
4300
+ "computed": "asSpecifiedWithLengthValuesComputed",
4301
+ "order": "perGrammar",
4302
+ "status": "experimental",
4303
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-block-size"
4304
+ },
4305
+ "contain-intrinsic-height": {
4306
+ "syntax": "none | <length> | auto <length>",
4307
+ "inherited": false,
4308
+ "animationType": "byComputedValueType",
4309
+ "percentages": "no",
4310
+ "groups": [
4311
+ "CSS Containment"
4312
+ ],
4313
+ "initial": "none",
4314
+ "appliesto": "elementsForWhichSizeContainmentCanApply",
4315
+ "computed": "asSpecifiedWithLengthValuesComputed",
4316
+ "order": "perGrammar",
4317
+ "status": "experimental",
4318
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height"
4319
+ },
4320
+ "contain-intrinsic-inline-size": {
4321
+ "syntax": "none | <length> | auto <length>",
4322
+ "inherited": false,
4323
+ "animationType": "byComputedValueType",
4324
+ "percentages": "no",
4325
+ "groups": [
4326
+ "CSS Containment"
4327
+ ],
4328
+ "initial": "none",
4329
+ "appliesto": "elementsForWhichSizeContainmentCanApply",
4330
+ "computed": "asSpecifiedWithLengthValuesComputed",
4331
+ "order": "perGrammar",
4332
+ "status": "experimental",
4333
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-inline-size"
4334
+ },
4335
+ "contain-intrinsic-width": {
4336
+ "syntax": "none | <length> | auto <length>",
4337
+ "media": "visual",
4338
+ "inherited": false,
4339
+ "animationType": "byComputedValueType",
4340
+ "percentages": "no",
4341
+ "groups": [
4342
+ "CSS Containment"
4343
+ ],
4344
+ "initial": "none",
4345
+ "appliesto": "elementsForWhichSizeContainmentCanApply",
4346
+ "computed": "asSpecifiedWithLengthValuesComputed",
4347
+ "order": "perGrammar",
4348
+ "status": "experimental",
4349
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width"
4350
+ },
4207
4351
  "content": {
4208
4352
  "syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> ]+ ]?",
4209
4353
  "media": "all",
@@ -5573,9 +5717,19 @@
5573
5717
  "groups": [
5574
5718
  "CSS Logical Properties"
5575
5719
  ],
5576
- "initial": "auto",
5720
+ "initial": [
5721
+ "top",
5722
+ "bottom",
5723
+ "left",
5724
+ "right"
5725
+ ],
5577
5726
  "appliesto": "positionedElements",
5578
- "computed": "sameAsBoxOffsets",
5727
+ "computed": [
5728
+ "top",
5729
+ "bottom",
5730
+ "left",
5731
+ "right"
5732
+ ],
5579
5733
  "order": "uniqueOrder",
5580
5734
  "status": "standard",
5581
5735
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset"
@@ -5589,9 +5743,15 @@
5589
5743
  "groups": [
5590
5744
  "CSS Logical Properties"
5591
5745
  ],
5592
- "initial": "auto",
5746
+ "initial": [
5747
+ "inset-block-start",
5748
+ "inset-block-end"
5749
+ ],
5593
5750
  "appliesto": "positionedElements",
5594
- "computed": "sameAsBoxOffsets",
5751
+ "computed": [
5752
+ "inset-block-start",
5753
+ "inset-block-end"
5754
+ ],
5595
5755
  "order": "uniqueOrder",
5596
5756
  "status": "standard",
5597
5757
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block"
@@ -5637,9 +5797,15 @@
5637
5797
  "groups": [
5638
5798
  "CSS Logical Properties"
5639
5799
  ],
5640
- "initial": "auto",
5800
+ "initial": [
5801
+ "inset-inline-start",
5802
+ "inset-inline-end"
5803
+ ],
5641
5804
  "appliesto": "positionedElements",
5642
- "computed": "sameAsBoxOffsets",
5805
+ "computed": [
5806
+ "inset-inline-start",
5807
+ "inset-inline-end"
5808
+ ],
5643
5809
  "order": "uniqueOrder",
5644
5810
  "status": "standard",
5645
5811
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline"
@@ -5966,14 +6132,20 @@
5966
6132
  "syntax": "<'margin-left'>{1,2}",
5967
6133
  "media": "visual",
5968
6134
  "inherited": false,
5969
- "animationType": "discrete",
6135
+ "animationType": "length",
5970
6136
  "percentages": "dependsOnLayoutModel",
5971
6137
  "groups": [
5972
6138
  "CSS Logical Properties"
5973
6139
  ],
5974
- "initial": "0",
6140
+ "initial": [
6141
+ "margin-block-start",
6142
+ "margin-block-end"
6143
+ ],
5975
6144
  "appliesto": "sameAsMargin",
5976
- "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
6145
+ "computed": [
6146
+ "margin-block-start",
6147
+ "margin-block-end"
6148
+ ],
5977
6149
  "order": "uniqueOrder",
5978
6150
  "status": "standard",
5979
6151
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block"
@@ -6034,14 +6206,20 @@
6034
6206
  "syntax": "<'margin-left'>{1,2}",
6035
6207
  "media": "visual",
6036
6208
  "inherited": false,
6037
- "animationType": "discrete",
6209
+ "animationType": "length",
6038
6210
  "percentages": "dependsOnLayoutModel",
6039
6211
  "groups": [
6040
6212
  "CSS Logical Properties"
6041
6213
  ],
6042
- "initial": "0",
6214
+ "initial": [
6215
+ "margin-inline-start",
6216
+ "margin-inline-end"
6217
+ ],
6043
6218
  "appliesto": "sameAsMargin",
6044
- "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
6219
+ "computed": [
6220
+ "margin-inline-start",
6221
+ "margin-inline-end"
6222
+ ],
6045
6223
  "order": "uniqueOrder",
6046
6224
  "status": "standard",
6047
6225
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline"
@@ -6446,7 +6624,7 @@
6446
6624
  "groups": [
6447
6625
  "CSS Masking"
6448
6626
  ],
6449
- "initial": "no-repeat",
6627
+ "initial": "repeat",
6450
6628
  "appliesto": "allElementsSVGContainerElements",
6451
6629
  "computed": "consistsOfTwoDimensionKeywords",
6452
6630
  "order": "perGrammar",
@@ -6501,6 +6679,38 @@
6501
6679
  "status": "experimental",
6502
6680
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow"
6503
6681
  },
6682
+ "math-depth": {
6683
+ "syntax": "auto-add | add(<integer>) | <integer>",
6684
+ "media": "visual",
6685
+ "inherited": true,
6686
+ "animationType": "notAnimatable",
6687
+ "percentages": "no",
6688
+ "groups": [
6689
+ "MathML"
6690
+ ],
6691
+ "initial": "0",
6692
+ "appliesto": "allElements",
6693
+ "computed": "asSpecified",
6694
+ "order": "perGrammar",
6695
+ "status": "standard",
6696
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/math-depth"
6697
+ },
6698
+ "math-shift": {
6699
+ "syntax": "normal | compact",
6700
+ "media": "visual",
6701
+ "inherited": true,
6702
+ "animationType": "notAnimatable",
6703
+ "percentages": "no",
6704
+ "groups": [
6705
+ "MathML"
6706
+ ],
6707
+ "initial": "normal",
6708
+ "appliesto": "allElements",
6709
+ "computed": "asSpecified",
6710
+ "order": "perGrammar",
6711
+ "status": "standard",
6712
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/math-shift"
6713
+ },
6504
6714
  "math-style": {
6505
6715
  "syntax": "normal | compact",
6506
6716
  "media": "visual",
@@ -7245,14 +7455,20 @@
7245
7455
  "syntax": "<'padding-left'>{1,2}",
7246
7456
  "media": "visual",
7247
7457
  "inherited": false,
7248
- "animationType": "discrete",
7458
+ "animationType": "length",
7249
7459
  "percentages": "logicalWidthOfContainingBlock",
7250
7460
  "groups": [
7251
7461
  "CSS Logical Properties"
7252
7462
  ],
7253
- "initial": "0",
7254
- "appliesto": "allElements",
7255
- "computed": "asLength",
7463
+ "initial": [
7464
+ "padding-block-start",
7465
+ "padding-block-end"
7466
+ ],
7467
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
7468
+ "computed": [
7469
+ "padding-block-start",
7470
+ "padding-block-end"
7471
+ ],
7256
7472
  "order": "uniqueOrder",
7257
7473
  "status": "standard",
7258
7474
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block"
@@ -7267,7 +7483,7 @@
7267
7483
  "CSS Logical Properties"
7268
7484
  ],
7269
7485
  "initial": "0",
7270
- "appliesto": "allElements",
7486
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
7271
7487
  "computed": "asLength",
7272
7488
  "order": "uniqueOrder",
7273
7489
  "status": "standard",
@@ -7283,7 +7499,7 @@
7283
7499
  "CSS Logical Properties"
7284
7500
  ],
7285
7501
  "initial": "0",
7286
- "appliesto": "allElements",
7502
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
7287
7503
  "computed": "asLength",
7288
7504
  "order": "uniqueOrder",
7289
7505
  "status": "standard",
@@ -7313,14 +7529,20 @@
7313
7529
  "syntax": "<'padding-left'>{1,2}",
7314
7530
  "media": "visual",
7315
7531
  "inherited": false,
7316
- "animationType": "discrete",
7532
+ "animationType": "length",
7317
7533
  "percentages": "logicalWidthOfContainingBlock",
7318
7534
  "groups": [
7319
7535
  "CSS Logical Properties"
7320
7536
  ],
7321
- "initial": "0",
7322
- "appliesto": "allElements",
7323
- "computed": "asLength",
7537
+ "initial": [
7538
+ "padding-inline-start",
7539
+ "padding-inline-end"
7540
+ ],
7541
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
7542
+ "computed": [
7543
+ "padding-inline-start",
7544
+ "padding-inline-end"
7545
+ ],
7324
7546
  "order": "uniqueOrder",
7325
7547
  "status": "standard",
7326
7548
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline"
@@ -7335,7 +7557,7 @@
7335
7557
  "CSS Logical Properties"
7336
7558
  ],
7337
7559
  "initial": "0",
7338
- "appliesto": "allElements",
7560
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
7339
7561
  "computed": "asLength",
7340
7562
  "order": "uniqueOrder",
7341
7563
  "status": "standard",
@@ -7351,7 +7573,7 @@
7351
7573
  "CSS Logical Properties"
7352
7574
  ],
7353
7575
  "initial": "0",
7354
- "appliesto": "allElements",
7576
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
7355
7577
  "computed": "asLength",
7356
7578
  "order": "uniqueOrder",
7357
7579
  "status": "standard",
@@ -7532,9 +7754,15 @@
7532
7754
  "groups": [
7533
7755
  "CSS Box Alignment"
7534
7756
  ],
7535
- "initial": "normal",
7757
+ "initial": [
7758
+ "align-content",
7759
+ "justify-content"
7760
+ ],
7536
7761
  "appliesto": "multilineFlexContainers",
7537
- "computed": "asSpecified",
7762
+ "computed": [
7763
+ "align-content",
7764
+ "justify-content"
7765
+ ],
7538
7766
  "order": "uniqueOrder",
7539
7767
  "status": "standard",
7540
7768
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-content"
@@ -7834,9 +8062,19 @@
7834
8062
  "groups": [
7835
8063
  "CSS Scroll Snap"
7836
8064
  ],
7837
- "initial": "0",
8065
+ "initial": [
8066
+ "scroll-margin-bottom",
8067
+ "scroll-margin-left",
8068
+ "scroll-margin-right",
8069
+ "scroll-margin-top"
8070
+ ],
7838
8071
  "appliesto": "allElements",
7839
- "computed": "asSpecified",
8072
+ "computed": [
8073
+ "scroll-margin-bottom",
8074
+ "scroll-margin-left",
8075
+ "scroll-margin-right",
8076
+ "scroll-margin-top"
8077
+ ],
7840
8078
  "order": "perGrammar",
7841
8079
  "status": "standard",
7842
8080
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin"
@@ -7850,9 +8088,15 @@
7850
8088
  "groups": [
7851
8089
  "CSS Scroll Snap"
7852
8090
  ],
7853
- "initial": "0",
8091
+ "initial": [
8092
+ "scroll-margin-block-start",
8093
+ "scroll-margin-block-end"
8094
+ ],
7854
8095
  "appliesto": "allElements",
7855
- "computed": "asSpecified",
8096
+ "computed": [
8097
+ "scroll-margin-block-start",
8098
+ "scroll-margin-block-end"
8099
+ ],
7856
8100
  "order": "perGrammar",
7857
8101
  "status": "standard",
7858
8102
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block"
@@ -7914,9 +8158,15 @@
7914
8158
  "groups": [
7915
8159
  "CSS Scroll Snap"
7916
8160
  ],
7917
- "initial": "0",
8161
+ "initial": [
8162
+ "scroll-margin-inline-start",
8163
+ "scroll-margin-inline-end"
8164
+ ],
7918
8165
  "appliesto": "allElements",
7919
- "computed": "asSpecified",
8166
+ "computed": [
8167
+ "scroll-margin-inline-start",
8168
+ "scroll-margin-inline-end"
8169
+ ],
7920
8170
  "order": "perGrammar",
7921
8171
  "status": "standard",
7922
8172
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline"
@@ -8010,9 +8260,19 @@
8010
8260
  "groups": [
8011
8261
  "CSS Scroll Snap"
8012
8262
  ],
8013
- "initial": "auto",
8263
+ "initial": [
8264
+ "scroll-padding-bottom",
8265
+ "scroll-padding-left",
8266
+ "scroll-padding-right",
8267
+ "scroll-padding-top"
8268
+ ],
8014
8269
  "appliesto": "scrollContainers",
8015
- "computed": "asSpecified",
8270
+ "computed": [
8271
+ "scroll-padding-bottom",
8272
+ "scroll-padding-left",
8273
+ "scroll-padding-right",
8274
+ "scroll-padding-top"
8275
+ ],
8016
8276
  "order": "perGrammar",
8017
8277
  "status": "standard",
8018
8278
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding"
@@ -8026,9 +8286,15 @@
8026
8286
  "groups": [
8027
8287
  "CSS Scroll Snap"
8028
8288
  ],
8029
- "initial": "auto",
8289
+ "initial": [
8290
+ "scroll-padding-block-start",
8291
+ "scroll-padding-block-end"
8292
+ ],
8030
8293
  "appliesto": "scrollContainers",
8031
- "computed": "asSpecified",
8294
+ "computed": [
8295
+ "scroll-padding-block-start",
8296
+ "scroll-padding-block-end"
8297
+ ],
8032
8298
  "order": "perGrammar",
8033
8299
  "status": "standard",
8034
8300
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block"
@@ -8090,9 +8356,15 @@
8090
8356
  "groups": [
8091
8357
  "CSS Scroll Snap"
8092
8358
  ],
8093
- "initial": "auto",
8359
+ "initial": [
8360
+ "scroll-padding-inline-start",
8361
+ "scroll-padding-inline-end"
8362
+ ],
8094
8363
  "appliesto": "scrollContainers",
8095
- "computed": "asSpecified",
8364
+ "computed": [
8365
+ "scroll-padding-inline-start",
8366
+ "scroll-padding-inline-end"
8367
+ ],
8096
8368
  "order": "perGrammar",
8097
8369
  "status": "standard",
8098
8370
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline"
@@ -8321,6 +8593,63 @@
8321
8593
  "status": "obsolete",
8322
8594
  "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y"
8323
8595
  },
8596
+ "scroll-timeline": {
8597
+ "syntax": "<scroll-timeline-name> || <scroll-timeline-axis>",
8598
+ "media": "visual",
8599
+ "inherited": false,
8600
+ "animationType": [
8601
+ "scroll-timeline-name",
8602
+ "scroll-timeline-axis"
8603
+ ],
8604
+ "percentages": "no",
8605
+ "groups": [
8606
+ "CSS Animations"
8607
+ ],
8608
+ "initial": [
8609
+ "scroll-timeline-name",
8610
+ "scroll-timeline-axis"
8611
+ ],
8612
+ "appliesto": "scrollContainers",
8613
+ "computed": [
8614
+ "scroll-timeline-name",
8615
+ "scroll-timeline-axis"
8616
+ ],
8617
+ "order": "perGrammar",
8618
+ "status": "experimental",
8619
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline"
8620
+ },
8621
+ "scroll-timeline-axis": {
8622
+ "syntax": "block | inline | vertical | horizontal",
8623
+ "media": "interactive",
8624
+ "inherited": false,
8625
+ "animationType": "notAnimatable",
8626
+ "percentages": "no",
8627
+ "groups": [
8628
+ "CSS Animations"
8629
+ ],
8630
+ "initial": "block",
8631
+ "appliesto": "scrollContainers",
8632
+ "computed": "asSpecified",
8633
+ "order": "perGrammar",
8634
+ "status": "experimental",
8635
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-axis"
8636
+ },
8637
+ "scroll-timeline-name": {
8638
+ "syntax": "none | <custom-ident>",
8639
+ "media": "interactive",
8640
+ "inherited": false,
8641
+ "animationType": "notAnimatable",
8642
+ "percentages": "no",
8643
+ "groups": [
8644
+ "CSS Animations"
8645
+ ],
8646
+ "initial": "none",
8647
+ "appliesto": "scrollContainers",
8648
+ "computed": "asSpecified",
8649
+ "order": "perGrammar",
8650
+ "status": "experimental",
8651
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name"
8652
+ },
8324
8653
  "shape-image-threshold": {
8325
8654
  "syntax": "<alpha-value>",
8326
8655
  "media": "visual",
@@ -9219,7 +9548,7 @@
9219
9548
  ],
9220
9549
  "initial": "normal",
9221
9550
  "appliesto": "allElements",
9222
- "computed": "optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal",
9551
+ "computed": "absoluteLength",
9223
9552
  "order": "uniqueOrder",
9224
9553
  "alsoAppliesTo": [
9225
9554
  "::first-letter",
@@ -119,6 +119,7 @@
119
119
  "asSpecifiedURLsAbsolute",
120
120
  "asSpecifiedWithExceptionOfResolution",
121
121
  "asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",
122
+ "asSpecifiedWithLengthValuesComputed",
122
123
  "asSpecifiedWithVarsSubstituted",
123
124
  "autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent",
124
125
  "autoOrRectangle",
@@ -139,7 +140,6 @@
139
140
  "normalizedAngle",
140
141
  "normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified",
141
142
  "oneToFourPercentagesOrAbsoluteLengthsPlusFill",
142
- "optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal",
143
143
  "optimumValueOfAbsoluteLengthOrNormal",
144
144
  "percentageAsSpecifiedAbsoluteLengthOrNone",
145
145
  "percentageAsSpecifiedOrAbsoluteLength",
@@ -199,6 +199,8 @@
199
199
  "childrenOfBoxElements",
200
200
  "directChildrenOfElementsWithDisplayMozBoxMozInlineBox",
201
201
  "elementsForWhichLayoutContainmentCanApply",
202
+ "elementsForWhichSizeContainmentCanApply",
203
+ "elementsThatAcceptInput",
202
204
  "elementsWithDisplayBoxOrInlineBox",
203
205
  "elementsWithDisplayMarker",
204
206
  "elementsWithDisplayMozBoxMozInlineBox",
@@ -291,7 +293,6 @@
291
293
  "additionalProperties": false,
292
294
  "required": [
293
295
  "syntax",
294
- "media",
295
296
  "inherited",
296
297
  "animationType",
297
298
  "percentages",
package/css/syntaxes.json CHANGED
@@ -1,7 +1,13 @@
1
1
  {
2
+ "abs()": {
3
+ "syntax": "abs( <calc-sum> )"
4
+ },
2
5
  "absolute-size": {
3
6
  "syntax": "xx-small | x-small | small | medium | large | x-large | xx-large | xxx-large"
4
7
  },
8
+ "acos()": {
9
+ "syntax": "acos( <calc-sum> )"
10
+ },
5
11
  "alpha-value": {
6
12
  "syntax": "<number> | <percentage>"
7
13
  },
@@ -20,6 +26,15 @@
20
26
  "animateable-feature": {
21
27
  "syntax": "scroll-position | contents | <custom-ident>"
22
28
  },
29
+ "asin()": {
30
+ "syntax": "asin( <calc-sum> )"
31
+ },
32
+ "atan()": {
33
+ "syntax": "atan( <calc-sum> )"
34
+ },
35
+ "atan2()": {
36
+ "syntax": "atan2( <calc-sum>, <calc-sum> )"
37
+ },
23
38
  "attachment": {
24
39
  "syntax": "scroll | fixed | local"
25
40
  },
@@ -41,6 +56,9 @@
41
56
  "auto-track-list": {
42
57
  "syntax": "[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>? <auto-repeat>\n[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>?"
43
58
  },
59
+ "axis": {
60
+ "syntax": "block | inline | vertical | horizontal"
61
+ },
44
62
  "baseline-position": {
45
63
  "syntax": "[ first | last ]? baseline"
46
64
  },
@@ -81,7 +99,10 @@
81
99
  "syntax": "<calc-value> [ '*' <calc-value> | '/' <number> ]*"
82
100
  },
83
101
  "calc-value": {
84
- "syntax": "<number> | <dimension> | <percentage> | ( <calc-sum> )"
102
+ "syntax": "<number> | <dimension> | <percentage> | <calc-constant> | ( <calc-sum> )"
103
+ },
104
+ "calc-constant": {
105
+ "syntax": "e | pi | infinity | -infinity | NaN"
85
106
  },
86
107
  "cf-final-image": {
87
108
  "syntax": "<image> | <color>"
@@ -164,6 +185,9 @@
164
185
  "contrast()": {
165
186
  "syntax": "contrast( [ <number-percentage> ] )"
166
187
  },
188
+ "cos()": {
189
+ "syntax": "cos( <calc-sum> )"
190
+ },
167
191
  "counter": {
168
192
  "syntax": "<counter()> | <counters()>"
169
193
  },
@@ -233,6 +257,9 @@
233
257
  "env()": {
234
258
  "syntax": "env( <custom-ident> , <declaration-value>? )"
235
259
  },
260
+ "exp()": {
261
+ "syntax": "exp( <calc-sum> )"
262
+ },
236
263
  "explicit-track-list": {
237
264
  "syntax": "[ <line-names>? <track-size> ]+ <line-names>?"
238
265
  },
@@ -272,9 +299,6 @@
272
299
  "final-bg-layer": {
273
300
  "syntax": "<'background-color'> || <bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"
274
301
  },
275
- "fit-content()": {
276
- "syntax": "fit-content( [ <length> | <percentage> ] )"
277
- },
278
302
  "fixed-breadth": {
279
303
  "syntax": "<length-percentage>"
280
304
  },
@@ -335,6 +359,9 @@
335
359
  "hwb()": {
336
360
  "syntax": "hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )"
337
361
  },
362
+ "hypot()": {
363
+ "syntax": "hypot( <calc-sum># )"
364
+ },
338
365
  "id-selector": {
339
366
  "syntax": "<hash-token>"
340
367
  },
@@ -357,7 +384,7 @@
357
384
  "syntax": "ltr | rtl"
358
385
  },
359
386
  "inflexible-breadth": {
360
- "syntax": "<length> | <percentage> | min-content | max-content | auto"
387
+ "syntax": "<length-percentage> | min-content | max-content | auto"
361
388
  },
362
389
  "inset()": {
363
390
  "syntax": "inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )"
@@ -377,12 +404,18 @@
377
404
  "keyframe-selector": {
378
405
  "syntax": "from | to | <percentage>"
379
406
  },
407
+ "lab()": {
408
+ "syntax": "lab( [<percentage> | <number> | none] [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ / [<alpha-value> | none] ]? )"
409
+ },
380
410
  "layer()": {
381
411
  "syntax": "layer( <layer-name> )"
382
412
  },
383
413
  "layer-name": {
384
414
  "syntax": "<ident> [ '.' <ident> ]*"
385
415
  },
416
+ "lch()": {
417
+ "syntax": "lch( [<percentage> | <number> | none] [ <percentage> | <number> | none] [ <hue> | none] [ / [<alpha-value> | none] ]? )"
418
+ },
386
419
  "leader()": {
387
420
  "syntax": "leader( <leader-type> )"
388
421
  },
@@ -413,6 +446,9 @@
413
446
  "linear-gradient()": {
414
447
  "syntax": "linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"
415
448
  },
449
+ "log()": {
450
+ "syntax": "log( <calc-sum>, <calc-sum>? )"
451
+ },
416
452
  "mask-layer": {
417
453
  "syntax": "<mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || <geometry-box> || [ <geometry-box> | no-clip ] || <compositing-operator> || <masking-mode>"
418
454
  },
@@ -486,7 +522,10 @@
486
522
  "syntax": "min( <calc-sum># )"
487
523
  },
488
524
  "minmax()": {
489
- "syntax": "minmax( [ <length> | <percentage> | min-content | max-content | auto ] , [ <length> | <percentage> | <flex> | min-content | max-content | auto ] )"
525
+ "syntax": "minmax( [ <length-percentage> | min-content | max-content | auto ] , [ <length-percentage> | <flex> | min-content | max-content | auto ] )"
526
+ },
527
+ "mod()": {
528
+ "syntax": "mod( <calc-sum>, <calc-sum> )"
490
529
  },
491
530
  "name-repeat": {
492
531
  "syntax": "repeat( [ <integer [1,∞]> | auto-fill ], <line-names>+ )"
@@ -549,7 +588,7 @@
549
588
  "syntax": "paint( <ident>, <declaration-value>? )"
550
589
  },
551
590
  "perspective()": {
552
- "syntax": "perspective( <length> )"
591
+ "syntax": "perspective( [ <length [0,∞]> | none ] )"
553
592
  },
554
593
  "polygon()": {
555
594
  "syntax": "polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )"
@@ -557,6 +596,9 @@
557
596
  "position": {
558
597
  "syntax": "[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]"
559
598
  },
599
+ "pow()": {
600
+ "syntax": "pow( <calc-sum>, <calc-sum> )"
601
+ },
560
602
  "pseudo-class-selector": {
561
603
  "syntax": "':' <ident-token> | ':' <function-token> <any-value> ')'"
562
604
  },
@@ -572,6 +614,9 @@
572
614
  "radial-gradient()": {
573
615
  "syntax": "radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"
574
616
  },
617
+ "ratio": {
618
+ "syntax": "<number [0,∞]> [ / <number [0,∞]> ]?"
619
+ },
575
620
  "relative-selector": {
576
621
  "syntax": "<combinator>? <complex-selector>"
577
622
  },
@@ -581,6 +626,9 @@
581
626
  "relative-size": {
582
627
  "syntax": "larger | smaller"
583
628
  },
629
+ "rem()": {
630
+ "syntax": "rem( <calc-sum>, <calc-sum> )"
631
+ },
584
632
  "repeat-style": {
585
633
  "syntax": "repeat-x | repeat-y | [ repeat | space | round | no-repeat ]{1,2}"
586
634
  },
@@ -593,6 +641,9 @@
593
641
  "repeating-radial-gradient()": {
594
642
  "syntax": "repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"
595
643
  },
644
+ "reversed-counter-name": {
645
+ "syntax": "reversed( <counter-name> )"
646
+ },
596
647
  "rgb()": {
597
648
  "syntax": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )"
598
649
  },
@@ -614,23 +665,32 @@
614
665
  "rotateZ()": {
615
666
  "syntax": "rotateZ( [ <angle> | <zero> ] )"
616
667
  },
668
+ "round()": {
669
+ "syntax": "round( <rounding-strategy>?, <calc-sum>, <calc-sum> )"
670
+ },
671
+ "rounding-strategy": {
672
+ "syntax": "nearest | up | down | to-zero"
673
+ },
617
674
  "saturate()": {
618
675
  "syntax": "saturate( <number-percentage> )"
619
676
  },
620
677
  "scale()": {
621
- "syntax": "scale( <number> , <number>? )"
678
+ "syntax": "scale( [ <number> | <percentage> ]#{1,2} )"
622
679
  },
623
680
  "scale3d()": {
624
- "syntax": "scale3d( <number> , <number> , <number> )"
681
+ "syntax": "scale3d( [ <number> | <percentage> ]#{3} )"
625
682
  },
626
683
  "scaleX()": {
627
- "syntax": "scaleX( <number> )"
684
+ "syntax": "scaleX( [ <number> | <percentage> ] )"
628
685
  },
629
686
  "scaleY()": {
630
- "syntax": "scaleY( <number> )"
687
+ "syntax": "scaleY( [ <number> | <percentage> ] )"
631
688
  },
632
689
  "scaleZ()": {
633
- "syntax": "scaleZ( <number> )"
690
+ "syntax": "scaleZ( [ <number> | <percentage> ] )"
691
+ },
692
+ "scroller": {
693
+ "syntax": "root | nearest"
634
694
  },
635
695
  "self-position": {
636
696
  "syntax": "center | start | end | self-start | self-end | flex-start | flex-end"
@@ -638,6 +698,9 @@
638
698
  "shape-radius": {
639
699
  "syntax": "<length-percentage> | closest-side | farthest-side"
640
700
  },
701
+ "sign()": {
702
+ "syntax": "sign( <calc-sum> )"
703
+ },
641
704
  "skew()": {
642
705
  "syntax": "skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )"
643
706
  },
@@ -665,6 +728,9 @@
665
728
  "side-or-corner": {
666
729
  "syntax": "[ left | right ] || [ top | bottom ]"
667
730
  },
731
+ "sin()": {
732
+ "syntax": "sin( <calc-sum> )"
733
+ },
668
734
  "single-animation": {
669
735
  "syntax": "<time> || <easing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ]"
670
736
  },
@@ -681,7 +747,7 @@
681
747
  "syntax": "running | paused"
682
748
  },
683
749
  "single-animation-timeline": {
684
- "syntax": "auto | none | <timeline-name>"
750
+ "syntax": "auto | none | <timeline-name> | scroll(<axis>? <scroller>?)"
685
751
  },
686
752
  "single-transition": {
687
753
  "syntax": "[ none | <single-transition-property> ] || <time> || <easing-function> || <time>"
@@ -692,6 +758,9 @@
692
758
  "size": {
693
759
  "syntax": "closest-side | farthest-side | closest-corner | farthest-corner | <length> | <length-percentage>{2}"
694
760
  },
761
+ "sqrt()": {
762
+ "syntax": "sqrt( <calc-sum> )"
763
+ },
695
764
  "step-position": {
696
765
  "syntax": "jump-start | jump-end | jump-none | jump-both | start | end"
697
766
  },
@@ -719,6 +788,9 @@
719
788
  "symbol": {
720
789
  "syntax": "<string> | <image> | <custom-ident>"
721
790
  },
791
+ "tan()": {
792
+ "syntax": "tan( <calc-sum> )"
793
+ },
722
794
  "target": {
723
795
  "syntax": "<target-counter()> | <target-counters()> | <target-text()>"
724
796
  },
@@ -750,7 +822,7 @@
750
822
  "syntax": "repeat( [ <integer [1,∞]> ] , [ <line-names>? <track-size> ]+ <line-names>? )"
751
823
  },
752
824
  "track-size": {
753
- "syntax": "<track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( [ <length> | <percentage> ] )"
825
+ "syntax": "<track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( <length-percentage> )"
754
826
  },
755
827
  "transform-function": {
756
828
  "syntax": "<matrix()> | <translate()> | <translateX()> | <translateY()> | <scale()> | <scaleX()> | <scaleY()> | <rotate()> | <skew()> | <skewX()> | <skewY()> | <matrix3d()> | <translate3d()> | <translateZ()> | <scale3d()> | <scaleZ()> | <rotate3d()> | <rotateX()> | <rotateY()> | <rotateZ()> | <perspective()>"
package/l10n/css.json CHANGED
@@ -433,6 +433,9 @@
433
433
  "en-US": "as specified, with &lt;length&gt;s made absolute, and normal computing to zero except on multi-column elements",
434
434
  "ja": "指定通りで、 &lt;length&gt; は絶対長になり、 normal の計算値は段組み要素を除き 0 になる"
435
435
  },
436
+ "asSpecifiedWithLengthValuesComputed": {
437
+ "en-US": "as specified, with &lt;length&gt;s values computed"
438
+ },
436
439
  "asSpecifiedWithVarsSubstituted": {
437
440
  "de": "wie angegeben, wobei Variablen ersetzt werden",
438
441
  "en-US": "as specified with variables substituted",
@@ -655,6 +658,9 @@
655
658
  "ja": "この一括指定のそれぞれのプロパティとして ({{cssxref(\"unicode-bidi\")}} と {{cssxref(\"direction\")}}) を除いたすべてのプロパティ",
656
659
  "ru": "как у каждого из подсвойств этого свойства (все свойства, кроме {{cssxref(\"unicode-bidi\")}} и {{cssxref(\"direction\")}})"
657
660
  },
661
+ "elementsForWhichSizeContainmentCanApply": {
662
+ "en-US": "elements for which size containment can apply"
663
+ },
658
664
  "elementsWithDisplayBoxOrInlineBox": {
659
665
  "de": "Elemente mit einem CSS {{cssxref(\"display\")}} Wert von <code>box</code> oder <code>inline-box</code>",
660
666
  "en-US": "elements with a CSS {{cssxref(\"display\")}} value of <code>box</code> or <code>inline-box</code>",
@@ -1120,13 +1126,6 @@
1120
1126
  "ja": "1 つから 4 つのパーセント値 (指定通り) または絶対的な長さ。指定されていれば続けてキーワード <code>fill</code>",
1121
1127
  "ru": "одно к четырём процентам (как указано) или абсолютной длине(ам), плюс ключевое слово <code>fill</code>, если указано"
1122
1128
  },
1123
- "optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal": {
1124
- "de": "ein optimaler, minimaler und maximaler Wert, jeder bestehend aus entweder einer absoluten Länge, einem Prozentwert oder dem Schlüsselwort <code>normal</code>",
1125
- "en-US": "an optimum, minimum, and maximum value, each consisting of either an absolute length, a percentage, or the keyword <code>normal</code>",
1126
- "fr": "trois valeurs, optimale, minimale et maximale, chacune consitant en une longueur absolue, un pourcentage ou le mot-clé <code>normal</code>",
1127
- "ja": "それぞれ絶対指定の length、percentage、キーワード <code>normal</code>のいずれかである、最適値、最小値、最大値",
1128
- "ru": "оптимальное, минимальное и максимальное значения, каждое из которых абсолютная длина, проценты или ключевое слово <code>normal</code>"
1129
- },
1130
1129
  "optimumValueOfAbsoluteLengthOrNormal": {
1131
1130
  "de": "ein optimaler Wert, der entweder aus einer absoluten Länge oder dem Schlüsselwort <code>normal</code> besteht",
1132
1131
  "en-US": "an optimum value consisting of either an absolute length or the keyword <code>normal</code>",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdn-data",
3
- "version": "2.0.28",
3
+ "version": "2.0.30",
4
4
  "description": "Open Web data by the Mozilla Developer Network",
5
5
  "main": "index.js",
6
6
  "files": [