-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomputedStyleList.js
536 lines (533 loc) · 19.1 KB
/
computedStyleList.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
const pseudoClassesList = {
before: ':before',
after: ':after',
hover: ':hover'
}
const computedStyleList = {
alignContent: 'alignContent',
alignItems: 'alignItems',
alignSelf: "alignSelf",
alignmentBaseline: "alignmentBaseline",
all: "all",
animation: "animation",
animationDelay: "animationDelay",
animationDirection: "animationDirection",
animationDuration: "animationDuration",
animationFillMode: "animationFillMode",
animationIterationCount: "animationIterationCount",
animationName: "animationName",
animationPlayState: "animationPlayState",
animationTimingFunction: "animationTimingFunction",
backfaceVisibility: "backfaceVisibility",
background: "background",
backgroundAttachment: "backgroundAttachment",
backgroundBlendMode: "backgroundBlendMode",
backgroundClip: "backgroundClip",
backgroundColor: "backgroundColor",
backgroundImage: "backgroundImage",
backgroundOrigin: "backgroundOrigin",
backgroundPosition: "backgroundPosition",
backgroundPositionX: "backgroundPositionX",
backgroundPositionY: "backgroundPositionY",
backgroundRepeat: "backgroundRepeat",
backgroundRepeatX: "backgroundRepeatX",
backgroundRepeatY: "backgroundRepeatY",
backgroundSize: "backgroundSize",
baselineShift: "baselineShift",
blockSize: "blockSize",
border: "border",
borderBlockEnd: "borderBlockEnd",
borderBlockEndColor: "borderBlockEndColor",
borderBlockEndStyle: "borderBlockEndStyle",
borderBlockEndWidth: "borderBlockEndWidth",
borderBlockStart: "borderBlockStart",
borderBlockStartColor: "borderBlockStartColor",
borderBlockStartStyle: "borderBlockStartStyle",
borderBlockStartWidth: "borderBlockStartWidth",
borderBottom: "borderBottom",
borderBottomColor: "borderBottomColor",
borderBottomLeftRadius: "borderBottomLeftRadius",
borderBottomRightRadius: "borderBottomRightRadius",
borderBottomStyle: "borderBottomStyle",
borderBottomWidth: "borderBottomWidth",
borderCollapse: "borderCollapse",
borderColor: "borderColor",
borderImage: "borderImage",
borderImageOutset: "borderImageOutset",
borderImageRepeat: "borderImageRepeat",
borderImageSlice: "borderImageSlice",
borderImageSource: "borderImageSource",
borderImageWidth: "borderImageWidth",
borderInlineEnd: "borderInlineEnd",
borderInlineEndColor: "borderInlineEndColor",
borderInlineEndStyle: "borderInlineEndStyle",
borderInlineEndWidth: "borderInlineEndWidth",
borderInlineStart: "borderInlineStart",
borderInlineStartColor: "borderInlineStartColor",
borderInlineStartStyle: "borderInlineStartStyle",
borderInlineStartWidth: "borderInlineStartWidth",
borderLeft: "borderLeft",
borderLeftColor: "borderLeftColor",
borderLeftStyle: "borderLeftStyle",
borderLeftWidth: "borderLeftWidth",
borderRadius: "borderRadius",
borderRight: "borderRight",
borderRightColor: "borderRightColor",
borderRightStyle: "borderRightStyle",
borderRightWidth: "borderRightWidth",
borderSpacing: "borderSpacing",
borderStyle: "borderStyle",
borderTop: "borderTop",
borderTopColor: "borderTopColor",
borderTopLeftRadius: "borderTopLeftRadius",
borderTopRightRadius: "borderTopRightRadius",
borderTopStyle: "borderTopStyle",
borderTopWidth: "borderTopWidth",
borderWidth: "borderWidth",
bottom: "bottom",
boxShadow: "boxShadow",
boxSizing: "boxSizing",
breakAfter: "breakAfter",
breakBefore: "breakBefore",
breakInside: "breakInside",
bufferedRendering: "bufferedRendering",
captionSide: "captionSide",
caretColor: "caretColor",
clear: "clear",
clip: "clip",
clipPath: "clipPath",
clipRule: "clipRule",
color: "color",
colorInterpolation: "colorInterpolation",
colorInterpolationFilters: "colorInterpolationFilters",
colorRendering: "colorRendering",
columnCount: "columnCount",
columnFill: "columnFill",
columnGap: "columnGap",
columnRule: "columnRule",
columnRuleColor: "columnRuleColor",
columnRuleStyle: "columnRuleStyle",
columnRuleWidth: "columnRuleWidth",
columnSpan: "columnSpan",
columnWidth: "columnWidth",
columns: "columns",
contain: "contain",
content: "content",
counterIncrement: "counterIncrement",
counterReset: "counterReset",
cursor: "cursor",
cx: "cx",
cy: "cy",
d: "d",
direction: "direction",
display: "display",
dominantBaseline: "dominantBaseline",
emptyCells: "emptyCells",
fill: "fill",
fillOpacity: "fillOpacity",
fillRule: "fillRule",
filter: "filter",
flex: "flex",
flexBasis: "flexBasis",
flexDirection: "flexDirection",
flexFlow: "flexFlow",
flexGrow: "flexGrow",
flexShrink: "flexShrink",
flexWrap: "flexWrap",
float: "float",
floodColor: "floodColor",
floodOpacity: "floodOpacity",
font: "font",
fontDisplay: "fontDisplay",
fontFamily: "fontFamily",
fontFeatureSettings: "fontFeatureSettings",
fontKerning: "fontKerning",
fontSize: "fontSize",
fontStretch: "fontStretch",
fontStyle: "fontStyle",
fontVariant: "fontVariant",
fontVariantCaps: "fontVariantCaps",
fontVariantEastAsian: "fontVariantEastAsian",
fontVariantLigatures: "fontVariantLigatures",
fontVariantNumeric: "fontVariantNumeric",
fontVariationSettings: "fontVariationSettings",
fontWeight: "fontWeight",
gap: "gap",
grid: "grid",
gridArea: "gridArea",
gridAutoColumns: "gridAutoColumns",
gridAutoFlow: "gridAutoFlow",
gridAutoRows: "gridAutoRows",
gridColumn: "gridColumn",
gridColumnEnd: "gridColumnEnd",
gridColumnGap: "gridColumnGap",
gridColumnStart: "gridColumnStart",
gridGap: "gridGap",
gridRow: "gridRow",
gridRowEnd: "gridRowEnd",
gridRowGap: "gridRowGap",
gridRowStart: "gridRowStart",
gridTemplate: "gridTemplate",
gridTemplateAreas: "gridTemplateAreas",
gridTemplateColumns: "gridTemplateColumns",
gridTemplateRows: "gridTemplateRows",
height: "height",
hyphens: "hyphens",
imageRendering: "imageRendering",
inlineSize: "inlineSize",
isolation: "isolation",
justifyContent: "justifyContent",
justifyItems: "justifyItems",
justifySelf: "justifySelf",
left: "left",
letterSpacing: "letterSpacing",
lightingColor: "lightingColor",
lineBreak: "lineBreak",
lineHeight: "lineHeight",
listStyle: "listStyle",
listStyleImage: "listStyleImage",
listStylePosition: "listStylePosition",
listStyleType: "listStyleType",
margin: "margin",
marginBlockEnd: "marginBlockEnd",
marginBlockStart: "marginBlockStart",
marginBottom: "marginBottom",
marginInlineEnd: "marginInlineEnd",
marginInlineStart: "marginInlineStart",
marginLeft: "marginLeft",
marginRight: "marginRight",
marginTop: "marginTop",
marker: "marker",
markerEnd: "markerEnd",
markerMid: "markerMid",
markerStart: "markerStart",
mask: "mask",
maskType: "maskType",
maxBlockSize: "maxBlockSize",
maxHeight: "maxHeight",
maxInlineSize: "maxInlineSize",
maxWidth: "maxWidth",
maxZoom: "maxZoom",
minBlockSize: "minBlockSize",
minHeight: "minHeight",
minInlineSize: "minInlineSize",
minWidth: "minWidth",
minZoom: "minZoom",
mixBlendMode: "mixBlendMode",
objectFit: "objectFit",
objectPosition: "objectPosition",
offset: "offset",
offsetDistance: "offsetDistance",
offsetPath: "offsetPath",
offsetRotate: "offsetRotate",
opacity: "opacity",
order: "order",
orientation: "orientation",
orphans: "orphans",
outline: "outline",
outlineColor: "outlineColor",
outlineOffset: "outlineOffset",
outlineStyle: "outlineStyle",
outlineWidth: "outlineWidth",
overflow: "overflow",
overflowAnchor: "overflowAnchor",
overflowWrap: "overflowWrap",
overflowX: "overflowX",
overflowY: "overflowY",
overscrollBehavior: "overscrollBehavior",
overscrollBehaviorX: "overscrollBehaviorX",
overscrollBehaviorY: "overscrollBehaviorY",
padding: "padding",
paddingBlockEnd: "paddingBlockEnd",
paddingBlockStart: "paddingBlockStart",
paddingBottom: "paddingBottom",
paddingInlineEnd: "paddingInlineEnd",
paddingInlineStart: "paddingInlineStart",
paddingLeft: "paddingLeft",
paddingRight: "paddingRight",
paddingTop: "paddingTop",
page: "page",
pageBreakAfter: "pageBreakAfter",
pageBreakBefore: "pageBreakBefore",
pageBreakInside: "pageBreakInside",
paintOrder: "paintOrder",
perspective: "perspective",
perspectiveOrigin: "perspectiveOrigin",
placeContent: "placeContent",
placeItems: "placeItems",
placeSelf: "placeSelf",
pointerEvents: "pointerEvents",
position: "position",
quotes: "quotes",
r: "r",
resize: "resize",
right: "right",
rowGap: "rowGap",
rx: "rx",
ry: "ry",
scrollBehavior: "scrollBehavior",
scrollMargin: "scrollMargin",
scrollMarginBlock: "scrollMarginBlock",
scrollMarginBlockEnd: "scrollMarginBlockEnd",
scrollMarginBlockStart: "scrollMarginBlockStart",
scrollMarginBottom: "scrollMarginBottom",
scrollMarginInline: "scrollMarginInline",
scrollMarginInlineEnd: "scrollMarginInlineEnd",
scrollMarginInlineStart: "scrollMarginInlineStart",
scrollMarginLeft: "scrollMarginLeft",
scrollMarginRight: "scrollMarginRight",
scrollMarginTop: "scrollMarginTop",
scrollPadding: "scrollPadding",
scrollPaddingBlock: "scrollPaddingBlock",
scrollPaddingBlockEnd: "scrollPaddingBlockEnd",
scrollPaddingBlockStart: "scrollPaddingBlockStart",
scrollPaddingBottom: "scrollPaddingBottom",
scrollPaddingInline: "scrollPaddingInline",
scrollPaddingInlineEnd: "scrollPaddingInlineEnd",
scrollPaddingInlineStart: "scrollPaddingInlineStart",
scrollPaddingLeft: "scrollPaddingLeft",
scrollPaddingRight: "scrollPaddingRight",
scrollPaddingTop: "scrollPaddingTop",
scrollSnapAlign: "scrollSnapAlign",
scrollSnapStop: "scrollSnapStop",
scrollSnapType: "scrollSnapType",
shapeImageThreshold: "shapeImageThreshold",
shapeMargin: "shapeMargin",
shapeOutside: "shapeOutside",
shapeRendering: "shapeRendering",
size: "size",
speak: "speak",
src: "src",
stopColor: "stopColor",
stopOpacity: "stopOpacity",
stroke: "stroke",
strokeDasharray: "strokeDasharray",
strokeDashoffset: "strokeDashoffset",
strokeLinecap: "strokeLinecap",
strokeLinejoin: "strokeLinejoin",
strokeMiterlimit: "strokeMiterlimit",
strokeOpacity: "strokeOpacity",
strokeWidth: "strokeWidth",
tabSize: "tabSize",
tableLayout: "tableLayout",
textAlign: "textAlign",
textAlignLast: "textAlignLast",
textAnchor: "textAnchor",
textCombineUpright: "textCombineUpright",
textDecoration: "textDecoration",
textDecorationColor: "textDecorationColor",
textDecorationLine: "textDecorationLine",
textDecorationSkipInk: "textDecorationSkipInk",
textDecorationStyle: "textDecorationStyle",
textIndent: "textIndent",
textOrientation: "textOrientation",
textOverflow: "textOverflow",
textRendering: "textRendering",
textShadow: "textShadow",
textSizeAdjust: "textSizeAdjust",
textTransform: "textTransform",
textUnderlinePosition: "textUnderlinePosition",
top: "top",
touchAction: "touchAction",
transform: "transform",
transformBox: "transformBox",
transformOrigin: "transformOrigin",
transformStyle: "transformStyle",
transition: "transition",
transitionDelay: "transitionDelay",
transitionDuration: "transitionDuration",
transitionProperty: "transitionProperty",
transitionTimingFunction: "transitionTimingFunction",
unicodeBidi: "unicodeBidi",
unicodeRange: "unicodeRange",
userSelect: "userSelect",
userZoom: "userZoom",
vectorEffect: "vectorEffect",
verticalAlign: "verticalAlign",
visibility: "visibility",
webkitAlignContent: "webkitAlignContent",
webkitAlignItems: "webkitAlignItems",
webkitAlignSelf: "webkitAlignSelf",
webkitAnimation: "webkitAnimation",
webkitAnimationDelay: "webkitAnimationDelay",
webkitAnimationDirection: "webkitAnimationDirection",
webkitAnimationDuration: "webkitAnimationDuration",
webkitAnimationFillMode: "webkitAnimationFillMode",
webkitAnimationIterationCount: "webkitAnimationIterationCount",
webkitAnimationName: "webkitAnimationName",
webkitAnimationPlayState: "webkitAnimationPlayState",
webkitAnimationTimingFunction: "webkitAnimationTimingFunction",
webkitAppRegion: "webkitAppRegion",
webkitAppearance: "webkitAppearance",
webkitBackfaceVisibility: "webkitBackfaceVisibility",
webkitBackgroundClip: "webkitBackgroundClip",
webkitBackgroundOrigin: "webkitBackgroundOrigin",
webkitBackgroundSize: "webkitBackgroundSize",
webkitBorderAfter: "webkitBorderAfter",
webkitBorderAfterColor: "webkitBorderAfterColor",
webkitBorderAfterStyle: "webkitBorderAfterStyle",
webkitBorderAfterWidth: "webkitBorderAfterWidth",
webkitBorderBefore: "webkitBorderBefore",
webkitBorderBeforeColor: "webkitBorderBeforeColor",
webkitBorderBeforeStyle: "webkitBorderBeforeStyle",
webkitBorderBeforeWidth: "webkitBorderBeforeWidth",
webkitBorderBottomLeftRadius: "webkitBorderBottomLeftRadius",
webkitBorderBottomRightRadius: "webkitBorderBottomRightRadius",
webkitBorderEnd: "webkitBorderEnd",
webkitBorderEndColor: "webkitBorderEndColor",
webkitBorderEndStyle: "webkitBorderEndStyle",
webkitBorderEndWidth: "webkitBorderEndWidth",
webkitBorderHorizontalSpacing: "webkitBorderHorizontalSpacing",
webkitBorderImage: "webkitBorderImage",
webkitBorderRadius: "webkitBorderRadius",
webkitBorderStart: "webkitBorderStart",
webkitBorderStartColor: "webkitBorderStartColor",
webkitBorderStartStyle: "webkitBorderStartStyle",
webkitBorderStartWidth: "webkitBorderStartWidth",
webkitBorderTopLeftRadius: "webkitBorderTopLeftRadius",
webkitBorderTopRightRadius: "webkitBorderTopRightRadius",
webkitBorderVerticalSpacing: "webkitBorderVerticalSpacing",
webkitBoxAlign: "webkitBoxAlign",
webkitBoxDecorationBreak: "webkitBoxDecorationBreak",
webkitBoxDirection: "webkitBoxDirection",
webkitBoxFlex: "webkitBoxFlex",
webkitBoxOrdinalGroup: "webkitBoxOrdinalGroup",
webkitBoxOrient: "webkitBoxOrient",
webkitBoxPack: "webkitBoxPack",
webkitBoxReflect: "webkitBoxReflect",
webkitBoxShadow: "webkitBoxShadow",
webkitBoxSizing: "webkitBoxSizing",
webkitClipPath: "webkitClipPath",
webkitColumnBreakAfter: "webkitColumnBreakAfter",
webkitColumnBreakBefore: "webkitColumnBreakBefore",
webkitColumnBreakInside: "webkitColumnBreakInside",
webkitColumnCount: "webkitColumnCount",
webkitColumnGap: "webkitColumnGap",
webkitColumnRule: "webkitColumnRule",
webkitColumnRuleColor: "webkitColumnRuleColor",
webkitColumnRuleStyle: "webkitColumnRuleStyle",
webkitColumnRuleWidth: "webkitColumnRuleWidth",
webkitColumnSpan: "webkitColumnSpan",
webkitColumnWidth: "webkitColumnWidth",
webkitColumns: "webkitColumns",
webkitFilter: "webkitFilter",
webkitFlex: "webkitFlex",
webkitFlexBasis: "webkitFlexBasis",
webkitFlexDirection: "webkitFlexDirection",
webkitFlexFlow: "webkitFlexFlow",
webkitFlexGrow: "webkitFlexGrow",
webkitFlexShrink: "webkitFlexShrink",
webkitFlexWrap: "webkitFlexWrap",
webkitFontFeatureSettings: "webkitFontFeatureSettings",
webkitFontSizeDelta: "webkitFontSizeDelta",
webkitFontSmoothing: "webkitFontSmoothing",
webkitHighlight: "webkitHighlight",
webkitHyphenateCharacter: "webkitHyphenateCharacter",
webkitJustifyContent: "webkitJustifyContent",
webkitLineBreak: "webkitLineBreak",
webkitLineClamp: "webkitLineClamp",
webkitLocale: "webkitLocale",
webkitLogicalHeight: "webkitLogicalHeight",
webkitLogicalWidth: "webkitLogicalWidth",
webkitMarginAfter: "webkitMarginAfter",
webkitMarginAfterCollapse: "webkitMarginAfterCollapse",
webkitMarginBefore: "webkitMarginBefore",
webkitMarginBeforeCollapse: "webkitMarginBeforeCollapse",
webkitMarginBottomCollapse: "webkitMarginBottomCollapse",
webkitMarginCollapse: "webkitMarginCollapse",
webkitMarginEnd: "webkitMarginEnd",
webkitMarginStart: "webkitMarginStart",
webkitMarginTopCollapse: "webkitMarginTopCollapse",
webkitMask: "webkitMask",
webkitMaskBoxImage: "webkitMaskBoxImage",
webkitMaskBoxImageOutset: "webkitMaskBoxImageOutset",
webkitMaskBoxImageRepeat: "webkitMaskBoxImageRepeat",
webkitMaskBoxImageSlice: "webkitMaskBoxImageSlice",
webkitMaskBoxImageSource: "webkitMaskBoxImageSource",
webkitMaskBoxImageWidth: "webkitMaskBoxImageWidth",
webkitMaskClip: "webkitMaskClip",
webkitMaskComposite: "webkitMaskComposite",
webkitMaskImage: "webkitMaskImage",
webkitMaskOrigin: "webkitMaskOrigin",
webkitMaskPosition: "webkitMaskPosition",
webkitMaskPositionX: "webkitMaskPositionX",
webkitMaskPositionY: "webkitMaskPositionY",
webkitMaskRepeat: "webkitMaskRepeat",
webkitMaskRepeatX: "webkitMaskRepeatX",
webkitMaskRepeatY: "webkitMaskRepeatY",
webkitMaskSize: "webkitMaskSize",
webkitMaxLogicalHeight: "webkitMaxLogicalHeight",
webkitMaxLogicalWidth: "webkitMaxLogicalWidth",
webkitMinLogicalHeight: "webkitMinLogicalHeight",
webkitMinLogicalWidth: "webkitMinLogicalWidth",
webkitOpacity: "webkitOpacity",
webkitOrder: "webkitOrder",
webkitPaddingAfter: "webkitPaddingAfter",
webkitPaddingBefore: "webkitPaddingBefore",
webkitPaddingEnd: "webkitPaddingEnd",
webkitPaddingStart: "webkitPaddingStart",
webkitPerspective: "webkitPerspective",
webkitPerspectiveOrigin: "webkitPerspectiveOrigin",
webkitPerspectiveOriginX: "webkitPerspectiveOriginX",
webkitPerspectiveOriginY: "webkitPerspectiveOriginY",
webkitPrintColorAdjust: "webkitPrintColorAdjust",
webkitRtlOrdering: "webkitRtlOrdering",
webkitRubyPosition: "webkitRubyPosition",
webkitShapeImageThreshold: "webkitShapeImageThreshold",
webkitShapeMargin: "webkitShapeMargin",
webkitShapeOutside: "webkitShapeOutside",
webkitTapHighlightColor: "webkitTapHighlightColor",
webkitTextCombine: "webkitTextCombine",
webkitTextDecorationsInEffect: "webkitTextDecorationsInEffect",
webkitTextEmphasis: "webkitTextEmphasis",
webkitTextEmphasisColor: "webkitTextEmphasisColor",
webkitTextEmphasisPosition: "webkitTextEmphasisPosition",
webkitTextEmphasisStyle: "webkitTextEmphasisStyle",
webkitTextFillColor: "webkitTextFillColor",
webkitTextOrientation: "webkitTextOrientation",
webkitTextSecurity: "webkitTextSecurity",
webkitTextSizeAdjust: "webkitTextSizeAdjust",
webkitTextStroke: "webkitTextStroke",
webkitTextStrokeColor: "webkitTextStrokeColor",
webkitTextStrokeWidth: "webkitTextStrokeWidth",
webkitTransform: "webkitTransform",
webkitTransformOrigin: "webkitTransformOrigin",
webkitTransformOriginX: "webkitTransformOriginX",
webkitTransformOriginY: "webkitTransformOriginY",
webkitTransformOriginZ: "webkitTransformOriginZ",
webkitTransformStyle: "webkitTransformStyle",
webkitTransition: "webkitTransition",
webkitTransitionDelay: "webkitTransitionDelay",
webkitTransitionDuration: "webkitTransitionDuration",
webkitTransitionProperty: "webkitTransitionProperty",
webkitTransitionTimingFunction: "webkitTransitionTimingFunction",
webkitUserDrag: "webkitUserDrag",
webkitUserModify: "webkitUserModify",
webkitUserSelect: "webkitUserSelect",
webkitWritingMode: "webkitWritingMode",
whiteSpace: "whiteSpace",
widows: "widows",
width: "width",
willChange: "willChange",
wordBreak: "wordBreak",
wordSpacing: "wordSpacing",
wordWrap: "wordWrap",
writingMode: "writingMode",
x: "x",
y: "y",
zIndex: "zIndex",
zoom: "zoom",
cssText: "cssText",
length: "length",
parentRule: "parentRule",
cssFloat: "cssFloat",
item: "item",
getPropertyValue: "getPropertyValue",
getPropertyPriority: "getPropertyPriority",
setProperty: "setProperty",
removeProperty: "removeProperty"
}
module.exports = {
computedStyleList,
pseudoClassesList
}