@media-quest/engine 0.0.21 → 0.0.23
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/package.json +1 -1
- package/src/Delement/DElement.dto.ts +5 -5
- package/src/Delement/DElement.ts +88 -88
- package/src/Delement/DImg.ts +39 -39
- package/src/Delement/DStyle-utils.ts +616 -616
- package/src/Delement/DStyle.ts +165 -165
- package/src/Delement/DText.ts +13 -13
- package/src/Delement/Ddiv.ts +25 -25
- package/src/Delement/button-click-action.ts +35 -35
- package/src/Delement/css.spec.ts +36 -36
- package/src/Delement/css.ts +46 -46
- package/src/Delement/element-factory.ts +40 -40
- package/src/common/DMaybe.ts +46 -46
- package/src/common/DTimestamp.ts +20 -20
- package/src/common/DTmestamp.spec.ts +11 -11
- package/src/common/result.ts +41 -41
- package/src/engine/SchemaDto.ts +24 -24
- package/src/engine/SchemaEngine.ts +150 -150
- package/src/engine/SchemaResult.ts +10 -10
- package/src/engine/dplayer.spec.ts +91 -91
- package/src/engine/dplayer.ts +104 -104
- package/src/engine/history-que.spec.ts +67 -67
- package/src/engine/history-que.ts +17 -17
- package/src/engine/next-que.spec.ts +121 -121
- package/src/engine/next-que.ts +101 -101
- package/src/engine/page-que-ruleengine-action.ts +6 -6
- package/src/engine/scale.spec.ts +38 -38
- package/src/engine/scale.ts +70 -70
- package/src/events/mq-events.ts +63 -63
- package/src/page/Page.ts +182 -182
- package/src/page/media-player.ts +117 -117
- package/src/page/page-component.ts +113 -113
- package/src/page/page-result.ts +11 -11
- package/src/page/task-manager.ts +240 -240
- package/src/page/task-state.ts +55 -55
- package/src/page/task.ts +90 -90
- package/src/public-api.ts +26 -26
- package/src/rules/__test__/complex-condition.spec.ts +15 -15
- package/src/rules/__test__/conditon.spec.ts +124 -124
- package/src/rules/__test__/numeric-condition.spec.ts +84 -84
- package/src/rules/__test__/rule-engine.spec.ts +348 -348
- package/src/rules/__test__/rule-evaluation.spec.ts +140 -140
- package/src/rules/__test__/string-condition.spec.ts +41 -41
- package/src/rules/condition.ts +191 -191
- package/src/rules/fact.ts +18 -18
- package/src/rules/rule-engine.ts +45 -45
- package/src/rules/rule.ts +40 -40
- package/src/utils/DUtil.ts +116 -116
- package/src/utils/ID.spec.ts +39 -39
- package/src/utils/ID.ts +73 -73
- package/tsconfig.json +19 -19
|
@@ -1,616 +1,616 @@
|
|
|
1
|
-
export const ElementKeyNames = [
|
|
2
|
-
'0',
|
|
3
|
-
'1',
|
|
4
|
-
'2',
|
|
5
|
-
'3',
|
|
6
|
-
'4',
|
|
7
|
-
'5',
|
|
8
|
-
'6',
|
|
9
|
-
'7',
|
|
10
|
-
'8',
|
|
11
|
-
'9',
|
|
12
|
-
'10',
|
|
13
|
-
'11',
|
|
14
|
-
'12',
|
|
15
|
-
'13',
|
|
16
|
-
'14',
|
|
17
|
-
'15',
|
|
18
|
-
'16',
|
|
19
|
-
'17',
|
|
20
|
-
'18',
|
|
21
|
-
'19',
|
|
22
|
-
'20',
|
|
23
|
-
'21',
|
|
24
|
-
'22',
|
|
25
|
-
'23',
|
|
26
|
-
'24',
|
|
27
|
-
'25',
|
|
28
|
-
'26',
|
|
29
|
-
'27',
|
|
30
|
-
'accentColor',
|
|
31
|
-
'additiveSymbols',
|
|
32
|
-
'alignContent',
|
|
33
|
-
'alignItems',
|
|
34
|
-
'alignSelf',
|
|
35
|
-
'alignmentBaseline',
|
|
36
|
-
'all',
|
|
37
|
-
'animation',
|
|
38
|
-
'animationDelay',
|
|
39
|
-
'animationDirection',
|
|
40
|
-
'animationDuration',
|
|
41
|
-
'animationFillMode',
|
|
42
|
-
'animationIterationCount',
|
|
43
|
-
'animationName',
|
|
44
|
-
'animationPlayState',
|
|
45
|
-
'animationTimingFunction',
|
|
46
|
-
'appRegion',
|
|
47
|
-
'appearance',
|
|
48
|
-
'ascentOverride',
|
|
49
|
-
'aspectRatio',
|
|
50
|
-
'backdropFilter',
|
|
51
|
-
'backfaceVisibility',
|
|
52
|
-
'background',
|
|
53
|
-
'backgroundAttachment',
|
|
54
|
-
'backgroundBlendMode',
|
|
55
|
-
'backgroundClip',
|
|
56
|
-
'backgroundColor',
|
|
57
|
-
'backgroundImage',
|
|
58
|
-
'backgroundOrigin',
|
|
59
|
-
'backgroundPosition',
|
|
60
|
-
'backgroundPositionX',
|
|
61
|
-
'backgroundPositionY',
|
|
62
|
-
'backgroundRepeat',
|
|
63
|
-
'backgroundRepeatX',
|
|
64
|
-
'backgroundRepeatY',
|
|
65
|
-
'backgroundSize',
|
|
66
|
-
'basePalette',
|
|
67
|
-
'baselineShift',
|
|
68
|
-
'blockSize',
|
|
69
|
-
'border',
|
|
70
|
-
'borderBlock',
|
|
71
|
-
'borderBlockColor',
|
|
72
|
-
'borderBlockEnd',
|
|
73
|
-
'borderBlockEndColor',
|
|
74
|
-
'borderBlockEndStyle',
|
|
75
|
-
'borderBlockEndWidth',
|
|
76
|
-
'borderBlockStart',
|
|
77
|
-
'borderBlockStartColor',
|
|
78
|
-
'borderBlockStartStyle',
|
|
79
|
-
'borderBlockStartWidth',
|
|
80
|
-
'borderBlockStyle',
|
|
81
|
-
'borderBlockWidth',
|
|
82
|
-
'borderBottom',
|
|
83
|
-
'borderBottomColor',
|
|
84
|
-
'borderBottomLeftRadius',
|
|
85
|
-
'borderBottomRightRadius',
|
|
86
|
-
'borderBottomStyle',
|
|
87
|
-
'borderBottomWidth',
|
|
88
|
-
'borderCollapse',
|
|
89
|
-
'borderColor',
|
|
90
|
-
'borderEndEndRadius',
|
|
91
|
-
'borderEndStartRadius',
|
|
92
|
-
'borderImage',
|
|
93
|
-
'borderImageOutset',
|
|
94
|
-
'borderImageRepeat',
|
|
95
|
-
'borderImageSlice',
|
|
96
|
-
'borderImageSource',
|
|
97
|
-
'borderImageWidth',
|
|
98
|
-
'borderInline',
|
|
99
|
-
'borderInlineColor',
|
|
100
|
-
'borderInlineEnd',
|
|
101
|
-
'borderInlineEndColor',
|
|
102
|
-
'borderInlineEndStyle',
|
|
103
|
-
'borderInlineEndWidth',
|
|
104
|
-
'borderInlineStart',
|
|
105
|
-
'borderInlineStartColor',
|
|
106
|
-
'borderInlineStartStyle',
|
|
107
|
-
'borderInlineStartWidth',
|
|
108
|
-
'borderInlineStyle',
|
|
109
|
-
'borderInlineWidth',
|
|
110
|
-
'borderLeft',
|
|
111
|
-
'borderLeftColor',
|
|
112
|
-
'borderLeftStyle',
|
|
113
|
-
'borderLeftWidth',
|
|
114
|
-
'borderRadius',
|
|
115
|
-
'borderRight',
|
|
116
|
-
'borderRightColor',
|
|
117
|
-
'borderRightStyle',
|
|
118
|
-
'borderRightWidth',
|
|
119
|
-
'borderSpacing',
|
|
120
|
-
'borderStartEndRadius',
|
|
121
|
-
'borderStartStartRadius',
|
|
122
|
-
'borderStyle',
|
|
123
|
-
'borderTop',
|
|
124
|
-
'borderTopColor',
|
|
125
|
-
'borderTopLeftRadius',
|
|
126
|
-
'borderTopRightRadius',
|
|
127
|
-
'borderTopStyle',
|
|
128
|
-
'borderTopWidth',
|
|
129
|
-
'borderWidth',
|
|
130
|
-
'bottom',
|
|
131
|
-
'boxShadow',
|
|
132
|
-
'boxSizing',
|
|
133
|
-
'breakAfter',
|
|
134
|
-
'breakBefore',
|
|
135
|
-
'breakInside',
|
|
136
|
-
'bufferedRendering',
|
|
137
|
-
'captionSide',
|
|
138
|
-
'caretColor',
|
|
139
|
-
'clear',
|
|
140
|
-
'clip',
|
|
141
|
-
'clipPath',
|
|
142
|
-
'clipRule',
|
|
143
|
-
'color',
|
|
144
|
-
'colorInterpolation',
|
|
145
|
-
'colorInterpolationFilters',
|
|
146
|
-
'colorRendering',
|
|
147
|
-
'colorScheme',
|
|
148
|
-
'columnCount',
|
|
149
|
-
'columnFill',
|
|
150
|
-
'columnGap',
|
|
151
|
-
'columnRule',
|
|
152
|
-
'columnRuleColor',
|
|
153
|
-
'columnRuleStyle',
|
|
154
|
-
'columnRuleWidth',
|
|
155
|
-
'columnSpan',
|
|
156
|
-
'columnWidth',
|
|
157
|
-
'columns',
|
|
158
|
-
'contain',
|
|
159
|
-
'containIntrinsicBlockSize',
|
|
160
|
-
'containIntrinsicHeight',
|
|
161
|
-
'containIntrinsicInlineSize',
|
|
162
|
-
'containIntrinsicSize',
|
|
163
|
-
'containIntrinsicWidth',
|
|
164
|
-
'container',
|
|
165
|
-
'containerName',
|
|
166
|
-
'containerType',
|
|
167
|
-
'content',
|
|
168
|
-
'contentVisibility',
|
|
169
|
-
'counterIncrement',
|
|
170
|
-
'counterReset',
|
|
171
|
-
'counterSet',
|
|
172
|
-
'cursor',
|
|
173
|
-
'cx',
|
|
174
|
-
'cy',
|
|
175
|
-
'd',
|
|
176
|
-
'descentOverride',
|
|
177
|
-
'direction',
|
|
178
|
-
'display',
|
|
179
|
-
'dominantBaseline',
|
|
180
|
-
'emptyCells',
|
|
181
|
-
'fallback',
|
|
182
|
-
'fill',
|
|
183
|
-
'fillOpacity',
|
|
184
|
-
'fillRule',
|
|
185
|
-
'filter',
|
|
186
|
-
'flex',
|
|
187
|
-
'flexBasis',
|
|
188
|
-
'flexDirection',
|
|
189
|
-
'flexFlow',
|
|
190
|
-
'flexGrow',
|
|
191
|
-
'flexShrink',
|
|
192
|
-
'flexWrap',
|
|
193
|
-
'float',
|
|
194
|
-
'floodColor',
|
|
195
|
-
'floodOpacity',
|
|
196
|
-
'font',
|
|
197
|
-
'fontDisplay',
|
|
198
|
-
'fontFamily',
|
|
199
|
-
'fontFeatureSettings',
|
|
200
|
-
'fontKerning',
|
|
201
|
-
'fontOpticalSizing',
|
|
202
|
-
'fontPalette',
|
|
203
|
-
'fontSize',
|
|
204
|
-
'fontStretch',
|
|
205
|
-
'fontStyle',
|
|
206
|
-
'fontSynthesis',
|
|
207
|
-
'fontSynthesisSmallCaps',
|
|
208
|
-
'fontSynthesisStyle',
|
|
209
|
-
'fontSynthesisWeight',
|
|
210
|
-
'fontVariant',
|
|
211
|
-
'fontVariantCaps',
|
|
212
|
-
'fontVariantEastAsian',
|
|
213
|
-
'fontVariantLigatures',
|
|
214
|
-
'fontVariantNumeric',
|
|
215
|
-
'fontVariationSettings',
|
|
216
|
-
'fontWeight',
|
|
217
|
-
'forcedColorAdjust',
|
|
218
|
-
'gap',
|
|
219
|
-
'grid',
|
|
220
|
-
'gridArea',
|
|
221
|
-
'gridAutoColumns',
|
|
222
|
-
'gridAutoFlow',
|
|
223
|
-
'gridAutoRows',
|
|
224
|
-
'gridColumn',
|
|
225
|
-
'gridColumnEnd',
|
|
226
|
-
'gridColumnGap',
|
|
227
|
-
'gridColumnStart',
|
|
228
|
-
'gridGap',
|
|
229
|
-
'gridRow',
|
|
230
|
-
'gridRowEnd',
|
|
231
|
-
'gridRowGap',
|
|
232
|
-
'gridRowStart',
|
|
233
|
-
'gridTemplate',
|
|
234
|
-
'gridTemplateAreas',
|
|
235
|
-
'gridTemplateColumns',
|
|
236
|
-
'gridTemplateRows',
|
|
237
|
-
'height',
|
|
238
|
-
'hyphenateCharacter',
|
|
239
|
-
'hyphens',
|
|
240
|
-
'imageOrientation',
|
|
241
|
-
'imageRendering',
|
|
242
|
-
'inherits',
|
|
243
|
-
'initialValue',
|
|
244
|
-
'inlineSize',
|
|
245
|
-
'inset',
|
|
246
|
-
'insetBlock',
|
|
247
|
-
'insetBlockEnd',
|
|
248
|
-
'insetBlockStart',
|
|
249
|
-
'insetInline',
|
|
250
|
-
'insetInlineEnd',
|
|
251
|
-
'insetInlineStart',
|
|
252
|
-
'isolation',
|
|
253
|
-
'justifyContent',
|
|
254
|
-
'justifyItems',
|
|
255
|
-
'justifySelf',
|
|
256
|
-
'left',
|
|
257
|
-
'letterSpacing',
|
|
258
|
-
'lightingColor',
|
|
259
|
-
'lineBreak',
|
|
260
|
-
'lineGapOverride',
|
|
261
|
-
'lineHeight',
|
|
262
|
-
'listStyle',
|
|
263
|
-
'listStyleImage',
|
|
264
|
-
'listStylePosition',
|
|
265
|
-
'listStyleType',
|
|
266
|
-
'margin',
|
|
267
|
-
'marginBlock',
|
|
268
|
-
'marginBlockEnd',
|
|
269
|
-
'marginBlockStart',
|
|
270
|
-
'marginBottom',
|
|
271
|
-
'marginInline',
|
|
272
|
-
'marginInlineEnd',
|
|
273
|
-
'marginInlineStart',
|
|
274
|
-
'marginLeft',
|
|
275
|
-
'marginRight',
|
|
276
|
-
'marginTop',
|
|
277
|
-
'marker',
|
|
278
|
-
'markerEnd',
|
|
279
|
-
'markerMid',
|
|
280
|
-
'markerStart',
|
|
281
|
-
'mask',
|
|
282
|
-
'maskType',
|
|
283
|
-
'maxBlockSize',
|
|
284
|
-
'maxHeight',
|
|
285
|
-
'maxInlineSize',
|
|
286
|
-
'maxWidth',
|
|
287
|
-
'minBlockSize',
|
|
288
|
-
'minHeight',
|
|
289
|
-
'minInlineSize',
|
|
290
|
-
'minWidth',
|
|
291
|
-
'mixBlendMode',
|
|
292
|
-
'negative',
|
|
293
|
-
'objectFit',
|
|
294
|
-
'objectPosition',
|
|
295
|
-
'objectViewBox',
|
|
296
|
-
'offset',
|
|
297
|
-
'offsetDistance',
|
|
298
|
-
'offsetPath',
|
|
299
|
-
'offsetRotate',
|
|
300
|
-
'opacity',
|
|
301
|
-
'order',
|
|
302
|
-
'orphans',
|
|
303
|
-
'outline',
|
|
304
|
-
'outlineColor',
|
|
305
|
-
'outlineOffset',
|
|
306
|
-
'outlineStyle',
|
|
307
|
-
'outlineWidth',
|
|
308
|
-
'overflow',
|
|
309
|
-
'overflowAnchor',
|
|
310
|
-
'overflowClipMargin',
|
|
311
|
-
'overflowWrap',
|
|
312
|
-
'overflowX',
|
|
313
|
-
'overflowY',
|
|
314
|
-
'overrideColors',
|
|
315
|
-
'overscrollBehavior',
|
|
316
|
-
'overscrollBehaviorBlock',
|
|
317
|
-
'overscrollBehaviorInline',
|
|
318
|
-
'overscrollBehaviorX',
|
|
319
|
-
'overscrollBehaviorY',
|
|
320
|
-
'pad',
|
|
321
|
-
'padding',
|
|
322
|
-
'paddingBlock',
|
|
323
|
-
'paddingBlockEnd',
|
|
324
|
-
'paddingBlockStart',
|
|
325
|
-
'paddingBottom',
|
|
326
|
-
'paddingInline',
|
|
327
|
-
'paddingInlineEnd',
|
|
328
|
-
'paddingInlineStart',
|
|
329
|
-
'paddingLeft',
|
|
330
|
-
'paddingRight',
|
|
331
|
-
'paddingTop',
|
|
332
|
-
'page',
|
|
333
|
-
'pageBreakAfter',
|
|
334
|
-
'pageBreakBefore',
|
|
335
|
-
'pageBreakInside',
|
|
336
|
-
'pageOrientation',
|
|
337
|
-
'paintOrder',
|
|
338
|
-
'perspective',
|
|
339
|
-
'perspectiveOrigin',
|
|
340
|
-
'placeContent',
|
|
341
|
-
'placeItems',
|
|
342
|
-
'placeSelf',
|
|
343
|
-
'pointerEvents',
|
|
344
|
-
'position',
|
|
345
|
-
'prefix',
|
|
346
|
-
'quotes',
|
|
347
|
-
'r',
|
|
348
|
-
'range',
|
|
349
|
-
'resize',
|
|
350
|
-
'right',
|
|
351
|
-
'rotate',
|
|
352
|
-
'rowGap',
|
|
353
|
-
'rubyPosition',
|
|
354
|
-
'rx',
|
|
355
|
-
'ry',
|
|
356
|
-
'scale',
|
|
357
|
-
'scrollBehavior',
|
|
358
|
-
'scrollMargin',
|
|
359
|
-
'scrollMarginBlock',
|
|
360
|
-
'scrollMarginBlockEnd',
|
|
361
|
-
'scrollMarginBlockStart',
|
|
362
|
-
'scrollMarginBottom',
|
|
363
|
-
'scrollMarginInline',
|
|
364
|
-
'scrollMarginInlineEnd',
|
|
365
|
-
'scrollMarginInlineStart',
|
|
366
|
-
'scrollMarginLeft',
|
|
367
|
-
'scrollMarginRight',
|
|
368
|
-
'scrollMarginTop',
|
|
369
|
-
'scrollPadding',
|
|
370
|
-
'scrollPaddingBlock',
|
|
371
|
-
'scrollPaddingBlockEnd',
|
|
372
|
-
'scrollPaddingBlockStart',
|
|
373
|
-
'scrollPaddingBottom',
|
|
374
|
-
'scrollPaddingInline',
|
|
375
|
-
'scrollPaddingInlineEnd',
|
|
376
|
-
'scrollPaddingInlineStart',
|
|
377
|
-
'scrollPaddingLeft',
|
|
378
|
-
'scrollPaddingRight',
|
|
379
|
-
'scrollPaddingTop',
|
|
380
|
-
'scrollSnapAlign',
|
|
381
|
-
'scrollSnapStop',
|
|
382
|
-
'scrollSnapType',
|
|
383
|
-
'scrollbarGutter',
|
|
384
|
-
'shapeImageThreshold',
|
|
385
|
-
'shapeMargin',
|
|
386
|
-
'shapeOutside',
|
|
387
|
-
'shapeRendering',
|
|
388
|
-
'size',
|
|
389
|
-
'sizeAdjust',
|
|
390
|
-
'speak',
|
|
391
|
-
'speakAs',
|
|
392
|
-
'src',
|
|
393
|
-
'stopColor',
|
|
394
|
-
'stopOpacity',
|
|
395
|
-
'stroke',
|
|
396
|
-
'strokeDasharray',
|
|
397
|
-
'strokeDashoffset',
|
|
398
|
-
'strokeLinecap',
|
|
399
|
-
'strokeLinejoin',
|
|
400
|
-
'strokeMiterlimit',
|
|
401
|
-
'strokeOpacity',
|
|
402
|
-
'strokeWidth',
|
|
403
|
-
'suffix',
|
|
404
|
-
'symbols',
|
|
405
|
-
'syntax',
|
|
406
|
-
'system',
|
|
407
|
-
'tabSize',
|
|
408
|
-
'tableLayout',
|
|
409
|
-
'textAlign',
|
|
410
|
-
'textAlignLast',
|
|
411
|
-
'textAnchor',
|
|
412
|
-
'textCombineUpright',
|
|
413
|
-
'textDecoration',
|
|
414
|
-
'textDecorationColor',
|
|
415
|
-
'textDecorationLine',
|
|
416
|
-
'textDecorationSkipInk',
|
|
417
|
-
'textDecorationStyle',
|
|
418
|
-
'textDecorationThickness',
|
|
419
|
-
'textEmphasis',
|
|
420
|
-
'textEmphasisColor',
|
|
421
|
-
'textEmphasisPosition',
|
|
422
|
-
'textEmphasisStyle',
|
|
423
|
-
'textIndent',
|
|
424
|
-
'textOrientation',
|
|
425
|
-
'textOverflow',
|
|
426
|
-
'textRendering',
|
|
427
|
-
'textShadow',
|
|
428
|
-
'textSizeAdjust',
|
|
429
|
-
'textTransform',
|
|
430
|
-
'textUnderlineOffset',
|
|
431
|
-
'textUnderlinePosition',
|
|
432
|
-
'top',
|
|
433
|
-
'touchAction',
|
|
434
|
-
'transform',
|
|
435
|
-
'transformBox',
|
|
436
|
-
'transformOrigin',
|
|
437
|
-
'transformStyle',
|
|
438
|
-
'transition',
|
|
439
|
-
'transitionDelay',
|
|
440
|
-
'transitionDuration',
|
|
441
|
-
'transitionProperty',
|
|
442
|
-
'transitionTimingFunction',
|
|
443
|
-
'translate',
|
|
444
|
-
'unicodeBidi',
|
|
445
|
-
'unicodeRange',
|
|
446
|
-
'userSelect',
|
|
447
|
-
'vectorEffect',
|
|
448
|
-
'verticalAlign',
|
|
449
|
-
'visibility',
|
|
450
|
-
'webkitAlignContent',
|
|
451
|
-
'webkitAlignItems',
|
|
452
|
-
'webkitAlignSelf',
|
|
453
|
-
'webkitAnimation',
|
|
454
|
-
'webkitAnimationDelay',
|
|
455
|
-
'webkitAnimationDirection',
|
|
456
|
-
'webkitAnimationDuration',
|
|
457
|
-
'webkitAnimationFillMode',
|
|
458
|
-
'webkitAnimationIterationCount',
|
|
459
|
-
'webkitAnimationName',
|
|
460
|
-
'webkitAnimationPlayState',
|
|
461
|
-
'webkitAnimationTimingFunction',
|
|
462
|
-
'webkitAppRegion',
|
|
463
|
-
'webkitAppearance',
|
|
464
|
-
'webkitBackfaceVisibility',
|
|
465
|
-
'webkitBackgroundClip',
|
|
466
|
-
'webkitBackgroundOrigin',
|
|
467
|
-
'webkitBackgroundSize',
|
|
468
|
-
'webkitBorderAfter',
|
|
469
|
-
'webkitBorderAfterColor',
|
|
470
|
-
'webkitBorderAfterStyle',
|
|
471
|
-
'webkitBorderAfterWidth',
|
|
472
|
-
'webkitBorderBefore',
|
|
473
|
-
'webkitBorderBeforeColor',
|
|
474
|
-
'webkitBorderBeforeStyle',
|
|
475
|
-
'webkitBorderBeforeWidth',
|
|
476
|
-
'webkitBorderBottomLeftRadius',
|
|
477
|
-
'webkitBorderBottomRightRadius',
|
|
478
|
-
'webkitBorderEnd',
|
|
479
|
-
'webkitBorderEndColor',
|
|
480
|
-
'webkitBorderEndStyle',
|
|
481
|
-
'webkitBorderEndWidth',
|
|
482
|
-
'webkitBorderHorizontalSpacing',
|
|
483
|
-
'webkitBorderImage',
|
|
484
|
-
'webkitBorderRadius',
|
|
485
|
-
'webkitBorderStart',
|
|
486
|
-
'webkitBorderStartColor',
|
|
487
|
-
'webkitBorderStartStyle',
|
|
488
|
-
'webkitBorderStartWidth',
|
|
489
|
-
'webkitBorderTopLeftRadius',
|
|
490
|
-
'webkitBorderTopRightRadius',
|
|
491
|
-
'webkitBorderVerticalSpacing',
|
|
492
|
-
'webkitBoxAlign',
|
|
493
|
-
'webkitBoxDecorationBreak',
|
|
494
|
-
'webkitBoxDirection',
|
|
495
|
-
'webkitBoxFlex',
|
|
496
|
-
'webkitBoxOrdinalGroup',
|
|
497
|
-
'webkitBoxOrient',
|
|
498
|
-
'webkitBoxPack',
|
|
499
|
-
'webkitBoxReflect',
|
|
500
|
-
'webkitBoxShadow',
|
|
501
|
-
'webkitBoxSizing',
|
|
502
|
-
'webkitClipPath',
|
|
503
|
-
'webkitColumnBreakAfter',
|
|
504
|
-
'webkitColumnBreakBefore',
|
|
505
|
-
'webkitColumnBreakInside',
|
|
506
|
-
'webkitColumnCount',
|
|
507
|
-
'webkitColumnGap',
|
|
508
|
-
'webkitColumnRule',
|
|
509
|
-
'webkitColumnRuleColor',
|
|
510
|
-
'webkitColumnRuleStyle',
|
|
511
|
-
'webkitColumnRuleWidth',
|
|
512
|
-
'webkitColumnSpan',
|
|
513
|
-
'webkitColumnWidth',
|
|
514
|
-
'webkitColumns',
|
|
515
|
-
'webkitFilter',
|
|
516
|
-
'webkitFlex',
|
|
517
|
-
'webkitFlexBasis',
|
|
518
|
-
'webkitFlexDirection',
|
|
519
|
-
'webkitFlexFlow',
|
|
520
|
-
'webkitFlexGrow',
|
|
521
|
-
'webkitFlexShrink',
|
|
522
|
-
'webkitFlexWrap',
|
|
523
|
-
'webkitFontFeatureSettings',
|
|
524
|
-
'webkitFontSmoothing',
|
|
525
|
-
'webkitHighlight',
|
|
526
|
-
'webkitHyphenateCharacter',
|
|
527
|
-
'webkitJustifyContent',
|
|
528
|
-
'webkitLineBreak',
|
|
529
|
-
'webkitLineClamp',
|
|
530
|
-
'webkitLocale',
|
|
531
|
-
'webkitLogicalHeight',
|
|
532
|
-
'webkitLogicalWidth',
|
|
533
|
-
'webkitMarginAfter',
|
|
534
|
-
'webkitMarginBefore',
|
|
535
|
-
'webkitMarginEnd',
|
|
536
|
-
'webkitMarginStart',
|
|
537
|
-
'webkitMask',
|
|
538
|
-
'webkitMaskBoxImage',
|
|
539
|
-
'webkitMaskBoxImageOutset',
|
|
540
|
-
'webkitMaskBoxImageRepeat',
|
|
541
|
-
'webkitMaskBoxImageSlice',
|
|
542
|
-
'webkitMaskBoxImageSource',
|
|
543
|
-
'webkitMaskBoxImageWidth',
|
|
544
|
-
'webkitMaskClip',
|
|
545
|
-
'webkitMaskComposite',
|
|
546
|
-
'webkitMaskImage',
|
|
547
|
-
'webkitMaskOrigin',
|
|
548
|
-
'webkitMaskPosition',
|
|
549
|
-
'webkitMaskPositionX',
|
|
550
|
-
'webkitMaskPositionY',
|
|
551
|
-
'webkitMaskRepeat',
|
|
552
|
-
'webkitMaskRepeatX',
|
|
553
|
-
'webkitMaskRepeatY',
|
|
554
|
-
'webkitMaskSize',
|
|
555
|
-
'webkitMaxLogicalHeight',
|
|
556
|
-
'webkitMaxLogicalWidth',
|
|
557
|
-
'webkitMinLogicalHeight',
|
|
558
|
-
'webkitMinLogicalWidth',
|
|
559
|
-
'webkitOpacity',
|
|
560
|
-
'webkitOrder',
|
|
561
|
-
'webkitPaddingAfter',
|
|
562
|
-
'webkitPaddingBefore',
|
|
563
|
-
'webkitPaddingEnd',
|
|
564
|
-
'webkitPaddingStart',
|
|
565
|
-
'webkitPerspective',
|
|
566
|
-
'webkitPerspectiveOrigin',
|
|
567
|
-
'webkitPerspectiveOriginX',
|
|
568
|
-
'webkitPerspectiveOriginY',
|
|
569
|
-
'webkitPrintColorAdjust',
|
|
570
|
-
'webkitRtlOrdering',
|
|
571
|
-
'webkitRubyPosition',
|
|
572
|
-
'webkitShapeImageThreshold',
|
|
573
|
-
'webkitShapeMargin',
|
|
574
|
-
'webkitShapeOutside',
|
|
575
|
-
'webkitTapHighlightColor',
|
|
576
|
-
'webkitTextCombine',
|
|
577
|
-
'webkitTextDecorationsInEffect',
|
|
578
|
-
'webkitTextEmphasis',
|
|
579
|
-
'webkitTextEmphasisColor',
|
|
580
|
-
'webkitTextEmphasisPosition',
|
|
581
|
-
'webkitTextEmphasisStyle',
|
|
582
|
-
'webkitTextFillColor',
|
|
583
|
-
'webkitTextOrientation',
|
|
584
|
-
'webkitTextSecurity',
|
|
585
|
-
'webkitTextSizeAdjust',
|
|
586
|
-
'webkitTextStroke',
|
|
587
|
-
'webkitTextStrokeColor',
|
|
588
|
-
'webkitTextStrokeWidth',
|
|
589
|
-
'webkitTransform',
|
|
590
|
-
'webkitTransformOrigin',
|
|
591
|
-
'webkitTransformOriginX',
|
|
592
|
-
'webkitTransformOriginY',
|
|
593
|
-
'webkitTransformOriginZ',
|
|
594
|
-
'webkitTransformStyle',
|
|
595
|
-
'webkitTransition',
|
|
596
|
-
'webkitTransitionDelay',
|
|
597
|
-
'webkitTransitionDuration',
|
|
598
|
-
'webkitTransitionProperty',
|
|
599
|
-
'webkitTransitionTimingFunction',
|
|
600
|
-
'webkitUserDrag',
|
|
601
|
-
'webkitUserModify',
|
|
602
|
-
'webkitUserSelect',
|
|
603
|
-
'webkitWritingMode',
|
|
604
|
-
'whiteSpace',
|
|
605
|
-
'widows',
|
|
606
|
-
'width',
|
|
607
|
-
'willChange',
|
|
608
|
-
'wordBreak',
|
|
609
|
-
'wordSpacing',
|
|
610
|
-
'wordWrap',
|
|
611
|
-
'writingMode',
|
|
612
|
-
'x',
|
|
613
|
-
'y',
|
|
614
|
-
'zIndex',
|
|
615
|
-
'zoom',
|
|
616
|
-
];
|
|
1
|
+
export const ElementKeyNames = [
|
|
2
|
+
'0',
|
|
3
|
+
'1',
|
|
4
|
+
'2',
|
|
5
|
+
'3',
|
|
6
|
+
'4',
|
|
7
|
+
'5',
|
|
8
|
+
'6',
|
|
9
|
+
'7',
|
|
10
|
+
'8',
|
|
11
|
+
'9',
|
|
12
|
+
'10',
|
|
13
|
+
'11',
|
|
14
|
+
'12',
|
|
15
|
+
'13',
|
|
16
|
+
'14',
|
|
17
|
+
'15',
|
|
18
|
+
'16',
|
|
19
|
+
'17',
|
|
20
|
+
'18',
|
|
21
|
+
'19',
|
|
22
|
+
'20',
|
|
23
|
+
'21',
|
|
24
|
+
'22',
|
|
25
|
+
'23',
|
|
26
|
+
'24',
|
|
27
|
+
'25',
|
|
28
|
+
'26',
|
|
29
|
+
'27',
|
|
30
|
+
'accentColor',
|
|
31
|
+
'additiveSymbols',
|
|
32
|
+
'alignContent',
|
|
33
|
+
'alignItems',
|
|
34
|
+
'alignSelf',
|
|
35
|
+
'alignmentBaseline',
|
|
36
|
+
'all',
|
|
37
|
+
'animation',
|
|
38
|
+
'animationDelay',
|
|
39
|
+
'animationDirection',
|
|
40
|
+
'animationDuration',
|
|
41
|
+
'animationFillMode',
|
|
42
|
+
'animationIterationCount',
|
|
43
|
+
'animationName',
|
|
44
|
+
'animationPlayState',
|
|
45
|
+
'animationTimingFunction',
|
|
46
|
+
'appRegion',
|
|
47
|
+
'appearance',
|
|
48
|
+
'ascentOverride',
|
|
49
|
+
'aspectRatio',
|
|
50
|
+
'backdropFilter',
|
|
51
|
+
'backfaceVisibility',
|
|
52
|
+
'background',
|
|
53
|
+
'backgroundAttachment',
|
|
54
|
+
'backgroundBlendMode',
|
|
55
|
+
'backgroundClip',
|
|
56
|
+
'backgroundColor',
|
|
57
|
+
'backgroundImage',
|
|
58
|
+
'backgroundOrigin',
|
|
59
|
+
'backgroundPosition',
|
|
60
|
+
'backgroundPositionX',
|
|
61
|
+
'backgroundPositionY',
|
|
62
|
+
'backgroundRepeat',
|
|
63
|
+
'backgroundRepeatX',
|
|
64
|
+
'backgroundRepeatY',
|
|
65
|
+
'backgroundSize',
|
|
66
|
+
'basePalette',
|
|
67
|
+
'baselineShift',
|
|
68
|
+
'blockSize',
|
|
69
|
+
'border',
|
|
70
|
+
'borderBlock',
|
|
71
|
+
'borderBlockColor',
|
|
72
|
+
'borderBlockEnd',
|
|
73
|
+
'borderBlockEndColor',
|
|
74
|
+
'borderBlockEndStyle',
|
|
75
|
+
'borderBlockEndWidth',
|
|
76
|
+
'borderBlockStart',
|
|
77
|
+
'borderBlockStartColor',
|
|
78
|
+
'borderBlockStartStyle',
|
|
79
|
+
'borderBlockStartWidth',
|
|
80
|
+
'borderBlockStyle',
|
|
81
|
+
'borderBlockWidth',
|
|
82
|
+
'borderBottom',
|
|
83
|
+
'borderBottomColor',
|
|
84
|
+
'borderBottomLeftRadius',
|
|
85
|
+
'borderBottomRightRadius',
|
|
86
|
+
'borderBottomStyle',
|
|
87
|
+
'borderBottomWidth',
|
|
88
|
+
'borderCollapse',
|
|
89
|
+
'borderColor',
|
|
90
|
+
'borderEndEndRadius',
|
|
91
|
+
'borderEndStartRadius',
|
|
92
|
+
'borderImage',
|
|
93
|
+
'borderImageOutset',
|
|
94
|
+
'borderImageRepeat',
|
|
95
|
+
'borderImageSlice',
|
|
96
|
+
'borderImageSource',
|
|
97
|
+
'borderImageWidth',
|
|
98
|
+
'borderInline',
|
|
99
|
+
'borderInlineColor',
|
|
100
|
+
'borderInlineEnd',
|
|
101
|
+
'borderInlineEndColor',
|
|
102
|
+
'borderInlineEndStyle',
|
|
103
|
+
'borderInlineEndWidth',
|
|
104
|
+
'borderInlineStart',
|
|
105
|
+
'borderInlineStartColor',
|
|
106
|
+
'borderInlineStartStyle',
|
|
107
|
+
'borderInlineStartWidth',
|
|
108
|
+
'borderInlineStyle',
|
|
109
|
+
'borderInlineWidth',
|
|
110
|
+
'borderLeft',
|
|
111
|
+
'borderLeftColor',
|
|
112
|
+
'borderLeftStyle',
|
|
113
|
+
'borderLeftWidth',
|
|
114
|
+
'borderRadius',
|
|
115
|
+
'borderRight',
|
|
116
|
+
'borderRightColor',
|
|
117
|
+
'borderRightStyle',
|
|
118
|
+
'borderRightWidth',
|
|
119
|
+
'borderSpacing',
|
|
120
|
+
'borderStartEndRadius',
|
|
121
|
+
'borderStartStartRadius',
|
|
122
|
+
'borderStyle',
|
|
123
|
+
'borderTop',
|
|
124
|
+
'borderTopColor',
|
|
125
|
+
'borderTopLeftRadius',
|
|
126
|
+
'borderTopRightRadius',
|
|
127
|
+
'borderTopStyle',
|
|
128
|
+
'borderTopWidth',
|
|
129
|
+
'borderWidth',
|
|
130
|
+
'bottom',
|
|
131
|
+
'boxShadow',
|
|
132
|
+
'boxSizing',
|
|
133
|
+
'breakAfter',
|
|
134
|
+
'breakBefore',
|
|
135
|
+
'breakInside',
|
|
136
|
+
'bufferedRendering',
|
|
137
|
+
'captionSide',
|
|
138
|
+
'caretColor',
|
|
139
|
+
'clear',
|
|
140
|
+
'clip',
|
|
141
|
+
'clipPath',
|
|
142
|
+
'clipRule',
|
|
143
|
+
'color',
|
|
144
|
+
'colorInterpolation',
|
|
145
|
+
'colorInterpolationFilters',
|
|
146
|
+
'colorRendering',
|
|
147
|
+
'colorScheme',
|
|
148
|
+
'columnCount',
|
|
149
|
+
'columnFill',
|
|
150
|
+
'columnGap',
|
|
151
|
+
'columnRule',
|
|
152
|
+
'columnRuleColor',
|
|
153
|
+
'columnRuleStyle',
|
|
154
|
+
'columnRuleWidth',
|
|
155
|
+
'columnSpan',
|
|
156
|
+
'columnWidth',
|
|
157
|
+
'columns',
|
|
158
|
+
'contain',
|
|
159
|
+
'containIntrinsicBlockSize',
|
|
160
|
+
'containIntrinsicHeight',
|
|
161
|
+
'containIntrinsicInlineSize',
|
|
162
|
+
'containIntrinsicSize',
|
|
163
|
+
'containIntrinsicWidth',
|
|
164
|
+
'container',
|
|
165
|
+
'containerName',
|
|
166
|
+
'containerType',
|
|
167
|
+
'content',
|
|
168
|
+
'contentVisibility',
|
|
169
|
+
'counterIncrement',
|
|
170
|
+
'counterReset',
|
|
171
|
+
'counterSet',
|
|
172
|
+
'cursor',
|
|
173
|
+
'cx',
|
|
174
|
+
'cy',
|
|
175
|
+
'd',
|
|
176
|
+
'descentOverride',
|
|
177
|
+
'direction',
|
|
178
|
+
'display',
|
|
179
|
+
'dominantBaseline',
|
|
180
|
+
'emptyCells',
|
|
181
|
+
'fallback',
|
|
182
|
+
'fill',
|
|
183
|
+
'fillOpacity',
|
|
184
|
+
'fillRule',
|
|
185
|
+
'filter',
|
|
186
|
+
'flex',
|
|
187
|
+
'flexBasis',
|
|
188
|
+
'flexDirection',
|
|
189
|
+
'flexFlow',
|
|
190
|
+
'flexGrow',
|
|
191
|
+
'flexShrink',
|
|
192
|
+
'flexWrap',
|
|
193
|
+
'float',
|
|
194
|
+
'floodColor',
|
|
195
|
+
'floodOpacity',
|
|
196
|
+
'font',
|
|
197
|
+
'fontDisplay',
|
|
198
|
+
'fontFamily',
|
|
199
|
+
'fontFeatureSettings',
|
|
200
|
+
'fontKerning',
|
|
201
|
+
'fontOpticalSizing',
|
|
202
|
+
'fontPalette',
|
|
203
|
+
'fontSize',
|
|
204
|
+
'fontStretch',
|
|
205
|
+
'fontStyle',
|
|
206
|
+
'fontSynthesis',
|
|
207
|
+
'fontSynthesisSmallCaps',
|
|
208
|
+
'fontSynthesisStyle',
|
|
209
|
+
'fontSynthesisWeight',
|
|
210
|
+
'fontVariant',
|
|
211
|
+
'fontVariantCaps',
|
|
212
|
+
'fontVariantEastAsian',
|
|
213
|
+
'fontVariantLigatures',
|
|
214
|
+
'fontVariantNumeric',
|
|
215
|
+
'fontVariationSettings',
|
|
216
|
+
'fontWeight',
|
|
217
|
+
'forcedColorAdjust',
|
|
218
|
+
'gap',
|
|
219
|
+
'grid',
|
|
220
|
+
'gridArea',
|
|
221
|
+
'gridAutoColumns',
|
|
222
|
+
'gridAutoFlow',
|
|
223
|
+
'gridAutoRows',
|
|
224
|
+
'gridColumn',
|
|
225
|
+
'gridColumnEnd',
|
|
226
|
+
'gridColumnGap',
|
|
227
|
+
'gridColumnStart',
|
|
228
|
+
'gridGap',
|
|
229
|
+
'gridRow',
|
|
230
|
+
'gridRowEnd',
|
|
231
|
+
'gridRowGap',
|
|
232
|
+
'gridRowStart',
|
|
233
|
+
'gridTemplate',
|
|
234
|
+
'gridTemplateAreas',
|
|
235
|
+
'gridTemplateColumns',
|
|
236
|
+
'gridTemplateRows',
|
|
237
|
+
'height',
|
|
238
|
+
'hyphenateCharacter',
|
|
239
|
+
'hyphens',
|
|
240
|
+
'imageOrientation',
|
|
241
|
+
'imageRendering',
|
|
242
|
+
'inherits',
|
|
243
|
+
'initialValue',
|
|
244
|
+
'inlineSize',
|
|
245
|
+
'inset',
|
|
246
|
+
'insetBlock',
|
|
247
|
+
'insetBlockEnd',
|
|
248
|
+
'insetBlockStart',
|
|
249
|
+
'insetInline',
|
|
250
|
+
'insetInlineEnd',
|
|
251
|
+
'insetInlineStart',
|
|
252
|
+
'isolation',
|
|
253
|
+
'justifyContent',
|
|
254
|
+
'justifyItems',
|
|
255
|
+
'justifySelf',
|
|
256
|
+
'left',
|
|
257
|
+
'letterSpacing',
|
|
258
|
+
'lightingColor',
|
|
259
|
+
'lineBreak',
|
|
260
|
+
'lineGapOverride',
|
|
261
|
+
'lineHeight',
|
|
262
|
+
'listStyle',
|
|
263
|
+
'listStyleImage',
|
|
264
|
+
'listStylePosition',
|
|
265
|
+
'listStyleType',
|
|
266
|
+
'margin',
|
|
267
|
+
'marginBlock',
|
|
268
|
+
'marginBlockEnd',
|
|
269
|
+
'marginBlockStart',
|
|
270
|
+
'marginBottom',
|
|
271
|
+
'marginInline',
|
|
272
|
+
'marginInlineEnd',
|
|
273
|
+
'marginInlineStart',
|
|
274
|
+
'marginLeft',
|
|
275
|
+
'marginRight',
|
|
276
|
+
'marginTop',
|
|
277
|
+
'marker',
|
|
278
|
+
'markerEnd',
|
|
279
|
+
'markerMid',
|
|
280
|
+
'markerStart',
|
|
281
|
+
'mask',
|
|
282
|
+
'maskType',
|
|
283
|
+
'maxBlockSize',
|
|
284
|
+
'maxHeight',
|
|
285
|
+
'maxInlineSize',
|
|
286
|
+
'maxWidth',
|
|
287
|
+
'minBlockSize',
|
|
288
|
+
'minHeight',
|
|
289
|
+
'minInlineSize',
|
|
290
|
+
'minWidth',
|
|
291
|
+
'mixBlendMode',
|
|
292
|
+
'negative',
|
|
293
|
+
'objectFit',
|
|
294
|
+
'objectPosition',
|
|
295
|
+
'objectViewBox',
|
|
296
|
+
'offset',
|
|
297
|
+
'offsetDistance',
|
|
298
|
+
'offsetPath',
|
|
299
|
+
'offsetRotate',
|
|
300
|
+
'opacity',
|
|
301
|
+
'order',
|
|
302
|
+
'orphans',
|
|
303
|
+
'outline',
|
|
304
|
+
'outlineColor',
|
|
305
|
+
'outlineOffset',
|
|
306
|
+
'outlineStyle',
|
|
307
|
+
'outlineWidth',
|
|
308
|
+
'overflow',
|
|
309
|
+
'overflowAnchor',
|
|
310
|
+
'overflowClipMargin',
|
|
311
|
+
'overflowWrap',
|
|
312
|
+
'overflowX',
|
|
313
|
+
'overflowY',
|
|
314
|
+
'overrideColors',
|
|
315
|
+
'overscrollBehavior',
|
|
316
|
+
'overscrollBehaviorBlock',
|
|
317
|
+
'overscrollBehaviorInline',
|
|
318
|
+
'overscrollBehaviorX',
|
|
319
|
+
'overscrollBehaviorY',
|
|
320
|
+
'pad',
|
|
321
|
+
'padding',
|
|
322
|
+
'paddingBlock',
|
|
323
|
+
'paddingBlockEnd',
|
|
324
|
+
'paddingBlockStart',
|
|
325
|
+
'paddingBottom',
|
|
326
|
+
'paddingInline',
|
|
327
|
+
'paddingInlineEnd',
|
|
328
|
+
'paddingInlineStart',
|
|
329
|
+
'paddingLeft',
|
|
330
|
+
'paddingRight',
|
|
331
|
+
'paddingTop',
|
|
332
|
+
'page',
|
|
333
|
+
'pageBreakAfter',
|
|
334
|
+
'pageBreakBefore',
|
|
335
|
+
'pageBreakInside',
|
|
336
|
+
'pageOrientation',
|
|
337
|
+
'paintOrder',
|
|
338
|
+
'perspective',
|
|
339
|
+
'perspectiveOrigin',
|
|
340
|
+
'placeContent',
|
|
341
|
+
'placeItems',
|
|
342
|
+
'placeSelf',
|
|
343
|
+
'pointerEvents',
|
|
344
|
+
'position',
|
|
345
|
+
'prefix',
|
|
346
|
+
'quotes',
|
|
347
|
+
'r',
|
|
348
|
+
'range',
|
|
349
|
+
'resize',
|
|
350
|
+
'right',
|
|
351
|
+
'rotate',
|
|
352
|
+
'rowGap',
|
|
353
|
+
'rubyPosition',
|
|
354
|
+
'rx',
|
|
355
|
+
'ry',
|
|
356
|
+
'scale',
|
|
357
|
+
'scrollBehavior',
|
|
358
|
+
'scrollMargin',
|
|
359
|
+
'scrollMarginBlock',
|
|
360
|
+
'scrollMarginBlockEnd',
|
|
361
|
+
'scrollMarginBlockStart',
|
|
362
|
+
'scrollMarginBottom',
|
|
363
|
+
'scrollMarginInline',
|
|
364
|
+
'scrollMarginInlineEnd',
|
|
365
|
+
'scrollMarginInlineStart',
|
|
366
|
+
'scrollMarginLeft',
|
|
367
|
+
'scrollMarginRight',
|
|
368
|
+
'scrollMarginTop',
|
|
369
|
+
'scrollPadding',
|
|
370
|
+
'scrollPaddingBlock',
|
|
371
|
+
'scrollPaddingBlockEnd',
|
|
372
|
+
'scrollPaddingBlockStart',
|
|
373
|
+
'scrollPaddingBottom',
|
|
374
|
+
'scrollPaddingInline',
|
|
375
|
+
'scrollPaddingInlineEnd',
|
|
376
|
+
'scrollPaddingInlineStart',
|
|
377
|
+
'scrollPaddingLeft',
|
|
378
|
+
'scrollPaddingRight',
|
|
379
|
+
'scrollPaddingTop',
|
|
380
|
+
'scrollSnapAlign',
|
|
381
|
+
'scrollSnapStop',
|
|
382
|
+
'scrollSnapType',
|
|
383
|
+
'scrollbarGutter',
|
|
384
|
+
'shapeImageThreshold',
|
|
385
|
+
'shapeMargin',
|
|
386
|
+
'shapeOutside',
|
|
387
|
+
'shapeRendering',
|
|
388
|
+
'size',
|
|
389
|
+
'sizeAdjust',
|
|
390
|
+
'speak',
|
|
391
|
+
'speakAs',
|
|
392
|
+
'src',
|
|
393
|
+
'stopColor',
|
|
394
|
+
'stopOpacity',
|
|
395
|
+
'stroke',
|
|
396
|
+
'strokeDasharray',
|
|
397
|
+
'strokeDashoffset',
|
|
398
|
+
'strokeLinecap',
|
|
399
|
+
'strokeLinejoin',
|
|
400
|
+
'strokeMiterlimit',
|
|
401
|
+
'strokeOpacity',
|
|
402
|
+
'strokeWidth',
|
|
403
|
+
'suffix',
|
|
404
|
+
'symbols',
|
|
405
|
+
'syntax',
|
|
406
|
+
'system',
|
|
407
|
+
'tabSize',
|
|
408
|
+
'tableLayout',
|
|
409
|
+
'textAlign',
|
|
410
|
+
'textAlignLast',
|
|
411
|
+
'textAnchor',
|
|
412
|
+
'textCombineUpright',
|
|
413
|
+
'textDecoration',
|
|
414
|
+
'textDecorationColor',
|
|
415
|
+
'textDecorationLine',
|
|
416
|
+
'textDecorationSkipInk',
|
|
417
|
+
'textDecorationStyle',
|
|
418
|
+
'textDecorationThickness',
|
|
419
|
+
'textEmphasis',
|
|
420
|
+
'textEmphasisColor',
|
|
421
|
+
'textEmphasisPosition',
|
|
422
|
+
'textEmphasisStyle',
|
|
423
|
+
'textIndent',
|
|
424
|
+
'textOrientation',
|
|
425
|
+
'textOverflow',
|
|
426
|
+
'textRendering',
|
|
427
|
+
'textShadow',
|
|
428
|
+
'textSizeAdjust',
|
|
429
|
+
'textTransform',
|
|
430
|
+
'textUnderlineOffset',
|
|
431
|
+
'textUnderlinePosition',
|
|
432
|
+
'top',
|
|
433
|
+
'touchAction',
|
|
434
|
+
'transform',
|
|
435
|
+
'transformBox',
|
|
436
|
+
'transformOrigin',
|
|
437
|
+
'transformStyle',
|
|
438
|
+
'transition',
|
|
439
|
+
'transitionDelay',
|
|
440
|
+
'transitionDuration',
|
|
441
|
+
'transitionProperty',
|
|
442
|
+
'transitionTimingFunction',
|
|
443
|
+
'translate',
|
|
444
|
+
'unicodeBidi',
|
|
445
|
+
'unicodeRange',
|
|
446
|
+
'userSelect',
|
|
447
|
+
'vectorEffect',
|
|
448
|
+
'verticalAlign',
|
|
449
|
+
'visibility',
|
|
450
|
+
'webkitAlignContent',
|
|
451
|
+
'webkitAlignItems',
|
|
452
|
+
'webkitAlignSelf',
|
|
453
|
+
'webkitAnimation',
|
|
454
|
+
'webkitAnimationDelay',
|
|
455
|
+
'webkitAnimationDirection',
|
|
456
|
+
'webkitAnimationDuration',
|
|
457
|
+
'webkitAnimationFillMode',
|
|
458
|
+
'webkitAnimationIterationCount',
|
|
459
|
+
'webkitAnimationName',
|
|
460
|
+
'webkitAnimationPlayState',
|
|
461
|
+
'webkitAnimationTimingFunction',
|
|
462
|
+
'webkitAppRegion',
|
|
463
|
+
'webkitAppearance',
|
|
464
|
+
'webkitBackfaceVisibility',
|
|
465
|
+
'webkitBackgroundClip',
|
|
466
|
+
'webkitBackgroundOrigin',
|
|
467
|
+
'webkitBackgroundSize',
|
|
468
|
+
'webkitBorderAfter',
|
|
469
|
+
'webkitBorderAfterColor',
|
|
470
|
+
'webkitBorderAfterStyle',
|
|
471
|
+
'webkitBorderAfterWidth',
|
|
472
|
+
'webkitBorderBefore',
|
|
473
|
+
'webkitBorderBeforeColor',
|
|
474
|
+
'webkitBorderBeforeStyle',
|
|
475
|
+
'webkitBorderBeforeWidth',
|
|
476
|
+
'webkitBorderBottomLeftRadius',
|
|
477
|
+
'webkitBorderBottomRightRadius',
|
|
478
|
+
'webkitBorderEnd',
|
|
479
|
+
'webkitBorderEndColor',
|
|
480
|
+
'webkitBorderEndStyle',
|
|
481
|
+
'webkitBorderEndWidth',
|
|
482
|
+
'webkitBorderHorizontalSpacing',
|
|
483
|
+
'webkitBorderImage',
|
|
484
|
+
'webkitBorderRadius',
|
|
485
|
+
'webkitBorderStart',
|
|
486
|
+
'webkitBorderStartColor',
|
|
487
|
+
'webkitBorderStartStyle',
|
|
488
|
+
'webkitBorderStartWidth',
|
|
489
|
+
'webkitBorderTopLeftRadius',
|
|
490
|
+
'webkitBorderTopRightRadius',
|
|
491
|
+
'webkitBorderVerticalSpacing',
|
|
492
|
+
'webkitBoxAlign',
|
|
493
|
+
'webkitBoxDecorationBreak',
|
|
494
|
+
'webkitBoxDirection',
|
|
495
|
+
'webkitBoxFlex',
|
|
496
|
+
'webkitBoxOrdinalGroup',
|
|
497
|
+
'webkitBoxOrient',
|
|
498
|
+
'webkitBoxPack',
|
|
499
|
+
'webkitBoxReflect',
|
|
500
|
+
'webkitBoxShadow',
|
|
501
|
+
'webkitBoxSizing',
|
|
502
|
+
'webkitClipPath',
|
|
503
|
+
'webkitColumnBreakAfter',
|
|
504
|
+
'webkitColumnBreakBefore',
|
|
505
|
+
'webkitColumnBreakInside',
|
|
506
|
+
'webkitColumnCount',
|
|
507
|
+
'webkitColumnGap',
|
|
508
|
+
'webkitColumnRule',
|
|
509
|
+
'webkitColumnRuleColor',
|
|
510
|
+
'webkitColumnRuleStyle',
|
|
511
|
+
'webkitColumnRuleWidth',
|
|
512
|
+
'webkitColumnSpan',
|
|
513
|
+
'webkitColumnWidth',
|
|
514
|
+
'webkitColumns',
|
|
515
|
+
'webkitFilter',
|
|
516
|
+
'webkitFlex',
|
|
517
|
+
'webkitFlexBasis',
|
|
518
|
+
'webkitFlexDirection',
|
|
519
|
+
'webkitFlexFlow',
|
|
520
|
+
'webkitFlexGrow',
|
|
521
|
+
'webkitFlexShrink',
|
|
522
|
+
'webkitFlexWrap',
|
|
523
|
+
'webkitFontFeatureSettings',
|
|
524
|
+
'webkitFontSmoothing',
|
|
525
|
+
'webkitHighlight',
|
|
526
|
+
'webkitHyphenateCharacter',
|
|
527
|
+
'webkitJustifyContent',
|
|
528
|
+
'webkitLineBreak',
|
|
529
|
+
'webkitLineClamp',
|
|
530
|
+
'webkitLocale',
|
|
531
|
+
'webkitLogicalHeight',
|
|
532
|
+
'webkitLogicalWidth',
|
|
533
|
+
'webkitMarginAfter',
|
|
534
|
+
'webkitMarginBefore',
|
|
535
|
+
'webkitMarginEnd',
|
|
536
|
+
'webkitMarginStart',
|
|
537
|
+
'webkitMask',
|
|
538
|
+
'webkitMaskBoxImage',
|
|
539
|
+
'webkitMaskBoxImageOutset',
|
|
540
|
+
'webkitMaskBoxImageRepeat',
|
|
541
|
+
'webkitMaskBoxImageSlice',
|
|
542
|
+
'webkitMaskBoxImageSource',
|
|
543
|
+
'webkitMaskBoxImageWidth',
|
|
544
|
+
'webkitMaskClip',
|
|
545
|
+
'webkitMaskComposite',
|
|
546
|
+
'webkitMaskImage',
|
|
547
|
+
'webkitMaskOrigin',
|
|
548
|
+
'webkitMaskPosition',
|
|
549
|
+
'webkitMaskPositionX',
|
|
550
|
+
'webkitMaskPositionY',
|
|
551
|
+
'webkitMaskRepeat',
|
|
552
|
+
'webkitMaskRepeatX',
|
|
553
|
+
'webkitMaskRepeatY',
|
|
554
|
+
'webkitMaskSize',
|
|
555
|
+
'webkitMaxLogicalHeight',
|
|
556
|
+
'webkitMaxLogicalWidth',
|
|
557
|
+
'webkitMinLogicalHeight',
|
|
558
|
+
'webkitMinLogicalWidth',
|
|
559
|
+
'webkitOpacity',
|
|
560
|
+
'webkitOrder',
|
|
561
|
+
'webkitPaddingAfter',
|
|
562
|
+
'webkitPaddingBefore',
|
|
563
|
+
'webkitPaddingEnd',
|
|
564
|
+
'webkitPaddingStart',
|
|
565
|
+
'webkitPerspective',
|
|
566
|
+
'webkitPerspectiveOrigin',
|
|
567
|
+
'webkitPerspectiveOriginX',
|
|
568
|
+
'webkitPerspectiveOriginY',
|
|
569
|
+
'webkitPrintColorAdjust',
|
|
570
|
+
'webkitRtlOrdering',
|
|
571
|
+
'webkitRubyPosition',
|
|
572
|
+
'webkitShapeImageThreshold',
|
|
573
|
+
'webkitShapeMargin',
|
|
574
|
+
'webkitShapeOutside',
|
|
575
|
+
'webkitTapHighlightColor',
|
|
576
|
+
'webkitTextCombine',
|
|
577
|
+
'webkitTextDecorationsInEffect',
|
|
578
|
+
'webkitTextEmphasis',
|
|
579
|
+
'webkitTextEmphasisColor',
|
|
580
|
+
'webkitTextEmphasisPosition',
|
|
581
|
+
'webkitTextEmphasisStyle',
|
|
582
|
+
'webkitTextFillColor',
|
|
583
|
+
'webkitTextOrientation',
|
|
584
|
+
'webkitTextSecurity',
|
|
585
|
+
'webkitTextSizeAdjust',
|
|
586
|
+
'webkitTextStroke',
|
|
587
|
+
'webkitTextStrokeColor',
|
|
588
|
+
'webkitTextStrokeWidth',
|
|
589
|
+
'webkitTransform',
|
|
590
|
+
'webkitTransformOrigin',
|
|
591
|
+
'webkitTransformOriginX',
|
|
592
|
+
'webkitTransformOriginY',
|
|
593
|
+
'webkitTransformOriginZ',
|
|
594
|
+
'webkitTransformStyle',
|
|
595
|
+
'webkitTransition',
|
|
596
|
+
'webkitTransitionDelay',
|
|
597
|
+
'webkitTransitionDuration',
|
|
598
|
+
'webkitTransitionProperty',
|
|
599
|
+
'webkitTransitionTimingFunction',
|
|
600
|
+
'webkitUserDrag',
|
|
601
|
+
'webkitUserModify',
|
|
602
|
+
'webkitUserSelect',
|
|
603
|
+
'webkitWritingMode',
|
|
604
|
+
'whiteSpace',
|
|
605
|
+
'widows',
|
|
606
|
+
'width',
|
|
607
|
+
'willChange',
|
|
608
|
+
'wordBreak',
|
|
609
|
+
'wordSpacing',
|
|
610
|
+
'wordWrap',
|
|
611
|
+
'writingMode',
|
|
612
|
+
'x',
|
|
613
|
+
'y',
|
|
614
|
+
'zIndex',
|
|
615
|
+
'zoom',
|
|
616
|
+
];
|