@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.
Files changed (183) hide show
  1. package/README.md +3 -3
  2. package/lib/common-types.d.ts +49 -0
  3. package/lib/common-types.js.flow +64 -0
  4. package/lib/convert-to-className.d.ts +16 -0
  5. package/lib/convert-to-className.js +17 -26
  6. package/lib/convert-to-className.js.flow +23 -0
  7. package/lib/generate-css-rule.d.ts +17 -0
  8. package/lib/generate-css-rule.js +6 -17
  9. package/lib/generate-css-rule.js.flow +17 -0
  10. package/lib/hash.d.ts +11 -0
  11. package/lib/hash.js +3 -27
  12. package/lib/hash.js.flow +10 -0
  13. package/lib/index.d.ts +42 -85
  14. package/lib/index.js +21 -29
  15. package/lib/index.js.flow +57 -3
  16. package/lib/messages.d.ts +41 -0
  17. package/lib/messages.js +33 -53
  18. package/lib/messages.js.flow +44 -0
  19. package/lib/physical-rtl/generate-ltr.d.ts +11 -0
  20. package/lib/physical-rtl/generate-ltr.js +18 -46
  21. package/lib/physical-rtl/generate-ltr.js.flow +12 -0
  22. package/lib/physical-rtl/generate-rtl.d.ts +13 -0
  23. package/lib/physical-rtl/generate-rtl.js +18 -50
  24. package/lib/physical-rtl/generate-rtl.js.flow +12 -0
  25. package/lib/preprocess-rules/PreRule.d.ts +52 -0
  26. package/lib/preprocess-rules/PreRule.js +87 -0
  27. package/lib/preprocess-rules/PreRule.js.flow +64 -0
  28. package/lib/preprocess-rules/application-order.d.ts +290 -0
  29. package/lib/preprocess-rules/application-order.js +60 -133
  30. package/lib/preprocess-rules/application-order.js.flow +241 -0
  31. package/lib/preprocess-rules/basic-validation.d.ts +13 -0
  32. package/lib/preprocess-rules/basic-validation.js +83 -0
  33. package/lib/preprocess-rules/basic-validation.js.flow +13 -0
  34. package/lib/preprocess-rules/flatten-raw-style-obj.d.ts +25 -0
  35. package/lib/preprocess-rules/flatten-raw-style-obj.js +120 -0
  36. package/lib/preprocess-rules/flatten-raw-style-obj.js.flow +27 -0
  37. package/lib/preprocess-rules/index.d.ts +18 -0
  38. package/lib/preprocess-rules/index.js +0 -9
  39. package/lib/preprocess-rules/index.js.flow +19 -0
  40. package/lib/preprocess-rules/legacy-expand-shorthands.d.ts +200 -0
  41. package/lib/preprocess-rules/legacy-expand-shorthands.js +90 -123
  42. package/lib/preprocess-rules/legacy-expand-shorthands.js.flow +179 -0
  43. package/lib/preprocess-rules/property-specificity.d.ts +89 -0
  44. package/lib/preprocess-rules/property-specificity.js +46 -74
  45. package/lib/preprocess-rules/property-specificity.js.flow +98 -0
  46. package/lib/properties/CSS Animations.json +445 -0
  47. package/lib/properties/CSS Backgrounds and Borders.json +1085 -0
  48. package/lib/properties/CSS Basic User Interface.json +365 -0
  49. package/lib/properties/CSS Box Alignment.json +245 -0
  50. package/lib/properties/CSS Box Model.json +501 -0
  51. package/lib/properties/CSS Color.json +100 -0
  52. package/lib/properties/CSS Columns.json +185 -0
  53. package/lib/properties/CSS Containment.json +203 -0
  54. package/lib/properties/CSS Counter Styles.json +56 -0
  55. package/lib/properties/CSS Display.json +20 -0
  56. package/lib/properties/CSS Flexible Box Layout.json +167 -0
  57. package/lib/properties/CSS Fonts.json +684 -0
  58. package/lib/properties/CSS Fragmentation.json +110 -0
  59. package/lib/properties/CSS Generated Content.json +38 -0
  60. package/lib/properties/CSS Grid Layout.json +500 -0
  61. package/lib/properties/CSS Images.json +91 -0
  62. package/lib/properties/CSS Inline.json +38 -0
  63. package/lib/properties/CSS Lists and Counters.json +86 -0
  64. package/lib/properties/CSS Logical Properties.json +1086 -0
  65. package/lib/properties/CSS Masking.json +399 -0
  66. package/lib/properties/CSS Miscellaneous.json +38 -0
  67. package/lib/properties/CSS Motion Path.json +132 -0
  68. package/lib/properties/CSS Overflow.json +216 -0
  69. package/lib/properties/CSS Pages.json +83 -0
  70. package/lib/properties/CSS Positioning.json +166 -0
  71. package/lib/properties/CSS Ruby.json +55 -0
  72. package/lib/properties/CSS Scroll Anchoring.json +19 -0
  73. package/lib/properties/CSS Scroll Snap.json +604 -0
  74. package/lib/properties/CSS Scrollbars.json +38 -0
  75. package/lib/properties/CSS Shapes.json +56 -0
  76. package/lib/properties/CSS Speech.json +20 -0
  77. package/lib/properties/CSS Table.json +115 -0
  78. package/lib/properties/CSS Text Decoration.json +312 -0
  79. package/lib/properties/CSS Text.json +415 -0
  80. package/lib/properties/CSS Transforms.json +188 -0
  81. package/lib/properties/CSS Transitions.json +122 -0
  82. package/lib/properties/CSS Variables.json +20 -0
  83. package/lib/properties/CSS View Transitions.json +20 -0
  84. package/lib/properties/CSS Will Change.json +20 -0
  85. package/lib/properties/CSS Writing Modes.json +92 -0
  86. package/lib/properties/Compositing and Blending.json +62 -0
  87. package/lib/properties/Filter Effects.json +38 -0
  88. package/lib/properties/MathML.json +56 -0
  89. package/lib/properties/Microsoft Extensions.json +885 -0
  90. package/lib/properties/Mozilla Extensions.json +607 -0
  91. package/lib/properties/Pointer Events.json +20 -0
  92. package/lib/properties/WebKit Extensions.json +707 -0
  93. package/lib/properties.json +10122 -0
  94. package/lib/stylex-create-theme.d.ts +26 -0
  95. package/lib/stylex-create-theme.js +67 -0
  96. package/lib/stylex-create-theme.js.flow +19 -0
  97. package/lib/stylex-create.d.ts +23 -0
  98. package/lib/stylex-create.js +30 -146
  99. package/lib/stylex-create.js.flow +30 -0
  100. package/lib/stylex-define-vars.d.ts +29 -0
  101. package/lib/stylex-define-vars.js +73 -0
  102. package/lib/stylex-define-vars.js.flow +26 -0
  103. package/lib/stylex-first-that-works.d.ts +13 -0
  104. package/lib/stylex-first-that-works.js +0 -10
  105. package/lib/stylex-first-that-works.js.flow +12 -0
  106. package/lib/stylex-include.d.ts +18 -0
  107. package/lib/stylex-include.js +2 -12
  108. package/lib/stylex-include.js.flow +20 -0
  109. package/lib/stylex-keyframes.d.ts +17 -0
  110. package/lib/stylex-keyframes.js +6 -26
  111. package/lib/stylex-keyframes.js.flow +20 -0
  112. package/lib/transform-value.d.ts +22 -0
  113. package/lib/transform-value.js +9 -23
  114. package/lib/transform-value.js.flow +25 -0
  115. package/lib/types/index.d.ts +205 -0
  116. package/lib/types/index.js +191 -0
  117. package/lib/types/index.js.flow +241 -0
  118. package/lib/utils/Rule.d.ts +58 -0
  119. package/lib/utils/Rule.js +0 -21
  120. package/lib/utils/Rule.js.flow +64 -0
  121. package/lib/utils/dashify.d.ts +11 -0
  122. package/lib/utils/dashify.js +0 -8
  123. package/lib/utils/dashify.js.flow +10 -0
  124. package/lib/utils/default-options.d.ts +11 -0
  125. package/lib/utils/default-options.js +13 -0
  126. package/lib/utils/default-options.js.flow +25 -0
  127. package/lib/utils/file-based-identifier.d.ts +15 -0
  128. package/lib/utils/file-based-identifier.js +14 -0
  129. package/lib/utils/file-based-identifier.js.flow +14 -0
  130. package/lib/utils/genCSSRule.d.ts +15 -0
  131. package/lib/utils/genCSSRule.js +9 -18
  132. package/lib/utils/genCSSRule.js.flow +15 -0
  133. package/lib/utils/normalize-value.d.ts +16 -0
  134. package/lib/utils/normalize-value.js +8 -15
  135. package/lib/utils/normalize-value.js.flow +16 -0
  136. package/lib/utils/normalizers/convert-camel-case-transition-props.d.ts +14 -0
  137. package/lib/utils/normalizers/convert-camel-case-transition-props.js +23 -0
  138. package/lib/utils/normalizers/convert-camel-case-transition-props.js.flow +13 -0
  139. package/lib/utils/normalizers/convert-camel-case-values.d.ts +14 -0
  140. package/lib/utils/normalizers/convert-camel-case-values.js +23 -0
  141. package/lib/utils/normalizers/convert-camel-case-values.js.flow +13 -0
  142. package/lib/utils/normalizers/detect-unclosed-fns.d.ts +17 -0
  143. package/lib/utils/normalizers/detect-unclosed-fns.js +2 -14
  144. package/lib/utils/normalizers/detect-unclosed-fns.js.flow +16 -0
  145. package/lib/utils/normalizers/font-size-px-to-rem.d.ts +19 -0
  146. package/lib/utils/normalizers/font-size-px-to-rem.js +9 -19
  147. package/lib/utils/normalizers/font-size-px-to-rem.js.flow +18 -0
  148. package/lib/utils/normalizers/leading-zero.d.ts +17 -0
  149. package/lib/utils/normalizers/leading-zero.js +0 -12
  150. package/lib/utils/normalizers/leading-zero.js.flow +16 -0
  151. package/lib/utils/normalizers/quotes.d.ts +18 -0
  152. package/lib/utils/normalizers/quotes.js +0 -13
  153. package/lib/utils/normalizers/quotes.js.flow +17 -0
  154. package/lib/utils/normalizers/timings.d.ts +18 -0
  155. package/lib/utils/normalizers/timings.js +0 -14
  156. package/lib/utils/normalizers/timings.js.flow +17 -0
  157. package/lib/utils/normalizers/whitespace.d.ts +19 -0
  158. package/lib/utils/normalizers/whitespace.js +0 -15
  159. package/lib/utils/normalizers/whitespace.js.flow +18 -0
  160. package/lib/utils/normalizers/zero-dimensions.d.ts +19 -0
  161. package/lib/utils/normalizers/zero-dimensions.js +0 -15
  162. package/lib/utils/normalizers/zero-dimensions.js.flow +18 -0
  163. package/lib/utils/object-utils.d.ts +66 -0
  164. package/lib/utils/object-utils.js +21 -13
  165. package/lib/utils/object-utils.js.flow +77 -0
  166. package/lib/utils/property-priorities.d.ts +11 -0
  167. package/lib/utils/property-priorities.js +516 -101
  168. package/lib/utils/property-priorities.js.flow +10 -0
  169. package/lib/utils/split-css-value.d.ts +14 -0
  170. package/lib/utils/split-css-value.js +0 -14
  171. package/lib/utils/split-css-value.js.flow +15 -0
  172. package/lib/validate.d.ts +12 -0
  173. package/lib/validate.js +1 -10
  174. package/lib/validate.js.flow +12 -0
  175. package/package.json +4 -5
  176. package/lib/expand-shorthands.d.ts +0 -5
  177. package/lib/expand-shorthands.js +0 -330
  178. package/lib/namespace-transforms/__tests__/preflatten.test.js +0 -120
  179. package/lib/namespace-transforms/preflatten.js +0 -89
  180. package/lib/preprocess-rules/expand-shorthands.js +0 -156
  181. package/lib/preprocess-rules/null-out-longhand.js +0 -310
  182. package/lib/preprocess-rules/react-native-web.js +0 -142
  183. package/lib/stylex-defaultValue.js +0 -397
@@ -0,0 +1,707 @@
1
+ [
2
+ {
3
+ "syntax": "none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized",
4
+ "media": "visual",
5
+ "inherited": false,
6
+ "animationType": "discrete",
7
+ "percentages": "no",
8
+ "groups": [
9
+ "Mozilla Extensions",
10
+ "WebKit Extensions"
11
+ ],
12
+ "initial": "noneButOverriddenInUserAgentCSS",
13
+ "appliesto": "allElements",
14
+ "computed": "asSpecified",
15
+ "order": "uniqueOrder",
16
+ "status": "nonstandard",
17
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance",
18
+ "property": "-moz-appearance",
19
+ "group": "WebKit Extensions"
20
+ },
21
+ {
22
+ "syntax": "none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button",
23
+ "media": "visual",
24
+ "inherited": false,
25
+ "animationType": "discrete",
26
+ "percentages": "no",
27
+ "groups": [
28
+ "WebKit Extensions"
29
+ ],
30
+ "initial": "noneButOverriddenInUserAgentCSS",
31
+ "appliesto": "allElements",
32
+ "computed": "asSpecified",
33
+ "order": "uniqueOrder",
34
+ "status": "nonstandard",
35
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance",
36
+ "property": "-webkit-appearance",
37
+ "group": "WebKit Extensions"
38
+ },
39
+ {
40
+ "syntax": "<'border-width'> || <'border-style'> || <color>",
41
+ "media": "visual",
42
+ "inherited": true,
43
+ "animationType": "discrete",
44
+ "percentages": [
45
+ "-webkit-border-before-width"
46
+ ],
47
+ "groups": [
48
+ "WebKit Extensions"
49
+ ],
50
+ "initial": [
51
+ "border-width",
52
+ "border-style",
53
+ "color"
54
+ ],
55
+ "appliesto": "allElements",
56
+ "computed": [
57
+ "border-width",
58
+ "border-style",
59
+ "color"
60
+ ],
61
+ "order": "uniqueOrder",
62
+ "status": "nonstandard",
63
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-border-before",
64
+ "property": "-webkit-border-before",
65
+ "group": "WebKit Extensions"
66
+ },
67
+ {
68
+ "syntax": "<color>",
69
+ "media": "visual",
70
+ "inherited": true,
71
+ "animationType": "discrete",
72
+ "percentages": "no",
73
+ "groups": [
74
+ "WebKit Extensions"
75
+ ],
76
+ "initial": "currentcolor",
77
+ "appliesto": "allElements",
78
+ "computed": "computedColor",
79
+ "order": "uniqueOrder",
80
+ "status": "nonstandard",
81
+ "property": "-webkit-border-before-color",
82
+ "group": "WebKit Extensions"
83
+ },
84
+ {
85
+ "syntax": "<'border-style'>",
86
+ "media": "visual",
87
+ "inherited": true,
88
+ "animationType": "discrete",
89
+ "percentages": "no",
90
+ "groups": [
91
+ "WebKit Extensions"
92
+ ],
93
+ "initial": "none",
94
+ "appliesto": "allElements",
95
+ "computed": "asSpecified",
96
+ "order": "uniqueOrder",
97
+ "status": "nonstandard",
98
+ "property": "-webkit-border-before-style",
99
+ "group": "WebKit Extensions"
100
+ },
101
+ {
102
+ "syntax": "<'border-width'>",
103
+ "media": "visual",
104
+ "inherited": true,
105
+ "animationType": "discrete",
106
+ "percentages": "logicalWidthOfContainingBlock",
107
+ "groups": [
108
+ "WebKit Extensions"
109
+ ],
110
+ "initial": "medium",
111
+ "appliesto": "allElements",
112
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
113
+ "order": "uniqueOrder",
114
+ "status": "nonstandard",
115
+ "property": "-webkit-border-before-width",
116
+ "group": "WebKit Extensions"
117
+ },
118
+ {
119
+ "syntax": "[ above | below | right | left ]? <length>? <image>?",
120
+ "media": "visual",
121
+ "inherited": false,
122
+ "animationType": "discrete",
123
+ "percentages": "no",
124
+ "groups": [
125
+ "WebKit Extensions"
126
+ ],
127
+ "initial": "none",
128
+ "appliesto": "allElements",
129
+ "computed": "asSpecified",
130
+ "order": "uniqueOrder",
131
+ "status": "nonstandard",
132
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-box-reflect",
133
+ "property": "-webkit-box-reflect",
134
+ "group": "WebKit Extensions"
135
+ },
136
+ {
137
+ "syntax": "none | <integer>",
138
+ "media": "visual",
139
+ "inherited": false,
140
+ "animationType": "byComputedValueType",
141
+ "percentages": "no",
142
+ "groups": [
143
+ "WebKit Extensions",
144
+ "CSS Overflow"
145
+ ],
146
+ "initial": "none",
147
+ "appliesto": "allElements",
148
+ "computed": "asSpecified",
149
+ "order": "uniqueOrder",
150
+ "status": "standard",
151
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp",
152
+ "property": "-webkit-line-clamp",
153
+ "group": "WebKit Extensions"
154
+ },
155
+ {
156
+ "syntax": "[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#",
157
+ "media": "visual",
158
+ "inherited": false,
159
+ "animationType": "discrete",
160
+ "percentages": "no",
161
+ "groups": [
162
+ "WebKit Extensions"
163
+ ],
164
+ "initial": [
165
+ "-webkit-mask-image",
166
+ "-webkit-mask-repeat",
167
+ "-webkit-mask-attachment",
168
+ "-webkit-mask-position",
169
+ "-webkit-mask-origin",
170
+ "-webkit-mask-clip"
171
+ ],
172
+ "appliesto": "allElements",
173
+ "computed": [
174
+ "-webkit-mask-image",
175
+ "-webkit-mask-repeat",
176
+ "-webkit-mask-attachment",
177
+ "-webkit-mask-position",
178
+ "-webkit-mask-origin",
179
+ "-webkit-mask-clip"
180
+ ],
181
+ "order": "uniqueOrder",
182
+ "status": "nonstandard",
183
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask",
184
+ "property": "-webkit-mask",
185
+ "group": "WebKit Extensions"
186
+ },
187
+ {
188
+ "syntax": "<attachment>#",
189
+ "media": "visual",
190
+ "inherited": false,
191
+ "animationType": "discrete",
192
+ "percentages": "no",
193
+ "groups": [
194
+ "WebKit Extensions"
195
+ ],
196
+ "initial": "scroll",
197
+ "appliesto": "allElements",
198
+ "computed": "asSpecified",
199
+ "order": "orderOfAppearance",
200
+ "status": "nonstandard",
201
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-attachment",
202
+ "property": "-webkit-mask-attachment",
203
+ "group": "WebKit Extensions"
204
+ },
205
+ {
206
+ "syntax": "[ <box> | border | padding | content | text ]#",
207
+ "media": "visual",
208
+ "inherited": false,
209
+ "animationType": "discrete",
210
+ "percentages": "no",
211
+ "groups": [
212
+ "WebKit Extensions"
213
+ ],
214
+ "initial": "border",
215
+ "appliesto": "allElements",
216
+ "computed": "asSpecified",
217
+ "order": "orderOfAppearance",
218
+ "status": "nonstandard",
219
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-clip",
220
+ "property": "-webkit-mask-clip",
221
+ "group": "WebKit Extensions"
222
+ },
223
+ {
224
+ "syntax": "<composite-style>#",
225
+ "media": "visual",
226
+ "inherited": false,
227
+ "animationType": "discrete",
228
+ "percentages": "no",
229
+ "groups": [
230
+ "WebKit Extensions"
231
+ ],
232
+ "initial": "source-over",
233
+ "appliesto": "allElements",
234
+ "computed": "asSpecified",
235
+ "order": "orderOfAppearance",
236
+ "status": "nonstandard",
237
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite",
238
+ "property": "-webkit-mask-composite",
239
+ "group": "WebKit Extensions"
240
+ },
241
+ {
242
+ "syntax": "<mask-reference>#",
243
+ "media": "visual",
244
+ "inherited": false,
245
+ "animationType": "discrete",
246
+ "percentages": "no",
247
+ "groups": [
248
+ "WebKit Extensions"
249
+ ],
250
+ "initial": "none",
251
+ "appliesto": "allElements",
252
+ "computed": "absoluteURIOrNone",
253
+ "order": "orderOfAppearance",
254
+ "status": "nonstandard",
255
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-image",
256
+ "property": "-webkit-mask-image",
257
+ "group": "WebKit Extensions"
258
+ },
259
+ {
260
+ "syntax": "[ <box> | border | padding | content ]#",
261
+ "media": "visual",
262
+ "inherited": false,
263
+ "animationType": "discrete",
264
+ "percentages": "no",
265
+ "groups": [
266
+ "WebKit Extensions"
267
+ ],
268
+ "initial": "padding",
269
+ "appliesto": "allElements",
270
+ "computed": "asSpecified",
271
+ "order": "orderOfAppearance",
272
+ "status": "nonstandard",
273
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-origin",
274
+ "property": "-webkit-mask-origin",
275
+ "group": "WebKit Extensions"
276
+ },
277
+ {
278
+ "syntax": "<position>#",
279
+ "media": "visual",
280
+ "inherited": false,
281
+ "animationType": "discrete",
282
+ "percentages": "referToSizeOfElement",
283
+ "groups": [
284
+ "WebKit Extensions"
285
+ ],
286
+ "initial": "0% 0%",
287
+ "appliesto": "allElements",
288
+ "computed": "absoluteLengthOrPercentage",
289
+ "order": "orderOfAppearance",
290
+ "status": "nonstandard",
291
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-position",
292
+ "property": "-webkit-mask-position",
293
+ "group": "WebKit Extensions"
294
+ },
295
+ {
296
+ "syntax": "[ <length-percentage> | left | center | right ]#",
297
+ "media": "visual",
298
+ "inherited": false,
299
+ "animationType": "discrete",
300
+ "percentages": "referToSizeOfElement",
301
+ "groups": [
302
+ "WebKit Extensions"
303
+ ],
304
+ "initial": "0%",
305
+ "appliesto": "allElements",
306
+ "computed": "absoluteLengthOrPercentage",
307
+ "order": "orderOfAppearance",
308
+ "status": "nonstandard",
309
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-x",
310
+ "property": "-webkit-mask-position-x",
311
+ "group": "WebKit Extensions"
312
+ },
313
+ {
314
+ "syntax": "[ <length-percentage> | top | center | bottom ]#",
315
+ "media": "visual",
316
+ "inherited": false,
317
+ "animationType": "discrete",
318
+ "percentages": "referToSizeOfElement",
319
+ "groups": [
320
+ "WebKit Extensions"
321
+ ],
322
+ "initial": "0%",
323
+ "appliesto": "allElements",
324
+ "computed": "absoluteLengthOrPercentage",
325
+ "order": "orderOfAppearance",
326
+ "status": "nonstandard",
327
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-y",
328
+ "property": "-webkit-mask-position-y",
329
+ "group": "WebKit Extensions"
330
+ },
331
+ {
332
+ "syntax": "<repeat-style>#",
333
+ "media": "visual",
334
+ "inherited": false,
335
+ "animationType": "discrete",
336
+ "percentages": "no",
337
+ "groups": [
338
+ "WebKit Extensions"
339
+ ],
340
+ "initial": "repeat",
341
+ "appliesto": "allElements",
342
+ "computed": "asSpecified",
343
+ "order": "orderOfAppearance",
344
+ "status": "nonstandard",
345
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-repeat",
346
+ "property": "-webkit-mask-repeat",
347
+ "group": "WebKit Extensions"
348
+ },
349
+ {
350
+ "syntax": "repeat | no-repeat | space | round",
351
+ "media": "visual",
352
+ "inherited": false,
353
+ "animationType": "discrete",
354
+ "percentages": "no",
355
+ "groups": [
356
+ "WebKit Extensions"
357
+ ],
358
+ "initial": "repeat",
359
+ "appliesto": "allElements",
360
+ "computed": "asSpecified",
361
+ "order": "orderOfAppearance",
362
+ "status": "nonstandard",
363
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-x",
364
+ "property": "-webkit-mask-repeat-x",
365
+ "group": "WebKit Extensions"
366
+ },
367
+ {
368
+ "syntax": "repeat | no-repeat | space | round",
369
+ "media": "visual",
370
+ "inherited": false,
371
+ "animationType": "discrete",
372
+ "percentages": "no",
373
+ "groups": [
374
+ "WebKit Extensions"
375
+ ],
376
+ "initial": "repeat",
377
+ "appliesto": "allElements",
378
+ "computed": "absoluteLengthOrPercentage",
379
+ "order": "orderOfAppearance",
380
+ "status": "nonstandard",
381
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-y",
382
+ "property": "-webkit-mask-repeat-y",
383
+ "group": "WebKit Extensions"
384
+ },
385
+ {
386
+ "syntax": "<bg-size>#",
387
+ "media": "visual",
388
+ "inherited": false,
389
+ "animationType": "discrete",
390
+ "percentages": "relativeToBackgroundPositioningArea",
391
+ "groups": [
392
+ "WebKit Extensions"
393
+ ],
394
+ "initial": "auto auto",
395
+ "appliesto": "allElements",
396
+ "computed": "asSpecified",
397
+ "order": "orderOfAppearance",
398
+ "status": "nonstandard",
399
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-size",
400
+ "property": "-webkit-mask-size",
401
+ "group": "WebKit Extensions"
402
+ },
403
+ {
404
+ "syntax": "auto | touch",
405
+ "media": "visual",
406
+ "inherited": true,
407
+ "animationType": "discrete",
408
+ "percentages": "no",
409
+ "groups": [
410
+ "WebKit Extensions"
411
+ ],
412
+ "initial": "auto",
413
+ "appliesto": "scrollingBoxes",
414
+ "computed": "asSpecified",
415
+ "order": "orderOfAppearance",
416
+ "status": "nonstandard",
417
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-overflow-scrolling",
418
+ "property": "-webkit-overflow-scrolling",
419
+ "group": "WebKit Extensions"
420
+ },
421
+ {
422
+ "syntax": "<color>",
423
+ "media": "visual",
424
+ "inherited": true,
425
+ "animationType": "discrete",
426
+ "percentages": "no",
427
+ "groups": [
428
+ "WebKit Extensions"
429
+ ],
430
+ "initial": "black",
431
+ "appliesto": "allElements",
432
+ "computed": "asSpecified",
433
+ "order": "uniqueOrder",
434
+ "status": "nonstandard",
435
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-tap-highlight-color",
436
+ "property": "-webkit-tap-highlight-color",
437
+ "group": "WebKit Extensions"
438
+ },
439
+ {
440
+ "syntax": "<color>",
441
+ "media": "visual",
442
+ "inherited": true,
443
+ "animationType": "color",
444
+ "percentages": "no",
445
+ "groups": [
446
+ "WebKit Extensions"
447
+ ],
448
+ "initial": "currentcolor",
449
+ "appliesto": "allElements",
450
+ "computed": "computedColor",
451
+ "order": "uniqueOrder",
452
+ "status": "nonstandard",
453
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color",
454
+ "property": "-webkit-text-fill-color",
455
+ "group": "WebKit Extensions"
456
+ },
457
+ {
458
+ "syntax": "<length> || <color>",
459
+ "media": "visual",
460
+ "inherited": true,
461
+ "animationType": [
462
+ "-webkit-text-stroke-width",
463
+ "-webkit-text-stroke-color"
464
+ ],
465
+ "percentages": "no",
466
+ "groups": [
467
+ "WebKit Extensions"
468
+ ],
469
+ "initial": [
470
+ "-webkit-text-stroke-width",
471
+ "-webkit-text-stroke-color"
472
+ ],
473
+ "appliesto": "allElements",
474
+ "computed": [
475
+ "-webkit-text-stroke-width",
476
+ "-webkit-text-stroke-color"
477
+ ],
478
+ "order": "canonicalOrder",
479
+ "status": "nonstandard",
480
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke",
481
+ "property": "-webkit-text-stroke",
482
+ "group": "WebKit Extensions"
483
+ },
484
+ {
485
+ "syntax": "<color>",
486
+ "media": "visual",
487
+ "inherited": true,
488
+ "animationType": "color",
489
+ "percentages": "no",
490
+ "groups": [
491
+ "WebKit Extensions"
492
+ ],
493
+ "initial": "currentcolor",
494
+ "appliesto": "allElements",
495
+ "computed": "computedColor",
496
+ "order": "uniqueOrder",
497
+ "status": "nonstandard",
498
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color",
499
+ "property": "-webkit-text-stroke-color",
500
+ "group": "WebKit Extensions"
501
+ },
502
+ {
503
+ "syntax": "<length>",
504
+ "media": "visual",
505
+ "inherited": true,
506
+ "animationType": "discrete",
507
+ "percentages": "no",
508
+ "groups": [
509
+ "WebKit Extensions"
510
+ ],
511
+ "initial": "0",
512
+ "appliesto": "allElements",
513
+ "computed": "absoluteLength",
514
+ "order": "uniqueOrder",
515
+ "status": "nonstandard",
516
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width",
517
+ "property": "-webkit-text-stroke-width",
518
+ "group": "WebKit Extensions"
519
+ },
520
+ {
521
+ "syntax": "default | none",
522
+ "media": "visual",
523
+ "inherited": true,
524
+ "animationType": "discrete",
525
+ "percentages": "no",
526
+ "groups": [
527
+ "WebKit Extensions"
528
+ ],
529
+ "initial": "default",
530
+ "appliesto": "allElements",
531
+ "computed": "asSpecified",
532
+ "order": "uniqueOrder",
533
+ "status": "nonstandard",
534
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-touch-callout",
535
+ "property": "-webkit-touch-callout",
536
+ "group": "WebKit Extensions"
537
+ },
538
+ {
539
+ "syntax": "read-only | read-write | read-write-plaintext-only",
540
+ "media": "interactive",
541
+ "inherited": true,
542
+ "animationType": "discrete",
543
+ "percentages": "no",
544
+ "groups": [
545
+ "WebKit Extensions"
546
+ ],
547
+ "initial": "read-only",
548
+ "appliesto": "allElements",
549
+ "computed": "asSpecified",
550
+ "order": "uniqueOrder",
551
+ "status": "nonstandard",
552
+ "property": "-webkit-user-modify",
553
+ "group": "WebKit Extensions"
554
+ },
555
+ {
556
+ "syntax": "start | center | end | baseline | stretch",
557
+ "media": "visual",
558
+ "inherited": false,
559
+ "animationType": "discrete",
560
+ "percentages": "no",
561
+ "groups": [
562
+ "Mozilla Extensions",
563
+ "WebKit Extensions"
564
+ ],
565
+ "initial": "stretch",
566
+ "appliesto": "elementsWithDisplayBoxOrInlineBox",
567
+ "computed": "asSpecified",
568
+ "order": "uniqueOrder",
569
+ "status": "nonstandard",
570
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-align",
571
+ "property": "box-align",
572
+ "group": "WebKit Extensions"
573
+ },
574
+ {
575
+ "syntax": "normal | reverse | inherit",
576
+ "media": "visual",
577
+ "inherited": false,
578
+ "animationType": "discrete",
579
+ "percentages": "no",
580
+ "groups": [
581
+ "Mozilla Extensions",
582
+ "WebKit Extensions"
583
+ ],
584
+ "initial": "normal",
585
+ "appliesto": "elementsWithDisplayBoxOrInlineBox",
586
+ "computed": "asSpecified",
587
+ "order": "uniqueOrder",
588
+ "status": "nonstandard",
589
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-direction",
590
+ "property": "box-direction",
591
+ "group": "WebKit Extensions"
592
+ },
593
+ {
594
+ "syntax": "<number>",
595
+ "media": "visual",
596
+ "inherited": false,
597
+ "animationType": "discrete",
598
+ "percentages": "no",
599
+ "groups": [
600
+ "Mozilla Extensions",
601
+ "WebKit Extensions"
602
+ ],
603
+ "initial": "0",
604
+ "appliesto": "directChildrenOfElementsWithDisplayMozBoxMozInlineBox",
605
+ "computed": "asSpecified",
606
+ "order": "uniqueOrder",
607
+ "status": "nonstandard",
608
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-flex",
609
+ "property": "box-flex",
610
+ "group": "WebKit Extensions"
611
+ },
612
+ {
613
+ "syntax": "<integer>",
614
+ "media": "visual",
615
+ "inherited": false,
616
+ "animationType": "discrete",
617
+ "percentages": "no",
618
+ "groups": [
619
+ "Mozilla Extensions",
620
+ "WebKit Extensions"
621
+ ],
622
+ "initial": "1",
623
+ "appliesto": "inFlowChildrenOfBoxElements",
624
+ "computed": "asSpecified",
625
+ "order": "uniqueOrder",
626
+ "status": "nonstandard",
627
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-flex-group",
628
+ "property": "box-flex-group",
629
+ "group": "WebKit Extensions"
630
+ },
631
+ {
632
+ "syntax": "single | multiple",
633
+ "media": "visual",
634
+ "inherited": false,
635
+ "animationType": "discrete",
636
+ "percentages": "no",
637
+ "groups": [
638
+ "Mozilla Extensions",
639
+ "WebKit Extensions"
640
+ ],
641
+ "initial": "single",
642
+ "appliesto": "boxElements",
643
+ "computed": "asSpecified",
644
+ "order": "uniqueOrder",
645
+ "status": "nonstandard",
646
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-lines",
647
+ "property": "box-lines",
648
+ "group": "WebKit Extensions"
649
+ },
650
+ {
651
+ "syntax": "<integer>",
652
+ "media": "visual",
653
+ "inherited": false,
654
+ "animationType": "discrete",
655
+ "percentages": "no",
656
+ "groups": [
657
+ "Mozilla Extensions",
658
+ "WebKit Extensions"
659
+ ],
660
+ "initial": "1",
661
+ "appliesto": "childrenOfBoxElements",
662
+ "computed": "asSpecified",
663
+ "order": "uniqueOrder",
664
+ "status": "nonstandard",
665
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group",
666
+ "property": "box-ordinal-group",
667
+ "group": "WebKit Extensions"
668
+ },
669
+ {
670
+ "syntax": "horizontal | vertical | inline-axis | block-axis | inherit",
671
+ "media": "visual",
672
+ "inherited": false,
673
+ "animationType": "discrete",
674
+ "percentages": "no",
675
+ "groups": [
676
+ "Mozilla Extensions",
677
+ "WebKit Extensions"
678
+ ],
679
+ "initial": "inlineAxisHorizontalInXUL",
680
+ "appliesto": "elementsWithDisplayBoxOrInlineBox",
681
+ "computed": "asSpecified",
682
+ "order": "uniqueOrder",
683
+ "status": "nonstandard",
684
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-orient",
685
+ "property": "box-orient",
686
+ "group": "WebKit Extensions"
687
+ },
688
+ {
689
+ "syntax": "start | center | end | justify",
690
+ "media": "visual",
691
+ "inherited": false,
692
+ "animationType": "discrete",
693
+ "percentages": "no",
694
+ "groups": [
695
+ "Mozilla Extensions",
696
+ "WebKit Extensions"
697
+ ],
698
+ "initial": "start",
699
+ "appliesto": "elementsWithDisplayMozBoxMozInlineBox",
700
+ "computed": "asSpecified",
701
+ "order": "uniqueOrder",
702
+ "status": "nonstandard",
703
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-pack",
704
+ "property": "box-pack",
705
+ "group": "WebKit Extensions"
706
+ }
707
+ ]