@stylexjs/shared 0.2.0-beta.9 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -3
- package/lib/common-types.d.ts +49 -0
- package/lib/common-types.js.flow +64 -0
- package/lib/convert-to-className.d.ts +16 -0
- package/lib/convert-to-className.js +17 -26
- package/lib/convert-to-className.js.flow +23 -0
- package/lib/generate-css-rule.d.ts +17 -0
- package/lib/generate-css-rule.js +6 -17
- package/lib/generate-css-rule.js.flow +17 -0
- package/lib/hash.d.ts +11 -0
- package/lib/hash.js +3 -27
- package/lib/hash.js.flow +10 -0
- package/lib/index.d.ts +42 -85
- package/lib/index.js +21 -29
- package/lib/index.js.flow +57 -3
- package/lib/messages.d.ts +41 -0
- package/lib/messages.js +33 -53
- package/lib/messages.js.flow +44 -0
- package/lib/physical-rtl/generate-ltr.d.ts +11 -0
- package/lib/physical-rtl/generate-ltr.js +18 -46
- package/lib/physical-rtl/generate-ltr.js.flow +12 -0
- package/lib/physical-rtl/generate-rtl.d.ts +13 -0
- package/lib/physical-rtl/generate-rtl.js +18 -50
- package/lib/physical-rtl/generate-rtl.js.flow +12 -0
- package/lib/preprocess-rules/PreRule.d.ts +52 -0
- package/lib/preprocess-rules/PreRule.js +87 -0
- package/lib/preprocess-rules/PreRule.js.flow +64 -0
- package/lib/preprocess-rules/application-order.d.ts +290 -0
- package/lib/preprocess-rules/application-order.js +60 -133
- package/lib/preprocess-rules/application-order.js.flow +241 -0
- package/lib/preprocess-rules/basic-validation.d.ts +13 -0
- package/lib/preprocess-rules/basic-validation.js +83 -0
- package/lib/preprocess-rules/basic-validation.js.flow +13 -0
- package/lib/preprocess-rules/flatten-raw-style-obj.d.ts +25 -0
- package/lib/preprocess-rules/flatten-raw-style-obj.js +120 -0
- package/lib/preprocess-rules/flatten-raw-style-obj.js.flow +27 -0
- package/lib/preprocess-rules/index.d.ts +18 -0
- package/lib/preprocess-rules/index.js +0 -9
- package/lib/preprocess-rules/index.js.flow +19 -0
- package/lib/preprocess-rules/legacy-expand-shorthands.d.ts +200 -0
- package/lib/preprocess-rules/legacy-expand-shorthands.js +90 -123
- package/lib/preprocess-rules/legacy-expand-shorthands.js.flow +179 -0
- package/lib/preprocess-rules/property-specificity.d.ts +89 -0
- package/lib/preprocess-rules/property-specificity.js +46 -74
- package/lib/preprocess-rules/property-specificity.js.flow +98 -0
- package/lib/properties/CSS Animations.json +445 -0
- package/lib/properties/CSS Backgrounds and Borders.json +1085 -0
- package/lib/properties/CSS Basic User Interface.json +365 -0
- package/lib/properties/CSS Box Alignment.json +245 -0
- package/lib/properties/CSS Box Model.json +501 -0
- package/lib/properties/CSS Color.json +100 -0
- package/lib/properties/CSS Columns.json +185 -0
- package/lib/properties/CSS Containment.json +203 -0
- package/lib/properties/CSS Counter Styles.json +56 -0
- package/lib/properties/CSS Display.json +20 -0
- package/lib/properties/CSS Flexible Box Layout.json +167 -0
- package/lib/properties/CSS Fonts.json +684 -0
- package/lib/properties/CSS Fragmentation.json +110 -0
- package/lib/properties/CSS Generated Content.json +38 -0
- package/lib/properties/CSS Grid Layout.json +500 -0
- package/lib/properties/CSS Images.json +91 -0
- package/lib/properties/CSS Inline.json +38 -0
- package/lib/properties/CSS Lists and Counters.json +86 -0
- package/lib/properties/CSS Logical Properties.json +1086 -0
- package/lib/properties/CSS Masking.json +399 -0
- package/lib/properties/CSS Miscellaneous.json +38 -0
- package/lib/properties/CSS Motion Path.json +132 -0
- package/lib/properties/CSS Overflow.json +216 -0
- package/lib/properties/CSS Pages.json +83 -0
- package/lib/properties/CSS Positioning.json +166 -0
- package/lib/properties/CSS Ruby.json +55 -0
- package/lib/properties/CSS Scroll Anchoring.json +19 -0
- package/lib/properties/CSS Scroll Snap.json +604 -0
- package/lib/properties/CSS Scrollbars.json +38 -0
- package/lib/properties/CSS Shapes.json +56 -0
- package/lib/properties/CSS Speech.json +20 -0
- package/lib/properties/CSS Table.json +115 -0
- package/lib/properties/CSS Text Decoration.json +312 -0
- package/lib/properties/CSS Text.json +415 -0
- package/lib/properties/CSS Transforms.json +188 -0
- package/lib/properties/CSS Transitions.json +122 -0
- package/lib/properties/CSS Variables.json +20 -0
- package/lib/properties/CSS View Transitions.json +20 -0
- package/lib/properties/CSS Will Change.json +20 -0
- package/lib/properties/CSS Writing Modes.json +92 -0
- package/lib/properties/Compositing and Blending.json +62 -0
- package/lib/properties/Filter Effects.json +38 -0
- package/lib/properties/MathML.json +56 -0
- package/lib/properties/Microsoft Extensions.json +885 -0
- package/lib/properties/Mozilla Extensions.json +607 -0
- package/lib/properties/Pointer Events.json +20 -0
- package/lib/properties/WebKit Extensions.json +707 -0
- package/lib/properties.json +10122 -0
- package/lib/stylex-create-theme.d.ts +26 -0
- package/lib/stylex-create-theme.js +67 -0
- package/lib/stylex-create-theme.js.flow +19 -0
- package/lib/stylex-create.d.ts +23 -0
- package/lib/stylex-create.js +30 -146
- package/lib/stylex-create.js.flow +30 -0
- package/lib/stylex-define-vars.d.ts +29 -0
- package/lib/stylex-define-vars.js +73 -0
- package/lib/stylex-define-vars.js.flow +26 -0
- package/lib/stylex-first-that-works.d.ts +13 -0
- package/lib/stylex-first-that-works.js +0 -10
- package/lib/stylex-first-that-works.js.flow +12 -0
- package/lib/stylex-include.d.ts +18 -0
- package/lib/stylex-include.js +2 -12
- package/lib/stylex-include.js.flow +20 -0
- package/lib/stylex-keyframes.d.ts +17 -0
- package/lib/stylex-keyframes.js +6 -26
- package/lib/stylex-keyframes.js.flow +20 -0
- package/lib/transform-value.d.ts +22 -0
- package/lib/transform-value.js +9 -23
- package/lib/transform-value.js.flow +25 -0
- package/lib/types/index.d.ts +205 -0
- package/lib/types/index.js +191 -0
- package/lib/types/index.js.flow +241 -0
- package/lib/utils/Rule.d.ts +58 -0
- package/lib/utils/Rule.js +0 -21
- package/lib/utils/Rule.js.flow +64 -0
- package/lib/utils/dashify.d.ts +11 -0
- package/lib/utils/dashify.js +0 -8
- package/lib/utils/dashify.js.flow +10 -0
- package/lib/utils/default-options.d.ts +11 -0
- package/lib/utils/default-options.js +13 -0
- package/lib/utils/default-options.js.flow +25 -0
- package/lib/utils/file-based-identifier.d.ts +15 -0
- package/lib/utils/file-based-identifier.js +14 -0
- package/lib/utils/file-based-identifier.js.flow +14 -0
- package/lib/utils/genCSSRule.d.ts +15 -0
- package/lib/utils/genCSSRule.js +9 -18
- package/lib/utils/genCSSRule.js.flow +15 -0
- package/lib/utils/normalize-value.d.ts +16 -0
- package/lib/utils/normalize-value.js +8 -15
- package/lib/utils/normalize-value.js.flow +16 -0
- package/lib/utils/normalizers/convert-camel-case-transition-props.d.ts +14 -0
- package/lib/utils/normalizers/convert-camel-case-transition-props.js +23 -0
- package/lib/utils/normalizers/convert-camel-case-transition-props.js.flow +13 -0
- package/lib/utils/normalizers/convert-camel-case-values.d.ts +14 -0
- package/lib/utils/normalizers/convert-camel-case-values.js +23 -0
- package/lib/utils/normalizers/convert-camel-case-values.js.flow +13 -0
- package/lib/utils/normalizers/detect-unclosed-fns.d.ts +17 -0
- package/lib/utils/normalizers/detect-unclosed-fns.js +2 -14
- package/lib/utils/normalizers/detect-unclosed-fns.js.flow +16 -0
- package/lib/utils/normalizers/font-size-px-to-rem.d.ts +19 -0
- package/lib/utils/normalizers/font-size-px-to-rem.js +9 -19
- package/lib/utils/normalizers/font-size-px-to-rem.js.flow +18 -0
- package/lib/utils/normalizers/leading-zero.d.ts +17 -0
- package/lib/utils/normalizers/leading-zero.js +0 -12
- package/lib/utils/normalizers/leading-zero.js.flow +16 -0
- package/lib/utils/normalizers/quotes.d.ts +18 -0
- package/lib/utils/normalizers/quotes.js +0 -13
- package/lib/utils/normalizers/quotes.js.flow +17 -0
- package/lib/utils/normalizers/timings.d.ts +18 -0
- package/lib/utils/normalizers/timings.js +0 -14
- package/lib/utils/normalizers/timings.js.flow +17 -0
- package/lib/utils/normalizers/whitespace.d.ts +19 -0
- package/lib/utils/normalizers/whitespace.js +0 -15
- package/lib/utils/normalizers/whitespace.js.flow +18 -0
- package/lib/utils/normalizers/zero-dimensions.d.ts +19 -0
- package/lib/utils/normalizers/zero-dimensions.js +0 -15
- package/lib/utils/normalizers/zero-dimensions.js.flow +18 -0
- package/lib/utils/object-utils.d.ts +66 -0
- package/lib/utils/object-utils.js +21 -13
- package/lib/utils/object-utils.js.flow +77 -0
- package/lib/utils/property-priorities.d.ts +11 -0
- package/lib/utils/property-priorities.js +516 -101
- package/lib/utils/property-priorities.js.flow +10 -0
- package/lib/utils/split-css-value.d.ts +14 -0
- package/lib/utils/split-css-value.js +0 -14
- package/lib/utils/split-css-value.js.flow +15 -0
- package/lib/validate.d.ts +12 -0
- package/lib/validate.js +1 -10
- package/lib/validate.js.flow +12 -0
- package/package.json +4 -5
- package/lib/expand-shorthands.d.ts +0 -5
- package/lib/expand-shorthands.js +0 -330
- package/lib/namespace-transforms/__tests__/preflatten.test.js +0 -120
- package/lib/namespace-transforms/preflatten.js +0 -89
- package/lib/preprocess-rules/expand-shorthands.js +0 -156
- package/lib/preprocess-rules/null-out-longhand.js +0 -310
- package/lib/preprocess-rules/react-native-web.js +0 -142
- package/lib/stylex-defaultValue.js +0 -397
@@ -0,0 +1,885 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"syntax": "false | true",
|
4
|
+
"media": "visual",
|
5
|
+
"inherited": false,
|
6
|
+
"animationType": "discrete",
|
7
|
+
"percentages": "no",
|
8
|
+
"groups": [
|
9
|
+
"Microsoft Extensions"
|
10
|
+
],
|
11
|
+
"initial": "false",
|
12
|
+
"appliesto": "allElements",
|
13
|
+
"computed": "asSpecified",
|
14
|
+
"order": "uniqueOrder",
|
15
|
+
"status": "nonstandard",
|
16
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-accelerator",
|
17
|
+
"property": "-ms-accelerator",
|
18
|
+
"group": "Microsoft Extensions"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"syntax": "tb | rl | bt | lr",
|
22
|
+
"media": "visual",
|
23
|
+
"inherited": false,
|
24
|
+
"animationType": "discrete",
|
25
|
+
"percentages": "no",
|
26
|
+
"groups": [
|
27
|
+
"Microsoft Extensions"
|
28
|
+
],
|
29
|
+
"initial": "tb",
|
30
|
+
"appliesto": "allElements",
|
31
|
+
"computed": "asSpecified",
|
32
|
+
"order": "uniqueOrder",
|
33
|
+
"status": "nonstandard",
|
34
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-block-progression",
|
35
|
+
"property": "-ms-block-progression",
|
36
|
+
"group": "Microsoft Extensions"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"syntax": "none | chained",
|
40
|
+
"media": "interactive",
|
41
|
+
"inherited": false,
|
42
|
+
"animationType": "discrete",
|
43
|
+
"percentages": "no",
|
44
|
+
"groups": [
|
45
|
+
"Microsoft Extensions"
|
46
|
+
],
|
47
|
+
"initial": "none",
|
48
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
49
|
+
"computed": "asSpecified",
|
50
|
+
"order": "uniqueOrder",
|
51
|
+
"status": "nonstandard",
|
52
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-chaining",
|
53
|
+
"property": "-ms-content-zoom-chaining",
|
54
|
+
"group": "Microsoft Extensions"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"syntax": "none | zoom",
|
58
|
+
"media": "interactive",
|
59
|
+
"inherited": false,
|
60
|
+
"animationType": "discrete",
|
61
|
+
"percentages": "no",
|
62
|
+
"groups": [
|
63
|
+
"Microsoft Extensions"
|
64
|
+
],
|
65
|
+
"initial": "zoomForTheTopLevelNoneForTheRest",
|
66
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
67
|
+
"computed": "asSpecified",
|
68
|
+
"order": "uniqueOrder",
|
69
|
+
"status": "nonstandard",
|
70
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zooming",
|
71
|
+
"property": "-ms-content-zooming",
|
72
|
+
"group": "Microsoft Extensions"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"syntax": "<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>",
|
76
|
+
"media": "interactive",
|
77
|
+
"inherited": false,
|
78
|
+
"animationType": "discrete",
|
79
|
+
"percentages": [
|
80
|
+
"-ms-content-zoom-limit-max",
|
81
|
+
"-ms-content-zoom-limit-min"
|
82
|
+
],
|
83
|
+
"groups": [
|
84
|
+
"Microsoft Extensions"
|
85
|
+
],
|
86
|
+
"initial": [
|
87
|
+
"-ms-content-zoom-limit-max",
|
88
|
+
"-ms-content-zoom-limit-min"
|
89
|
+
],
|
90
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
91
|
+
"computed": [
|
92
|
+
"-ms-content-zoom-limit-max",
|
93
|
+
"-ms-content-zoom-limit-min"
|
94
|
+
],
|
95
|
+
"order": "uniqueOrder",
|
96
|
+
"status": "nonstandard",
|
97
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit",
|
98
|
+
"property": "-ms-content-zoom-limit",
|
99
|
+
"group": "Microsoft Extensions"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"syntax": "<percentage>",
|
103
|
+
"media": "interactive",
|
104
|
+
"inherited": false,
|
105
|
+
"animationType": "discrete",
|
106
|
+
"percentages": "maxZoomFactor",
|
107
|
+
"groups": [
|
108
|
+
"Microsoft Extensions"
|
109
|
+
],
|
110
|
+
"initial": "400%",
|
111
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
112
|
+
"computed": "asSpecified",
|
113
|
+
"order": "uniqueOrder",
|
114
|
+
"status": "nonstandard",
|
115
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-max",
|
116
|
+
"property": "-ms-content-zoom-limit-max",
|
117
|
+
"group": "Microsoft Extensions"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"syntax": "<percentage>",
|
121
|
+
"media": "interactive",
|
122
|
+
"inherited": false,
|
123
|
+
"animationType": "discrete",
|
124
|
+
"percentages": "minZoomFactor",
|
125
|
+
"groups": [
|
126
|
+
"Microsoft Extensions"
|
127
|
+
],
|
128
|
+
"initial": "100%",
|
129
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
130
|
+
"computed": "asSpecified",
|
131
|
+
"order": "uniqueOrder",
|
132
|
+
"status": "nonstandard",
|
133
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-min",
|
134
|
+
"property": "-ms-content-zoom-limit-min",
|
135
|
+
"group": "Microsoft Extensions"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"syntax": "<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>",
|
139
|
+
"media": "interactive",
|
140
|
+
"inherited": false,
|
141
|
+
"animationType": "discrete",
|
142
|
+
"percentages": "no",
|
143
|
+
"groups": [
|
144
|
+
"Microsoft Extensions"
|
145
|
+
],
|
146
|
+
"initial": [
|
147
|
+
"-ms-content-zoom-snap-type",
|
148
|
+
"-ms-content-zoom-snap-points"
|
149
|
+
],
|
150
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
151
|
+
"computed": [
|
152
|
+
"-ms-content-zoom-snap-type",
|
153
|
+
"-ms-content-zoom-snap-points"
|
154
|
+
],
|
155
|
+
"order": "uniqueOrder",
|
156
|
+
"status": "nonstandard",
|
157
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap",
|
158
|
+
"property": "-ms-content-zoom-snap",
|
159
|
+
"group": "Microsoft Extensions"
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"syntax": "snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )",
|
163
|
+
"media": "interactive",
|
164
|
+
"inherited": false,
|
165
|
+
"animationType": "discrete",
|
166
|
+
"percentages": "no",
|
167
|
+
"groups": [
|
168
|
+
"Microsoft Extensions"
|
169
|
+
],
|
170
|
+
"initial": "snapInterval(0%, 100%)",
|
171
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
172
|
+
"computed": "asSpecified",
|
173
|
+
"order": "uniqueOrder",
|
174
|
+
"status": "nonstandard",
|
175
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-points",
|
176
|
+
"property": "-ms-content-zoom-snap-points",
|
177
|
+
"group": "Microsoft Extensions"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"syntax": "none | proximity | mandatory",
|
181
|
+
"media": "interactive",
|
182
|
+
"inherited": false,
|
183
|
+
"animationType": "discrete",
|
184
|
+
"percentages": "no",
|
185
|
+
"groups": [
|
186
|
+
"Microsoft Extensions"
|
187
|
+
],
|
188
|
+
"initial": "none",
|
189
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
190
|
+
"computed": "asSpecified",
|
191
|
+
"order": "uniqueOrder",
|
192
|
+
"status": "nonstandard",
|
193
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-type",
|
194
|
+
"property": "-ms-content-zoom-snap-type",
|
195
|
+
"group": "Microsoft Extensions"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"syntax": "<string>",
|
199
|
+
"media": "visual",
|
200
|
+
"inherited": false,
|
201
|
+
"animationType": "discrete",
|
202
|
+
"percentages": "no",
|
203
|
+
"groups": [
|
204
|
+
"Microsoft Extensions"
|
205
|
+
],
|
206
|
+
"initial": "\"\"",
|
207
|
+
"appliesto": "allElements",
|
208
|
+
"computed": "asSpecified",
|
209
|
+
"order": "uniqueOrder",
|
210
|
+
"status": "nonstandard",
|
211
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-filter",
|
212
|
+
"property": "-ms-filter",
|
213
|
+
"group": "Microsoft Extensions"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"syntax": "[ none | <custom-ident> ]#",
|
217
|
+
"media": "visual",
|
218
|
+
"inherited": false,
|
219
|
+
"animationType": "discrete",
|
220
|
+
"percentages": "no",
|
221
|
+
"groups": [
|
222
|
+
"Microsoft Extensions"
|
223
|
+
],
|
224
|
+
"initial": "none",
|
225
|
+
"appliesto": "nonReplacedElements",
|
226
|
+
"computed": "asSpecified",
|
227
|
+
"order": "uniqueOrder",
|
228
|
+
"status": "nonstandard",
|
229
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-flow-from",
|
230
|
+
"property": "-ms-flow-from",
|
231
|
+
"group": "Microsoft Extensions"
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"syntax": "[ none | <custom-ident> ]#",
|
235
|
+
"media": "visual",
|
236
|
+
"inherited": false,
|
237
|
+
"animationType": "discrete",
|
238
|
+
"percentages": "no",
|
239
|
+
"groups": [
|
240
|
+
"Microsoft Extensions"
|
241
|
+
],
|
242
|
+
"initial": "none",
|
243
|
+
"appliesto": "iframeElements",
|
244
|
+
"computed": "asSpecified",
|
245
|
+
"order": "uniqueOrder",
|
246
|
+
"status": "nonstandard",
|
247
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-flow-into",
|
248
|
+
"property": "-ms-flow-into",
|
249
|
+
"group": "Microsoft Extensions"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"syntax": "auto | none",
|
253
|
+
"media": "visual",
|
254
|
+
"inherited": true,
|
255
|
+
"animationType": "discrete",
|
256
|
+
"percentages": "no",
|
257
|
+
"groups": [
|
258
|
+
"Microsoft Extensions"
|
259
|
+
],
|
260
|
+
"initial": "auto",
|
261
|
+
"appliesto": "allElements",
|
262
|
+
"computed": "asSpecified",
|
263
|
+
"order": "uniqueOrder",
|
264
|
+
"status": "nonstandard",
|
265
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-high-contrast-adjust",
|
266
|
+
"property": "-ms-high-contrast-adjust",
|
267
|
+
"group": "Microsoft Extensions"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"syntax": "auto | <integer>{1,3}",
|
271
|
+
"media": "visual",
|
272
|
+
"inherited": true,
|
273
|
+
"animationType": "discrete",
|
274
|
+
"percentages": "no",
|
275
|
+
"groups": [
|
276
|
+
"Microsoft Extensions"
|
277
|
+
],
|
278
|
+
"initial": "auto",
|
279
|
+
"appliesto": "allElements",
|
280
|
+
"computed": "asSpecified",
|
281
|
+
"order": "uniqueOrder",
|
282
|
+
"status": "nonstandard",
|
283
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-chars",
|
284
|
+
"property": "-ms-hyphenate-limit-chars",
|
285
|
+
"group": "Microsoft Extensions"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"syntax": "no-limit | <integer>",
|
289
|
+
"media": "visual",
|
290
|
+
"inherited": true,
|
291
|
+
"animationType": "discrete",
|
292
|
+
"percentages": "no",
|
293
|
+
"groups": [
|
294
|
+
"Microsoft Extensions"
|
295
|
+
],
|
296
|
+
"initial": "no-limit",
|
297
|
+
"appliesto": "blockContainerElements",
|
298
|
+
"computed": "asSpecified",
|
299
|
+
"order": "uniqueOrder",
|
300
|
+
"status": "nonstandard",
|
301
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-lines",
|
302
|
+
"property": "-ms-hyphenate-limit-lines",
|
303
|
+
"group": "Microsoft Extensions"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"syntax": "<percentage> | <length>",
|
307
|
+
"media": "visual",
|
308
|
+
"inherited": true,
|
309
|
+
"animationType": "discrete",
|
310
|
+
"percentages": "referToLineBoxWidth",
|
311
|
+
"groups": [
|
312
|
+
"Microsoft Extensions"
|
313
|
+
],
|
314
|
+
"initial": "0",
|
315
|
+
"appliesto": "blockContainerElements",
|
316
|
+
"computed": "asSpecified",
|
317
|
+
"order": "uniqueOrder",
|
318
|
+
"status": "nonstandard",
|
319
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-zone",
|
320
|
+
"property": "-ms-hyphenate-limit-zone",
|
321
|
+
"group": "Microsoft Extensions"
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"syntax": "auto | after",
|
325
|
+
"media": "visual",
|
326
|
+
"inherited": false,
|
327
|
+
"animationType": "discrete",
|
328
|
+
"percentages": "no",
|
329
|
+
"groups": [
|
330
|
+
"Microsoft Extensions"
|
331
|
+
],
|
332
|
+
"initial": "auto",
|
333
|
+
"appliesto": "allElements",
|
334
|
+
"computed": "asSpecified",
|
335
|
+
"order": "uniqueOrder",
|
336
|
+
"status": "nonstandard",
|
337
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-ime-align",
|
338
|
+
"property": "-ms-ime-align",
|
339
|
+
"group": "Microsoft Extensions"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"syntax": "auto | none | scrollbar | -ms-autohiding-scrollbar",
|
343
|
+
"media": "interactive",
|
344
|
+
"inherited": true,
|
345
|
+
"animationType": "discrete",
|
346
|
+
"percentages": "no",
|
347
|
+
"groups": [
|
348
|
+
"Microsoft Extensions"
|
349
|
+
],
|
350
|
+
"initial": "auto",
|
351
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
352
|
+
"computed": "asSpecified",
|
353
|
+
"order": "uniqueOrder",
|
354
|
+
"status": "nonstandard",
|
355
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-overflow-style",
|
356
|
+
"property": "-ms-overflow-style",
|
357
|
+
"group": "Microsoft Extensions"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"syntax": "<color>",
|
361
|
+
"media": "visual",
|
362
|
+
"inherited": true,
|
363
|
+
"animationType": "discrete",
|
364
|
+
"percentages": "no",
|
365
|
+
"groups": [
|
366
|
+
"Microsoft Extensions"
|
367
|
+
],
|
368
|
+
"initial": "dependsOnUserAgent",
|
369
|
+
"appliesto": "allElements",
|
370
|
+
"computed": "asSpecified",
|
371
|
+
"order": "uniqueOrder",
|
372
|
+
"status": "nonstandard",
|
373
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-3dlight-color",
|
374
|
+
"property": "-ms-scrollbar-3dlight-color",
|
375
|
+
"group": "Microsoft Extensions"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"syntax": "<color>",
|
379
|
+
"media": "visual",
|
380
|
+
"inherited": true,
|
381
|
+
"animationType": "discrete",
|
382
|
+
"percentages": "no",
|
383
|
+
"groups": [
|
384
|
+
"Microsoft Extensions"
|
385
|
+
],
|
386
|
+
"initial": "ButtonText",
|
387
|
+
"appliesto": "allElements",
|
388
|
+
"computed": "asSpecified",
|
389
|
+
"order": "uniqueOrder",
|
390
|
+
"status": "nonstandard",
|
391
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-arrow-color",
|
392
|
+
"property": "-ms-scrollbar-arrow-color",
|
393
|
+
"group": "Microsoft Extensions"
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"syntax": "<color>",
|
397
|
+
"media": "visual",
|
398
|
+
"inherited": true,
|
399
|
+
"animationType": "discrete",
|
400
|
+
"percentages": "no",
|
401
|
+
"groups": [
|
402
|
+
"Microsoft Extensions"
|
403
|
+
],
|
404
|
+
"initial": "dependsOnUserAgent",
|
405
|
+
"appliesto": "allElements",
|
406
|
+
"computed": "asSpecified",
|
407
|
+
"order": "uniqueOrder",
|
408
|
+
"status": "nonstandard",
|
409
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-base-color",
|
410
|
+
"property": "-ms-scrollbar-base-color",
|
411
|
+
"group": "Microsoft Extensions"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"syntax": "<color>",
|
415
|
+
"media": "visual",
|
416
|
+
"inherited": true,
|
417
|
+
"animationType": "discrete",
|
418
|
+
"percentages": "no",
|
419
|
+
"groups": [
|
420
|
+
"Microsoft Extensions"
|
421
|
+
],
|
422
|
+
"initial": "ThreeDDarkShadow",
|
423
|
+
"appliesto": "allElements",
|
424
|
+
"computed": "asSpecified",
|
425
|
+
"order": "uniqueOrder",
|
426
|
+
"status": "nonstandard",
|
427
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-darkshadow-color",
|
428
|
+
"property": "-ms-scrollbar-darkshadow-color",
|
429
|
+
"group": "Microsoft Extensions"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"syntax": "<color>",
|
433
|
+
"media": "visual",
|
434
|
+
"inherited": true,
|
435
|
+
"animationType": "discrete",
|
436
|
+
"percentages": "no",
|
437
|
+
"groups": [
|
438
|
+
"Microsoft Extensions"
|
439
|
+
],
|
440
|
+
"initial": "ThreeDFace",
|
441
|
+
"appliesto": "allElements",
|
442
|
+
"computed": "asSpecified",
|
443
|
+
"order": "uniqueOrder",
|
444
|
+
"status": "nonstandard",
|
445
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-face-color",
|
446
|
+
"property": "-ms-scrollbar-face-color",
|
447
|
+
"group": "Microsoft Extensions"
|
448
|
+
},
|
449
|
+
{
|
450
|
+
"syntax": "<color>",
|
451
|
+
"media": "visual",
|
452
|
+
"inherited": true,
|
453
|
+
"animationType": "discrete",
|
454
|
+
"percentages": "no",
|
455
|
+
"groups": [
|
456
|
+
"Microsoft Extensions"
|
457
|
+
],
|
458
|
+
"initial": "ThreeDHighlight",
|
459
|
+
"appliesto": "allElements",
|
460
|
+
"computed": "asSpecified",
|
461
|
+
"order": "uniqueOrder",
|
462
|
+
"status": "nonstandard",
|
463
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-highlight-color",
|
464
|
+
"property": "-ms-scrollbar-highlight-color",
|
465
|
+
"group": "Microsoft Extensions"
|
466
|
+
},
|
467
|
+
{
|
468
|
+
"syntax": "<color>",
|
469
|
+
"media": "visual",
|
470
|
+
"inherited": true,
|
471
|
+
"animationType": "discrete",
|
472
|
+
"percentages": "no",
|
473
|
+
"groups": [
|
474
|
+
"Microsoft Extensions"
|
475
|
+
],
|
476
|
+
"initial": "ThreeDDarkShadow",
|
477
|
+
"appliesto": "allElements",
|
478
|
+
"computed": "asSpecified",
|
479
|
+
"order": "uniqueOrder",
|
480
|
+
"status": "nonstandard",
|
481
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-shadow-color",
|
482
|
+
"property": "-ms-scrollbar-shadow-color",
|
483
|
+
"group": "Microsoft Extensions"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"syntax": "<color>",
|
487
|
+
"media": "visual",
|
488
|
+
"inherited": true,
|
489
|
+
"animationType": "discrete",
|
490
|
+
"percentages": "no",
|
491
|
+
"groups": [
|
492
|
+
"Microsoft Extensions"
|
493
|
+
],
|
494
|
+
"initial": "Scrollbar",
|
495
|
+
"appliesto": "allElements",
|
496
|
+
"computed": "asSpecified",
|
497
|
+
"order": "uniqueOrder",
|
498
|
+
"status": "nonstandard",
|
499
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-track-color",
|
500
|
+
"property": "-ms-scrollbar-track-color",
|
501
|
+
"group": "Microsoft Extensions"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"syntax": "chained | none",
|
505
|
+
"media": "interactive",
|
506
|
+
"inherited": false,
|
507
|
+
"animationType": "discrete",
|
508
|
+
"percentages": "no",
|
509
|
+
"groups": [
|
510
|
+
"Microsoft Extensions"
|
511
|
+
],
|
512
|
+
"initial": "chained",
|
513
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
514
|
+
"computed": "asSpecified",
|
515
|
+
"order": "uniqueOrder",
|
516
|
+
"status": "nonstandard",
|
517
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-chaining",
|
518
|
+
"property": "-ms-scroll-chaining",
|
519
|
+
"group": "Microsoft Extensions"
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"syntax": "<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>",
|
523
|
+
"media": "interactive",
|
524
|
+
"inherited": false,
|
525
|
+
"animationType": "discrete",
|
526
|
+
"percentages": "no",
|
527
|
+
"groups": [
|
528
|
+
"Microsoft Extensions"
|
529
|
+
],
|
530
|
+
"initial": [
|
531
|
+
"-ms-scroll-limit-x-min",
|
532
|
+
"-ms-scroll-limit-y-min",
|
533
|
+
"-ms-scroll-limit-x-max",
|
534
|
+
"-ms-scroll-limit-y-max"
|
535
|
+
],
|
536
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
537
|
+
"computed": [
|
538
|
+
"-ms-scroll-limit-x-min",
|
539
|
+
"-ms-scroll-limit-y-min",
|
540
|
+
"-ms-scroll-limit-x-max",
|
541
|
+
"-ms-scroll-limit-y-max"
|
542
|
+
],
|
543
|
+
"order": "uniqueOrder",
|
544
|
+
"status": "nonstandard",
|
545
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit",
|
546
|
+
"property": "-ms-scroll-limit",
|
547
|
+
"group": "Microsoft Extensions"
|
548
|
+
},
|
549
|
+
{
|
550
|
+
"syntax": "auto | <length>",
|
551
|
+
"media": "interactive",
|
552
|
+
"inherited": false,
|
553
|
+
"animationType": "discrete",
|
554
|
+
"percentages": "no",
|
555
|
+
"groups": [
|
556
|
+
"Microsoft Extensions"
|
557
|
+
],
|
558
|
+
"initial": "auto",
|
559
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
560
|
+
"computed": "asSpecified",
|
561
|
+
"order": "uniqueOrder",
|
562
|
+
"status": "nonstandard",
|
563
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-max",
|
564
|
+
"property": "-ms-scroll-limit-x-max",
|
565
|
+
"group": "Microsoft Extensions"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"syntax": "<length>",
|
569
|
+
"media": "interactive",
|
570
|
+
"inherited": false,
|
571
|
+
"animationType": "discrete",
|
572
|
+
"percentages": "no",
|
573
|
+
"groups": [
|
574
|
+
"Microsoft Extensions"
|
575
|
+
],
|
576
|
+
"initial": "0",
|
577
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
578
|
+
"computed": "asSpecified",
|
579
|
+
"order": "uniqueOrder",
|
580
|
+
"status": "nonstandard",
|
581
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-min",
|
582
|
+
"property": "-ms-scroll-limit-x-min",
|
583
|
+
"group": "Microsoft Extensions"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"syntax": "auto | <length>",
|
587
|
+
"media": "interactive",
|
588
|
+
"inherited": false,
|
589
|
+
"animationType": "discrete",
|
590
|
+
"percentages": "no",
|
591
|
+
"groups": [
|
592
|
+
"Microsoft Extensions"
|
593
|
+
],
|
594
|
+
"initial": "auto",
|
595
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
596
|
+
"computed": "asSpecified",
|
597
|
+
"order": "uniqueOrder",
|
598
|
+
"status": "nonstandard",
|
599
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-max",
|
600
|
+
"property": "-ms-scroll-limit-y-max",
|
601
|
+
"group": "Microsoft Extensions"
|
602
|
+
},
|
603
|
+
{
|
604
|
+
"syntax": "<length>",
|
605
|
+
"media": "interactive",
|
606
|
+
"inherited": false,
|
607
|
+
"animationType": "discrete",
|
608
|
+
"percentages": "no",
|
609
|
+
"groups": [
|
610
|
+
"Microsoft Extensions"
|
611
|
+
],
|
612
|
+
"initial": "0",
|
613
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
614
|
+
"computed": "asSpecified",
|
615
|
+
"order": "uniqueOrder",
|
616
|
+
"status": "nonstandard",
|
617
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-min",
|
618
|
+
"property": "-ms-scroll-limit-y-min",
|
619
|
+
"group": "Microsoft Extensions"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"syntax": "none | railed",
|
623
|
+
"media": "interactive",
|
624
|
+
"inherited": false,
|
625
|
+
"animationType": "discrete",
|
626
|
+
"percentages": "no",
|
627
|
+
"groups": [
|
628
|
+
"Microsoft Extensions"
|
629
|
+
],
|
630
|
+
"initial": "railed",
|
631
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
632
|
+
"computed": "asSpecified",
|
633
|
+
"order": "uniqueOrder",
|
634
|
+
"status": "nonstandard",
|
635
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-rails",
|
636
|
+
"property": "-ms-scroll-rails",
|
637
|
+
"group": "Microsoft Extensions"
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"syntax": "snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",
|
641
|
+
"media": "interactive",
|
642
|
+
"inherited": false,
|
643
|
+
"animationType": "discrete",
|
644
|
+
"percentages": "no",
|
645
|
+
"groups": [
|
646
|
+
"Microsoft Extensions"
|
647
|
+
],
|
648
|
+
"initial": "snapInterval(0px, 100%)",
|
649
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
650
|
+
"computed": "asSpecified",
|
651
|
+
"order": "uniqueOrder",
|
652
|
+
"status": "nonstandard",
|
653
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-x",
|
654
|
+
"property": "-ms-scroll-snap-points-x",
|
655
|
+
"group": "Microsoft Extensions"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"syntax": "snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",
|
659
|
+
"media": "interactive",
|
660
|
+
"inherited": false,
|
661
|
+
"animationType": "discrete",
|
662
|
+
"percentages": "no",
|
663
|
+
"groups": [
|
664
|
+
"Microsoft Extensions"
|
665
|
+
],
|
666
|
+
"initial": "snapInterval(0px, 100%)",
|
667
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
668
|
+
"computed": "asSpecified",
|
669
|
+
"order": "uniqueOrder",
|
670
|
+
"status": "nonstandard",
|
671
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-y",
|
672
|
+
"property": "-ms-scroll-snap-points-y",
|
673
|
+
"group": "Microsoft Extensions"
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"syntax": "none | proximity | mandatory",
|
677
|
+
"media": "interactive",
|
678
|
+
"inherited": false,
|
679
|
+
"animationType": "discrete",
|
680
|
+
"percentages": "no",
|
681
|
+
"groups": [
|
682
|
+
"Microsoft Extensions"
|
683
|
+
],
|
684
|
+
"initial": "none",
|
685
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
686
|
+
"computed": "asSpecified",
|
687
|
+
"order": "uniqueOrder",
|
688
|
+
"status": "nonstandard",
|
689
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-type",
|
690
|
+
"property": "-ms-scroll-snap-type",
|
691
|
+
"group": "Microsoft Extensions"
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"syntax": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>",
|
695
|
+
"media": "interactive",
|
696
|
+
"inherited": false,
|
697
|
+
"animationType": "discrete",
|
698
|
+
"percentages": "no",
|
699
|
+
"groups": [
|
700
|
+
"Microsoft Extensions"
|
701
|
+
],
|
702
|
+
"initial": [
|
703
|
+
"-ms-scroll-snap-type",
|
704
|
+
"-ms-scroll-snap-points-x"
|
705
|
+
],
|
706
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
707
|
+
"computed": [
|
708
|
+
"-ms-scroll-snap-type",
|
709
|
+
"-ms-scroll-snap-points-x"
|
710
|
+
],
|
711
|
+
"order": "uniqueOrder",
|
712
|
+
"status": "nonstandard",
|
713
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-x",
|
714
|
+
"property": "-ms-scroll-snap-x",
|
715
|
+
"group": "Microsoft Extensions"
|
716
|
+
},
|
717
|
+
{
|
718
|
+
"syntax": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>",
|
719
|
+
"media": "interactive",
|
720
|
+
"inherited": false,
|
721
|
+
"animationType": "discrete",
|
722
|
+
"percentages": "no",
|
723
|
+
"groups": [
|
724
|
+
"Microsoft Extensions"
|
725
|
+
],
|
726
|
+
"initial": [
|
727
|
+
"-ms-scroll-snap-type",
|
728
|
+
"-ms-scroll-snap-points-y"
|
729
|
+
],
|
730
|
+
"appliesto": "nonReplacedBlockAndInlineBlockElements",
|
731
|
+
"computed": [
|
732
|
+
"-ms-scroll-snap-type",
|
733
|
+
"-ms-scroll-snap-points-y"
|
734
|
+
],
|
735
|
+
"order": "uniqueOrder",
|
736
|
+
"status": "nonstandard",
|
737
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-y",
|
738
|
+
"property": "-ms-scroll-snap-y",
|
739
|
+
"group": "Microsoft Extensions"
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"syntax": "none | vertical-to-horizontal",
|
743
|
+
"media": "interactive",
|
744
|
+
"inherited": true,
|
745
|
+
"animationType": "discrete",
|
746
|
+
"percentages": "no",
|
747
|
+
"groups": [
|
748
|
+
"Microsoft Extensions"
|
749
|
+
],
|
750
|
+
"initial": "none",
|
751
|
+
"appliesto": "allElements",
|
752
|
+
"computed": "asSpecified",
|
753
|
+
"order": "uniqueOrder",
|
754
|
+
"status": "nonstandard",
|
755
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-translation",
|
756
|
+
"property": "-ms-scroll-translation",
|
757
|
+
"group": "Microsoft Extensions"
|
758
|
+
},
|
759
|
+
{
|
760
|
+
"syntax": "none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space",
|
761
|
+
"media": "visual",
|
762
|
+
"inherited": false,
|
763
|
+
"animationType": "discrete",
|
764
|
+
"percentages": "no",
|
765
|
+
"groups": [
|
766
|
+
"Microsoft Extensions"
|
767
|
+
],
|
768
|
+
"initial": "none",
|
769
|
+
"appliesto": "allElements",
|
770
|
+
"computed": "asSpecified",
|
771
|
+
"order": "uniqueOrder",
|
772
|
+
"status": "nonstandard",
|
773
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-text-autospace",
|
774
|
+
"property": "-ms-text-autospace",
|
775
|
+
"group": "Microsoft Extensions"
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"syntax": "grippers | none",
|
779
|
+
"media": "interactive",
|
780
|
+
"inherited": true,
|
781
|
+
"animationType": "discrete",
|
782
|
+
"percentages": "no",
|
783
|
+
"groups": [
|
784
|
+
"Microsoft Extensions"
|
785
|
+
],
|
786
|
+
"initial": "grippers",
|
787
|
+
"appliesto": "allElements",
|
788
|
+
"computed": "asSpecified",
|
789
|
+
"order": "uniqueOrder",
|
790
|
+
"status": "nonstandard",
|
791
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-touch-select",
|
792
|
+
"property": "-ms-touch-select",
|
793
|
+
"group": "Microsoft Extensions"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"syntax": "none | element | text",
|
797
|
+
"media": "interactive",
|
798
|
+
"inherited": false,
|
799
|
+
"animationType": "discrete",
|
800
|
+
"percentages": "no",
|
801
|
+
"groups": [
|
802
|
+
"Microsoft Extensions"
|
803
|
+
],
|
804
|
+
"initial": "text",
|
805
|
+
"appliesto": "nonReplacedElements",
|
806
|
+
"computed": "asSpecified",
|
807
|
+
"order": "uniqueOrder",
|
808
|
+
"status": "nonstandard",
|
809
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-user-select",
|
810
|
+
"property": "-ms-user-select",
|
811
|
+
"group": "Microsoft Extensions"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"syntax": "auto | both | start | end | maximum | clear",
|
815
|
+
"media": "visual",
|
816
|
+
"inherited": false,
|
817
|
+
"animationType": "discrete",
|
818
|
+
"percentages": "no",
|
819
|
+
"groups": [
|
820
|
+
"Microsoft Extensions"
|
821
|
+
],
|
822
|
+
"initial": "auto",
|
823
|
+
"appliesto": "blockLevelElements",
|
824
|
+
"computed": "asSpecified",
|
825
|
+
"order": "uniqueOrder",
|
826
|
+
"status": "nonstandard",
|
827
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-flow",
|
828
|
+
"property": "-ms-wrap-flow",
|
829
|
+
"group": "Microsoft Extensions"
|
830
|
+
},
|
831
|
+
{
|
832
|
+
"syntax": "<length>",
|
833
|
+
"media": "visual",
|
834
|
+
"inherited": false,
|
835
|
+
"animationType": "discrete",
|
836
|
+
"percentages": "no",
|
837
|
+
"groups": [
|
838
|
+
"Microsoft Extensions"
|
839
|
+
],
|
840
|
+
"initial": "0",
|
841
|
+
"appliesto": "exclusionElements",
|
842
|
+
"computed": "asSpecified",
|
843
|
+
"order": "uniqueOrder",
|
844
|
+
"status": "nonstandard",
|
845
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-margin",
|
846
|
+
"property": "-ms-wrap-margin",
|
847
|
+
"group": "Microsoft Extensions"
|
848
|
+
},
|
849
|
+
{
|
850
|
+
"syntax": "wrap | none",
|
851
|
+
"media": "visual",
|
852
|
+
"inherited": false,
|
853
|
+
"animationType": "discrete",
|
854
|
+
"percentages": "no",
|
855
|
+
"groups": [
|
856
|
+
"Microsoft Extensions"
|
857
|
+
],
|
858
|
+
"initial": "wrap",
|
859
|
+
"appliesto": "blockLevelElements",
|
860
|
+
"computed": "asSpecified",
|
861
|
+
"order": "uniqueOrder",
|
862
|
+
"status": "nonstandard",
|
863
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-through",
|
864
|
+
"property": "-ms-wrap-through",
|
865
|
+
"group": "Microsoft Extensions"
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"syntax": "normal | reset | <number> | <percentage>",
|
869
|
+
"media": "visual",
|
870
|
+
"inherited": false,
|
871
|
+
"animationType": "integer",
|
872
|
+
"percentages": "no",
|
873
|
+
"groups": [
|
874
|
+
"Microsoft Extensions"
|
875
|
+
],
|
876
|
+
"initial": "normal",
|
877
|
+
"appliesto": "allElements",
|
878
|
+
"computed": "asSpecified",
|
879
|
+
"order": "uniqueOrder",
|
880
|
+
"status": "nonstandard",
|
881
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/zoom",
|
882
|
+
"property": "zoom",
|
883
|
+
"group": "Microsoft Extensions"
|
884
|
+
}
|
885
|
+
]
|