happy-dom 6.0.4 → 7.0.0
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.
Potentially problematic release.
This version of happy-dom might be problematic. Click here for more details.
- package/lib/css/CSSParser.js +12 -6
- package/lib/css/CSSParser.js.map +1 -1
- package/lib/css/CSSRule.d.ts +15 -13
- package/lib/css/CSSRule.js +18 -13
- package/lib/css/CSSRule.js.map +1 -1
- package/lib/css/CSSRuleTypeEnum.d.ts +17 -0
- package/lib/css/CSSRuleTypeEnum.js +21 -0
- package/lib/css/CSSRuleTypeEnum.js.map +1 -0
- package/lib/css/CSSStyleSheet.d.ts +6 -16
- package/lib/css/CSSStyleSheet.js +11 -19
- package/lib/css/CSSStyleSheet.js.map +1 -1
- package/lib/css/declaration/AbstractCSSStyleDeclaration.d.ts +76 -0
- package/lib/css/declaration/AbstractCSSStyleDeclaration.js +182 -0
- package/lib/css/declaration/AbstractCSSStyleDeclaration.js.map +1 -0
- package/lib/css/declaration/CSSStyleDeclaration.d.ts +1194 -0
- package/lib/css/declaration/CSSStyleDeclaration.js +3566 -0
- package/lib/css/declaration/CSSStyleDeclaration.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.d.ts +12 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.js +34 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.d.ts +131 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.js +133 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.d.ts +40 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.js +42 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.d.ts +49 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.js +244 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.d.ts +167 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.js +537 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.d.ts +65 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.js +565 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.d.ts +809 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.js +2303 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.d.ts +127 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.js +411 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.js.map +1 -0
- package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.d.ts +4 -0
- package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.js +3 -0
- package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.js.map +1 -0
- package/lib/css/rules/CSSContainerRule.d.ts +15 -0
- package/lib/css/rules/CSSContainerRule.js +31 -0
- package/lib/css/rules/CSSContainerRule.js.map +1 -0
- package/lib/css/rules/CSSFontFaceRule.d.ts +10 -3
- package/lib/css/rules/CSSFontFaceRule.js +16 -0
- package/lib/css/rules/CSSFontFaceRule.js.map +1 -1
- package/lib/css/rules/CSSKeyframeRule.d.ts +10 -3
- package/lib/css/rules/CSSKeyframeRule.js +16 -0
- package/lib/css/rules/CSSKeyframeRule.js.map +1 -1
- package/lib/css/rules/CSSKeyframesRule.d.ts +1 -1
- package/lib/css/rules/CSSKeyframesRule.js +1 -1
- package/lib/css/rules/CSSKeyframesRule.js.map +1 -1
- package/lib/css/rules/CSSMediaRule.d.ts +1 -1
- package/lib/css/rules/CSSStyleRule.d.ts +10 -3
- package/lib/css/rules/CSSStyleRule.js +16 -0
- package/lib/css/rules/CSSStyleRule.js.map +1 -1
- package/lib/event/Event.d.ts +2 -3
- package/lib/event/Event.js.map +1 -1
- package/lib/event/events/IMediaQueryListInit.d.ts +5 -0
- package/lib/event/events/IMediaQueryListInit.js +3 -0
- package/lib/event/events/IMediaQueryListInit.js.map +1 -0
- package/lib/event/events/MediaQueryListEvent.d.ts +16 -0
- package/lib/event/events/MediaQueryListEvent.js +28 -0
- package/lib/event/events/MediaQueryListEvent.js.map +1 -0
- package/lib/exception/DOMException.js +5 -3
- package/lib/exception/DOMException.js.map +1 -1
- package/lib/exception/DOMExceptionNameEnum.d.ts +2 -1
- package/lib/exception/DOMExceptionNameEnum.js +1 -0
- package/lib/exception/DOMExceptionNameEnum.js.map +1 -1
- package/lib/file/Blob.d.ts +9 -0
- package/lib/file/Blob.js +14 -0
- package/lib/file/Blob.js.map +1 -1
- package/lib/index.d.ts +9 -2
- package/lib/index.js +16 -2
- package/lib/index.js.map +1 -1
- package/lib/match-media/MediaQueryList.d.ts +19 -8
- package/lib/match-media/MediaQueryList.js +56 -13
- package/lib/match-media/MediaQueryList.js.map +1 -1
- package/lib/{attribute → nodes/attr}/Attr.d.ts +8 -7
- package/lib/{attribute → nodes/attr}/Attr.js +12 -5
- package/lib/nodes/attr/Attr.js.map +1 -0
- package/lib/nodes/attr/IAttr.d.ts +14 -0
- package/lib/nodes/attr/IAttr.js +3 -0
- package/lib/nodes/attr/IAttr.js.map +1 -0
- package/lib/nodes/child-node/ChildNodeUtility.js +2 -1
- package/lib/nodes/child-node/ChildNodeUtility.js.map +1 -1
- package/lib/nodes/document/Document.d.ts +4 -4
- package/lib/nodes/document/Document.js +5 -8
- package/lib/nodes/document/Document.js.map +1 -1
- package/lib/nodes/document/IDocument.d.ts +3 -3
- package/lib/nodes/element/Element.d.ts +11 -9
- package/lib/nodes/element/Element.js +2 -1
- package/lib/nodes/element/Element.js.map +1 -1
- package/lib/nodes/element/IElement.d.ts +10 -8
- package/lib/nodes/html-element/HTMLElement.d.ts +21 -5
- package/lib/nodes/html-element/HTMLElement.js +74 -11
- package/lib/nodes/html-element/HTMLElement.js.map +1 -1
- package/lib/nodes/html-element/IHTMLElement.d.ts +5 -1
- package/lib/nodes/html-link-element/HTMLLinkElement.d.ts +2 -2
- package/lib/nodes/html-link-element/HTMLLinkElement.js.map +1 -1
- package/lib/nodes/html-script-element/HTMLScriptElement.d.ts +2 -2
- package/lib/nodes/html-script-element/HTMLScriptElement.js.map +1 -1
- package/lib/nodes/html-select-element/HTMLSelectElement.js +1 -1
- package/lib/nodes/html-select-element/HTMLSelectElement.js.map +1 -1
- package/lib/nodes/html-style-element/HTMLStyleElement.js +1 -1
- package/lib/nodes/html-style-element/HTMLStyleElement.js.map +1 -1
- package/lib/nodes/node/INode.d.ts +2 -0
- package/lib/nodes/node/Node.d.ts +5 -1
- package/lib/nodes/node/Node.js +7 -1
- package/lib/nodes/node/Node.js.map +1 -1
- package/lib/nodes/node/NodeTypeEnum.d.ts +2 -0
- package/lib/nodes/node/NodeTypeEnum.js +2 -0
- package/lib/nodes/node/NodeTypeEnum.js.map +1 -1
- package/lib/nodes/svg-element/ISVGElement.d.ts +1 -1
- package/lib/nodes/svg-element/SVGElement.d.ts +4 -4
- package/lib/nodes/svg-element/SVGElement.js +2 -2
- package/lib/nodes/svg-element/SVGElement.js.map +1 -1
- package/lib/window/IWindow.d.ts +23 -3
- package/lib/window/Window.d.ts +35 -6
- package/lib/window/Window.js +58 -23
- package/lib/window/Window.js.map +1 -1
- package/package.json +2 -2
- package/src/css/CSSParser.ts +14 -6
- package/src/css/CSSRule.ts +15 -13
- package/src/css/CSSRuleTypeEnum.ts +18 -0
- package/src/css/CSSStyleSheet.ts +12 -22
- package/src/css/declaration/AbstractCSSStyleDeclaration.ts +202 -0
- package/src/css/declaration/CSSStyleDeclaration.ts +4743 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationCSSParser.ts +35 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.ts +130 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.ts +39 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationElementStyle.ts +282 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.ts +743 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationPropertyManager.ts +592 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.ts +3026 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationValueParser.ts +437 -0
- package/src/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.ts +4 -0
- package/src/css/rules/CSSContainerRule.ts +23 -0
- package/src/css/rules/CSSFontFaceRule.ts +17 -2
- package/src/css/rules/CSSKeyframeRule.ts +17 -2
- package/src/css/rules/CSSKeyframesRule.ts +1 -1
- package/src/css/rules/CSSStyleRule.ts +17 -2
- package/src/event/Event.ts +2 -3
- package/src/event/events/IMediaQueryListInit.ts +6 -0
- package/src/event/events/MediaQueryListEvent.ts +25 -0
- package/src/exception/DOMException.ts +3 -3
- package/src/exception/DOMExceptionNameEnum.ts +2 -1
- package/src/file/Blob.ts +16 -0
- package/src/index.ts +15 -1
- package/src/match-media/MediaQueryList.ts +63 -10
- package/src/{attribute → nodes/attr}/Attr.ts +11 -8
- package/src/nodes/attr/IAttr.ts +15 -0
- package/src/nodes/child-node/ChildNodeUtility.ts +2 -1
- package/src/nodes/document/Document.ts +8 -10
- package/src/nodes/document/IDocument.ts +3 -3
- package/src/nodes/element/Element.ts +13 -10
- package/src/nodes/element/IElement.ts +8 -8
- package/src/nodes/html-element/HTMLElement.ts +94 -16
- package/src/nodes/html-element/IHTMLElement.ts +3 -1
- package/src/nodes/html-link-element/HTMLLinkElement.ts +2 -2
- package/src/nodes/html-script-element/HTMLScriptElement.ts +2 -2
- package/src/nodes/html-select-element/HTMLSelectElement.ts +1 -1
- package/src/nodes/html-style-element/HTMLStyleElement.ts +1 -1
- package/src/nodes/node/INode.ts +2 -0
- package/src/nodes/node/Node.ts +7 -1
- package/src/nodes/node/NodeTypeEnum.ts +2 -0
- package/src/nodes/svg-element/ISVGElement.ts +1 -1
- package/src/nodes/svg-element/SVGElement.ts +5 -5
- package/src/window/IWindow.ts +23 -3
- package/src/window/Window.ts +51 -11
- package/lib/attribute/Attr.js.map +0 -1
- package/lib/css/CSSStyleDeclaration.d.ts +0 -3017
- package/lib/css/CSSStyleDeclaration.js +0 -4643
- package/lib/css/CSSStyleDeclaration.js.map +0 -1
- package/src/css/CSSStyleDeclaration.ts +0 -5026
@@ -1,4643 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
const Attr_1 = __importDefault(require("../attribute/Attr"));
|
7
|
-
/**
|
8
|
-
* CSS Style Declaration.
|
9
|
-
*/
|
10
|
-
class CSSStyleDeclaration {
|
11
|
-
/**
|
12
|
-
* Constructor.
|
13
|
-
*
|
14
|
-
* @param [attributes] Attributes.
|
15
|
-
* @param [computedStyleElement] Computed style element.
|
16
|
-
* @param computedStyleElement.isConnected
|
17
|
-
*/
|
18
|
-
constructor(attributes = {}, computedStyleElement = null) {
|
19
|
-
this.length = 0;
|
20
|
-
this.parentRule = null;
|
21
|
-
this._attributes = null;
|
22
|
-
this._computedStyleElement = null;
|
23
|
-
const style = attributes['style'];
|
24
|
-
let index = 0;
|
25
|
-
this._attributes = attributes;
|
26
|
-
this._computedStyleElement = computedStyleElement;
|
27
|
-
if (style && style.value) {
|
28
|
-
const parts = style.value.split(';');
|
29
|
-
for (const part of parts) {
|
30
|
-
if (part) {
|
31
|
-
const [name] = part.trim().split(':');
|
32
|
-
this[index] = name;
|
33
|
-
index++;
|
34
|
-
}
|
35
|
-
}
|
36
|
-
}
|
37
|
-
this.length = index;
|
38
|
-
}
|
39
|
-
/**
|
40
|
-
*
|
41
|
-
*/
|
42
|
-
get alignContent() {
|
43
|
-
return this.getPropertyValue('align-content');
|
44
|
-
}
|
45
|
-
/**
|
46
|
-
*
|
47
|
-
*/
|
48
|
-
set alignContent(alignContent) {
|
49
|
-
this.setProperty('align-content', alignContent);
|
50
|
-
}
|
51
|
-
/**
|
52
|
-
*
|
53
|
-
*/
|
54
|
-
get alignItems() {
|
55
|
-
return this.getPropertyValue('align-items');
|
56
|
-
}
|
57
|
-
/**
|
58
|
-
*
|
59
|
-
*/
|
60
|
-
set alignItems(alignItems) {
|
61
|
-
this.setProperty('align-items', alignItems);
|
62
|
-
}
|
63
|
-
/**
|
64
|
-
*
|
65
|
-
*/
|
66
|
-
get alignSelf() {
|
67
|
-
return this.getPropertyValue('align-self');
|
68
|
-
}
|
69
|
-
/**
|
70
|
-
*
|
71
|
-
*/
|
72
|
-
set alignSelf(alignSelf) {
|
73
|
-
this.setProperty('align-self', alignSelf);
|
74
|
-
}
|
75
|
-
/**
|
76
|
-
*
|
77
|
-
*/
|
78
|
-
get alignmentBaseline() {
|
79
|
-
return this.getPropertyValue('alignment-baseline');
|
80
|
-
}
|
81
|
-
/**
|
82
|
-
*
|
83
|
-
*/
|
84
|
-
set alignmentBaseline(alignmentBaseline) {
|
85
|
-
this.setProperty('alignment-baseline', alignmentBaseline);
|
86
|
-
}
|
87
|
-
/**
|
88
|
-
*
|
89
|
-
*/
|
90
|
-
get all() {
|
91
|
-
return this.getPropertyValue('all');
|
92
|
-
}
|
93
|
-
/**
|
94
|
-
*
|
95
|
-
*/
|
96
|
-
set all(all) {
|
97
|
-
this.setProperty('all', all);
|
98
|
-
}
|
99
|
-
/**
|
100
|
-
*
|
101
|
-
*/
|
102
|
-
get animation() {
|
103
|
-
return this.getPropertyValue('animation');
|
104
|
-
}
|
105
|
-
/**
|
106
|
-
*
|
107
|
-
*/
|
108
|
-
set animation(animation) {
|
109
|
-
this.setProperty('animation', animation);
|
110
|
-
}
|
111
|
-
/**
|
112
|
-
*
|
113
|
-
*/
|
114
|
-
get animationDelay() {
|
115
|
-
return this.getPropertyValue('animation-delay');
|
116
|
-
}
|
117
|
-
/**
|
118
|
-
*
|
119
|
-
*/
|
120
|
-
set animationDelay(animationDelay) {
|
121
|
-
this.setProperty('animation-delay', animationDelay);
|
122
|
-
}
|
123
|
-
/**
|
124
|
-
*
|
125
|
-
*/
|
126
|
-
get animationDirection() {
|
127
|
-
return this.getPropertyValue('animation-direction');
|
128
|
-
}
|
129
|
-
/**
|
130
|
-
*
|
131
|
-
*/
|
132
|
-
set animationDirection(animationDirection) {
|
133
|
-
this.setProperty('animation-direction', animationDirection);
|
134
|
-
}
|
135
|
-
/**
|
136
|
-
*
|
137
|
-
*/
|
138
|
-
get animationDuration() {
|
139
|
-
return this.getPropertyValue('animation-duration');
|
140
|
-
}
|
141
|
-
/**
|
142
|
-
*
|
143
|
-
*/
|
144
|
-
set animationDuration(animationDuration) {
|
145
|
-
this.setProperty('animation-duration', animationDuration);
|
146
|
-
}
|
147
|
-
/**
|
148
|
-
*
|
149
|
-
*/
|
150
|
-
get animationFillMode() {
|
151
|
-
return this.getPropertyValue('animation-fill-mode');
|
152
|
-
}
|
153
|
-
/**
|
154
|
-
*
|
155
|
-
*/
|
156
|
-
set animationFillMode(animationFillMode) {
|
157
|
-
this.setProperty('animation-fill-mode', animationFillMode);
|
158
|
-
}
|
159
|
-
/**
|
160
|
-
*
|
161
|
-
*/
|
162
|
-
get animationIterationCount() {
|
163
|
-
return this.getPropertyValue('animation-iteration-count');
|
164
|
-
}
|
165
|
-
/**
|
166
|
-
*
|
167
|
-
*/
|
168
|
-
set animationIterationCount(animationIterationCount) {
|
169
|
-
this.setProperty('animation-iteration-count', animationIterationCount);
|
170
|
-
}
|
171
|
-
/**
|
172
|
-
*
|
173
|
-
*/
|
174
|
-
get animationName() {
|
175
|
-
return this.getPropertyValue('animation-name');
|
176
|
-
}
|
177
|
-
/**
|
178
|
-
*
|
179
|
-
*/
|
180
|
-
set animationName(animationName) {
|
181
|
-
this.setProperty('animation-name', animationName);
|
182
|
-
}
|
183
|
-
/**
|
184
|
-
*
|
185
|
-
*/
|
186
|
-
get animationPlayState() {
|
187
|
-
return this.getPropertyValue('animation-play-state');
|
188
|
-
}
|
189
|
-
/**
|
190
|
-
*
|
191
|
-
*/
|
192
|
-
set animationPlayState(animationPlayState) {
|
193
|
-
this.setProperty('animation-play-state', animationPlayState);
|
194
|
-
}
|
195
|
-
/**
|
196
|
-
*
|
197
|
-
*/
|
198
|
-
get animationTimingFunction() {
|
199
|
-
return this.getPropertyValue('animation-timing-function');
|
200
|
-
}
|
201
|
-
/**
|
202
|
-
*
|
203
|
-
*/
|
204
|
-
set animationTimingFunction(animationTimingFunction) {
|
205
|
-
this.setProperty('animation-timing-function', animationTimingFunction);
|
206
|
-
}
|
207
|
-
/**
|
208
|
-
*
|
209
|
-
*/
|
210
|
-
get appearance() {
|
211
|
-
return this.getPropertyValue('appearance');
|
212
|
-
}
|
213
|
-
/**
|
214
|
-
*
|
215
|
-
*/
|
216
|
-
set appearance(appearance) {
|
217
|
-
this.setProperty('appearance', appearance);
|
218
|
-
}
|
219
|
-
/**
|
220
|
-
*
|
221
|
-
*/
|
222
|
-
get backdropFilter() {
|
223
|
-
return this.getPropertyValue('backdrop-filter');
|
224
|
-
}
|
225
|
-
/**
|
226
|
-
*
|
227
|
-
*/
|
228
|
-
set backdropFilter(backdropFilter) {
|
229
|
-
this.setProperty('backdrop-filter', backdropFilter);
|
230
|
-
}
|
231
|
-
/**
|
232
|
-
*
|
233
|
-
*/
|
234
|
-
get backfaceVisibility() {
|
235
|
-
return this.getPropertyValue('backface-visibility');
|
236
|
-
}
|
237
|
-
/**
|
238
|
-
*
|
239
|
-
*/
|
240
|
-
set backfaceVisibility(backfaceVisibility) {
|
241
|
-
this.setProperty('backface-visibility', backfaceVisibility);
|
242
|
-
}
|
243
|
-
/**
|
244
|
-
*
|
245
|
-
*/
|
246
|
-
get background() {
|
247
|
-
return this.getPropertyValue('background');
|
248
|
-
}
|
249
|
-
/**
|
250
|
-
*
|
251
|
-
*/
|
252
|
-
set background(background) {
|
253
|
-
this.setProperty('background', background);
|
254
|
-
}
|
255
|
-
/**
|
256
|
-
*
|
257
|
-
*/
|
258
|
-
get backgroundAttachment() {
|
259
|
-
return this.getPropertyValue('background-attachment');
|
260
|
-
}
|
261
|
-
/**
|
262
|
-
*
|
263
|
-
*/
|
264
|
-
set backgroundAttachment(backgroundAttachment) {
|
265
|
-
this.setProperty('background-attachment', backgroundAttachment);
|
266
|
-
}
|
267
|
-
/**
|
268
|
-
*
|
269
|
-
*/
|
270
|
-
get backgroundBlendMode() {
|
271
|
-
return this.getPropertyValue('background-blend-mode');
|
272
|
-
}
|
273
|
-
/**
|
274
|
-
*
|
275
|
-
*/
|
276
|
-
set backgroundBlendMode(backgroundBlendMode) {
|
277
|
-
this.setProperty('background-blend-mode', backgroundBlendMode);
|
278
|
-
}
|
279
|
-
/**
|
280
|
-
*
|
281
|
-
*/
|
282
|
-
get backgroundClip() {
|
283
|
-
return this.getPropertyValue('background-clip');
|
284
|
-
}
|
285
|
-
/**
|
286
|
-
*
|
287
|
-
*/
|
288
|
-
set backgroundClip(backgroundClip) {
|
289
|
-
this.setProperty('background-clip', backgroundClip);
|
290
|
-
}
|
291
|
-
/**
|
292
|
-
*
|
293
|
-
*/
|
294
|
-
get backgroundColor() {
|
295
|
-
return this.getPropertyValue('background-color');
|
296
|
-
}
|
297
|
-
/**
|
298
|
-
*
|
299
|
-
*/
|
300
|
-
set backgroundColor(backgroundColor) {
|
301
|
-
this.setProperty('background-color', backgroundColor);
|
302
|
-
}
|
303
|
-
/**
|
304
|
-
*
|
305
|
-
*/
|
306
|
-
get backgroundImage() {
|
307
|
-
return this.getPropertyValue('background-image');
|
308
|
-
}
|
309
|
-
/**
|
310
|
-
*
|
311
|
-
*/
|
312
|
-
set backgroundImage(backgroundImage) {
|
313
|
-
this.setProperty('background-image', backgroundImage);
|
314
|
-
}
|
315
|
-
/**
|
316
|
-
*
|
317
|
-
*/
|
318
|
-
get backgroundOrigin() {
|
319
|
-
return this.getPropertyValue('background-origin');
|
320
|
-
}
|
321
|
-
/**
|
322
|
-
*
|
323
|
-
*/
|
324
|
-
set backgroundOrigin(backgroundOrigin) {
|
325
|
-
this.setProperty('background-origin', backgroundOrigin);
|
326
|
-
}
|
327
|
-
/**
|
328
|
-
*
|
329
|
-
*/
|
330
|
-
get backgroundPosition() {
|
331
|
-
return this.getPropertyValue('background-position');
|
332
|
-
}
|
333
|
-
/**
|
334
|
-
*
|
335
|
-
*/
|
336
|
-
set backgroundPosition(backgroundPosition) {
|
337
|
-
this.setProperty('background-position', backgroundPosition);
|
338
|
-
}
|
339
|
-
/**
|
340
|
-
*
|
341
|
-
*/
|
342
|
-
get backgroundPositionX() {
|
343
|
-
return this.getPropertyValue('background-position-x');
|
344
|
-
}
|
345
|
-
/**
|
346
|
-
*
|
347
|
-
*/
|
348
|
-
set backgroundPositionX(backgroundPositionX) {
|
349
|
-
this.setProperty('background-position-x', backgroundPositionX);
|
350
|
-
}
|
351
|
-
/**
|
352
|
-
*
|
353
|
-
*/
|
354
|
-
get backgroundPositionY() {
|
355
|
-
return this.getPropertyValue('background-position-y');
|
356
|
-
}
|
357
|
-
/**
|
358
|
-
*
|
359
|
-
*/
|
360
|
-
set backgroundPositionY(backgroundPositionY) {
|
361
|
-
this.setProperty('background-position-y', backgroundPositionY);
|
362
|
-
}
|
363
|
-
/**
|
364
|
-
*
|
365
|
-
*/
|
366
|
-
get backgroundRepeat() {
|
367
|
-
return this.getPropertyValue('background-repeat');
|
368
|
-
}
|
369
|
-
/**
|
370
|
-
*
|
371
|
-
*/
|
372
|
-
set backgroundRepeat(backgroundRepeat) {
|
373
|
-
this.setProperty('background-repeat', backgroundRepeat);
|
374
|
-
}
|
375
|
-
/**
|
376
|
-
*
|
377
|
-
*/
|
378
|
-
get backgroundRepeatX() {
|
379
|
-
return this.getPropertyValue('background-repeat-x');
|
380
|
-
}
|
381
|
-
/**
|
382
|
-
*
|
383
|
-
*/
|
384
|
-
set backgroundRepeatX(backgroundRepeatX) {
|
385
|
-
this.setProperty('background-repeat-x', backgroundRepeatX);
|
386
|
-
}
|
387
|
-
/**
|
388
|
-
*
|
389
|
-
*/
|
390
|
-
get backgroundRepeatY() {
|
391
|
-
return this.getPropertyValue('background-repeat-y');
|
392
|
-
}
|
393
|
-
/**
|
394
|
-
*
|
395
|
-
*/
|
396
|
-
set backgroundRepeatY(backgroundRepeatY) {
|
397
|
-
this.setProperty('background-repeat-y', backgroundRepeatY);
|
398
|
-
}
|
399
|
-
/**
|
400
|
-
*
|
401
|
-
*/
|
402
|
-
get backgroundSize() {
|
403
|
-
return this.getPropertyValue('background-size');
|
404
|
-
}
|
405
|
-
/**
|
406
|
-
*
|
407
|
-
*/
|
408
|
-
set backgroundSize(backgroundSize) {
|
409
|
-
this.setProperty('background-size', backgroundSize);
|
410
|
-
}
|
411
|
-
/**
|
412
|
-
*
|
413
|
-
*/
|
414
|
-
get baselineShift() {
|
415
|
-
return this.getPropertyValue('baseline-shift');
|
416
|
-
}
|
417
|
-
/**
|
418
|
-
*
|
419
|
-
*/
|
420
|
-
set baselineShift(baselineShift) {
|
421
|
-
this.setProperty('baseline-shift', baselineShift);
|
422
|
-
}
|
423
|
-
/**
|
424
|
-
*
|
425
|
-
*/
|
426
|
-
get blockSize() {
|
427
|
-
return this.getPropertyValue('block-size');
|
428
|
-
}
|
429
|
-
/**
|
430
|
-
*
|
431
|
-
*/
|
432
|
-
set blockSize(blockSize) {
|
433
|
-
this.setProperty('block-size', blockSize);
|
434
|
-
}
|
435
|
-
/**
|
436
|
-
*
|
437
|
-
*/
|
438
|
-
get border() {
|
439
|
-
return this.getPropertyValue('border');
|
440
|
-
}
|
441
|
-
/**
|
442
|
-
*
|
443
|
-
*/
|
444
|
-
set border(border) {
|
445
|
-
this.setProperty('border', border);
|
446
|
-
}
|
447
|
-
/**
|
448
|
-
*
|
449
|
-
*/
|
450
|
-
get borderBlockEnd() {
|
451
|
-
return this.getPropertyValue('border-block-end');
|
452
|
-
}
|
453
|
-
/**
|
454
|
-
*
|
455
|
-
*/
|
456
|
-
set borderBlockEnd(borderBlockEnd) {
|
457
|
-
this.setProperty('border-block-end', borderBlockEnd);
|
458
|
-
}
|
459
|
-
/**
|
460
|
-
*
|
461
|
-
*/
|
462
|
-
get borderBlockEndColor() {
|
463
|
-
return this.getPropertyValue('border-block-end-color');
|
464
|
-
}
|
465
|
-
/**
|
466
|
-
*
|
467
|
-
*/
|
468
|
-
set borderBlockEndColor(borderBlockEndColor) {
|
469
|
-
this.setProperty('border-block-end-color', borderBlockEndColor);
|
470
|
-
}
|
471
|
-
/**
|
472
|
-
*
|
473
|
-
*/
|
474
|
-
get borderBlockEndStyle() {
|
475
|
-
return this.getPropertyValue('border-block-end-style');
|
476
|
-
}
|
477
|
-
/**
|
478
|
-
*
|
479
|
-
*/
|
480
|
-
set borderBlockEndStyle(borderBlockEndStyle) {
|
481
|
-
this.setProperty('border-block-end-style', borderBlockEndStyle);
|
482
|
-
}
|
483
|
-
/**
|
484
|
-
*
|
485
|
-
*/
|
486
|
-
get borderBlockEndWidth() {
|
487
|
-
return this.getPropertyValue('border-block-end-width');
|
488
|
-
}
|
489
|
-
/**
|
490
|
-
*
|
491
|
-
*/
|
492
|
-
set borderBlockEndWidth(borderBlockEndWidth) {
|
493
|
-
this.setProperty('border-block-end-width', borderBlockEndWidth);
|
494
|
-
}
|
495
|
-
/**
|
496
|
-
*
|
497
|
-
*/
|
498
|
-
get borderBlockStart() {
|
499
|
-
return this.getPropertyValue('border-block-start');
|
500
|
-
}
|
501
|
-
/**
|
502
|
-
*
|
503
|
-
*/
|
504
|
-
set borderBlockStart(borderBlockStart) {
|
505
|
-
this.setProperty('border-block-start', borderBlockStart);
|
506
|
-
}
|
507
|
-
/**
|
508
|
-
*
|
509
|
-
*/
|
510
|
-
get borderBlockStartColor() {
|
511
|
-
return this.getPropertyValue('border-block-start-color');
|
512
|
-
}
|
513
|
-
/**
|
514
|
-
*
|
515
|
-
*/
|
516
|
-
set borderBlockStartColor(borderBlockStartColor) {
|
517
|
-
this.setProperty('border-block-start-color', borderBlockStartColor);
|
518
|
-
}
|
519
|
-
/**
|
520
|
-
*
|
521
|
-
*/
|
522
|
-
get borderBlockStartStyle() {
|
523
|
-
return this.getPropertyValue('border-block-start-style');
|
524
|
-
}
|
525
|
-
/**
|
526
|
-
*
|
527
|
-
*/
|
528
|
-
set borderBlockStartStyle(borderBlockStartStyle) {
|
529
|
-
this.setProperty('border-block-start-style', borderBlockStartStyle);
|
530
|
-
}
|
531
|
-
/**
|
532
|
-
*
|
533
|
-
*/
|
534
|
-
get borderBlockStartWidth() {
|
535
|
-
return this.getPropertyValue('border-block-start-width');
|
536
|
-
}
|
537
|
-
/**
|
538
|
-
*
|
539
|
-
*/
|
540
|
-
set borderBlockStartWidth(borderBlockStartWidth) {
|
541
|
-
this.setProperty('border-block-start-width', borderBlockStartWidth);
|
542
|
-
}
|
543
|
-
/**
|
544
|
-
*
|
545
|
-
*/
|
546
|
-
get borderBottom() {
|
547
|
-
return this.getPropertyValue('border-bottom');
|
548
|
-
}
|
549
|
-
/**
|
550
|
-
*
|
551
|
-
*/
|
552
|
-
set borderBottom(borderBottom) {
|
553
|
-
this.setProperty('border-bottom', borderBottom);
|
554
|
-
}
|
555
|
-
/**
|
556
|
-
*
|
557
|
-
*/
|
558
|
-
get borderBottomColor() {
|
559
|
-
return this.getPropertyValue('border-bottom-color');
|
560
|
-
}
|
561
|
-
/**
|
562
|
-
*
|
563
|
-
*/
|
564
|
-
set borderBottomColor(borderBottomColor) {
|
565
|
-
this.setProperty('border-bottom-color', borderBottomColor);
|
566
|
-
}
|
567
|
-
/**
|
568
|
-
*
|
569
|
-
*/
|
570
|
-
get borderBottomLeftRadius() {
|
571
|
-
return this.getPropertyValue('border-bottom-left-radius');
|
572
|
-
}
|
573
|
-
/**
|
574
|
-
*
|
575
|
-
*/
|
576
|
-
set borderBottomLeftRadius(borderBottomLeftRadius) {
|
577
|
-
this.setProperty('border-bottom-left-radius', borderBottomLeftRadius);
|
578
|
-
}
|
579
|
-
/**
|
580
|
-
*
|
581
|
-
*/
|
582
|
-
get borderBottomRightRadius() {
|
583
|
-
return this.getPropertyValue('border-bottom-right-radius');
|
584
|
-
}
|
585
|
-
/**
|
586
|
-
*
|
587
|
-
*/
|
588
|
-
set borderBottomRightRadius(borderBottomRightRadius) {
|
589
|
-
this.setProperty('border-bottom-right-radius', borderBottomRightRadius);
|
590
|
-
}
|
591
|
-
/**
|
592
|
-
*
|
593
|
-
*/
|
594
|
-
get borderBottomStyle() {
|
595
|
-
return this.getPropertyValue('border-bottom-style');
|
596
|
-
}
|
597
|
-
/**
|
598
|
-
*
|
599
|
-
*/
|
600
|
-
set borderBottomStyle(borderBottomStyle) {
|
601
|
-
this.setProperty('border-bottom-style', borderBottomStyle);
|
602
|
-
}
|
603
|
-
/**
|
604
|
-
*
|
605
|
-
*/
|
606
|
-
get borderBottomWidth() {
|
607
|
-
return this.getPropertyValue('border-bottom-width');
|
608
|
-
}
|
609
|
-
/**
|
610
|
-
*
|
611
|
-
*/
|
612
|
-
set borderBottomWidth(borderBottomWidth) {
|
613
|
-
this.setProperty('border-bottom-width', borderBottomWidth);
|
614
|
-
}
|
615
|
-
/**
|
616
|
-
*
|
617
|
-
*/
|
618
|
-
get borderCollapse() {
|
619
|
-
return this.getPropertyValue('border-collapse');
|
620
|
-
}
|
621
|
-
/**
|
622
|
-
*
|
623
|
-
*/
|
624
|
-
set borderCollapse(borderCollapse) {
|
625
|
-
this.setProperty('border-collapse', borderCollapse);
|
626
|
-
}
|
627
|
-
/**
|
628
|
-
*
|
629
|
-
*/
|
630
|
-
get borderColor() {
|
631
|
-
return this.getPropertyValue('border-color');
|
632
|
-
}
|
633
|
-
/**
|
634
|
-
*
|
635
|
-
*/
|
636
|
-
set borderColor(borderColor) {
|
637
|
-
this.setProperty('border-color', borderColor);
|
638
|
-
}
|
639
|
-
/**
|
640
|
-
*
|
641
|
-
*/
|
642
|
-
get borderImage() {
|
643
|
-
return this.getPropertyValue('border-image');
|
644
|
-
}
|
645
|
-
/**
|
646
|
-
*
|
647
|
-
*/
|
648
|
-
set borderImage(borderImage) {
|
649
|
-
this.setProperty('border-image', borderImage);
|
650
|
-
}
|
651
|
-
/**
|
652
|
-
*
|
653
|
-
*/
|
654
|
-
get borderImageOutset() {
|
655
|
-
return this.getPropertyValue('border-image-outset');
|
656
|
-
}
|
657
|
-
/**
|
658
|
-
*
|
659
|
-
*/
|
660
|
-
set borderImageOutset(borderImageOutset) {
|
661
|
-
this.setProperty('border-image-outset', borderImageOutset);
|
662
|
-
}
|
663
|
-
/**
|
664
|
-
*
|
665
|
-
*/
|
666
|
-
get borderImageRepeat() {
|
667
|
-
return this.getPropertyValue('border-image-repeat');
|
668
|
-
}
|
669
|
-
/**
|
670
|
-
*
|
671
|
-
*/
|
672
|
-
set borderImageRepeat(borderImageRepeat) {
|
673
|
-
this.setProperty('border-image-repeat', borderImageRepeat);
|
674
|
-
}
|
675
|
-
/**
|
676
|
-
*
|
677
|
-
*/
|
678
|
-
get borderImageSlice() {
|
679
|
-
return this.getPropertyValue('border-image-slice');
|
680
|
-
}
|
681
|
-
/**
|
682
|
-
*
|
683
|
-
*/
|
684
|
-
set borderImageSlice(borderImageSlice) {
|
685
|
-
this.setProperty('border-image-slice', borderImageSlice);
|
686
|
-
}
|
687
|
-
/**
|
688
|
-
*
|
689
|
-
*/
|
690
|
-
get borderImageSource() {
|
691
|
-
return this.getPropertyValue('border-image-source');
|
692
|
-
}
|
693
|
-
/**
|
694
|
-
*
|
695
|
-
*/
|
696
|
-
set borderImageSource(borderImageSource) {
|
697
|
-
this.setProperty('border-image-source', borderImageSource);
|
698
|
-
}
|
699
|
-
/**
|
700
|
-
*
|
701
|
-
*/
|
702
|
-
get borderImageWidth() {
|
703
|
-
return this.getPropertyValue('border-image-width');
|
704
|
-
}
|
705
|
-
/**
|
706
|
-
*
|
707
|
-
*/
|
708
|
-
set borderImageWidth(borderImageWidth) {
|
709
|
-
this.setProperty('border-image-width', borderImageWidth);
|
710
|
-
}
|
711
|
-
/**
|
712
|
-
*
|
713
|
-
*/
|
714
|
-
get borderInlineEnd() {
|
715
|
-
return this.getPropertyValue('border-inline-end');
|
716
|
-
}
|
717
|
-
/**
|
718
|
-
*
|
719
|
-
*/
|
720
|
-
set borderInlineEnd(borderInlineEnd) {
|
721
|
-
this.setProperty('border-inline-end', borderInlineEnd);
|
722
|
-
}
|
723
|
-
/**
|
724
|
-
*
|
725
|
-
*/
|
726
|
-
get borderInlineEndColor() {
|
727
|
-
return this.getPropertyValue('border-inline-end-color');
|
728
|
-
}
|
729
|
-
/**
|
730
|
-
*
|
731
|
-
*/
|
732
|
-
set borderInlineEndColor(borderInlineEndColor) {
|
733
|
-
this.setProperty('border-inline-end-color', borderInlineEndColor);
|
734
|
-
}
|
735
|
-
/**
|
736
|
-
*
|
737
|
-
*/
|
738
|
-
get borderInlineEndStyle() {
|
739
|
-
return this.getPropertyValue('border-inline-end-style');
|
740
|
-
}
|
741
|
-
/**
|
742
|
-
*
|
743
|
-
*/
|
744
|
-
set borderInlineEndStyle(borderInlineEndStyle) {
|
745
|
-
this.setProperty('border-inline-end-style', borderInlineEndStyle);
|
746
|
-
}
|
747
|
-
/**
|
748
|
-
*
|
749
|
-
*/
|
750
|
-
get borderInlineEndWidth() {
|
751
|
-
return this.getPropertyValue('border-inline-end-width');
|
752
|
-
}
|
753
|
-
/**
|
754
|
-
*
|
755
|
-
*/
|
756
|
-
set borderInlineEndWidth(borderInlineEndWidth) {
|
757
|
-
this.setProperty('border-inline-end-width', borderInlineEndWidth);
|
758
|
-
}
|
759
|
-
/**
|
760
|
-
*
|
761
|
-
*/
|
762
|
-
get borderInlineStart() {
|
763
|
-
return this.getPropertyValue('border-inline-start');
|
764
|
-
}
|
765
|
-
/**
|
766
|
-
*
|
767
|
-
*/
|
768
|
-
set borderInlineStart(borderInlineStart) {
|
769
|
-
this.setProperty('border-inline-start', borderInlineStart);
|
770
|
-
}
|
771
|
-
/**
|
772
|
-
*
|
773
|
-
*/
|
774
|
-
get borderInlineStartColor() {
|
775
|
-
return this.getPropertyValue('border-inline-start-color');
|
776
|
-
}
|
777
|
-
/**
|
778
|
-
*
|
779
|
-
*/
|
780
|
-
set borderInlineStartColor(borderInlineStartColor) {
|
781
|
-
this.setProperty('border-inline-start-color', borderInlineStartColor);
|
782
|
-
}
|
783
|
-
/**
|
784
|
-
*
|
785
|
-
*/
|
786
|
-
get borderInlineStartStyle() {
|
787
|
-
return this.getPropertyValue('border-inline-start-style');
|
788
|
-
}
|
789
|
-
/**
|
790
|
-
*
|
791
|
-
*/
|
792
|
-
set borderInlineStartStyle(borderInlineStartStyle) {
|
793
|
-
this.setProperty('border-inline-start-style', borderInlineStartStyle);
|
794
|
-
}
|
795
|
-
/**
|
796
|
-
*
|
797
|
-
*/
|
798
|
-
get borderInlineStartWidth() {
|
799
|
-
return this.getPropertyValue('border-inline-start-width');
|
800
|
-
}
|
801
|
-
/**
|
802
|
-
*
|
803
|
-
*/
|
804
|
-
set borderInlineStartWidth(borderInlineStartWidth) {
|
805
|
-
this.setProperty('border-inline-start-width', borderInlineStartWidth);
|
806
|
-
}
|
807
|
-
/**
|
808
|
-
*
|
809
|
-
*/
|
810
|
-
get borderLeft() {
|
811
|
-
return this.getPropertyValue('border-left');
|
812
|
-
}
|
813
|
-
/**
|
814
|
-
*
|
815
|
-
*/
|
816
|
-
set borderLeft(borderLeft) {
|
817
|
-
this.setProperty('border-left', borderLeft);
|
818
|
-
}
|
819
|
-
/**
|
820
|
-
*
|
821
|
-
*/
|
822
|
-
get borderLeftColor() {
|
823
|
-
return this.getPropertyValue('border-left-color');
|
824
|
-
}
|
825
|
-
/**
|
826
|
-
*
|
827
|
-
*/
|
828
|
-
set borderLeftColor(borderLeftColor) {
|
829
|
-
this.setProperty('border-left-color', borderLeftColor);
|
830
|
-
}
|
831
|
-
/**
|
832
|
-
*
|
833
|
-
*/
|
834
|
-
get borderLeftStyle() {
|
835
|
-
return this.getPropertyValue('border-left-style');
|
836
|
-
}
|
837
|
-
/**
|
838
|
-
*
|
839
|
-
*/
|
840
|
-
set borderLeftStyle(borderLeftStyle) {
|
841
|
-
this.setProperty('border-left-style', borderLeftStyle);
|
842
|
-
}
|
843
|
-
/**
|
844
|
-
*
|
845
|
-
*/
|
846
|
-
get borderLeftWidth() {
|
847
|
-
return this.getPropertyValue('border-left-width');
|
848
|
-
}
|
849
|
-
/**
|
850
|
-
*
|
851
|
-
*/
|
852
|
-
set borderLeftWidth(borderLeftWidth) {
|
853
|
-
this.setProperty('border-left-width', borderLeftWidth);
|
854
|
-
}
|
855
|
-
/**
|
856
|
-
*
|
857
|
-
*/
|
858
|
-
get borderRadius() {
|
859
|
-
return this.getPropertyValue('border-radius');
|
860
|
-
}
|
861
|
-
/**
|
862
|
-
*
|
863
|
-
*/
|
864
|
-
set borderRadius(borderRadius) {
|
865
|
-
this.setProperty('border-radius', borderRadius);
|
866
|
-
}
|
867
|
-
/**
|
868
|
-
*
|
869
|
-
*/
|
870
|
-
get borderRight() {
|
871
|
-
return this.getPropertyValue('border-right');
|
872
|
-
}
|
873
|
-
/**
|
874
|
-
*
|
875
|
-
*/
|
876
|
-
set borderRight(borderRight) {
|
877
|
-
this.setProperty('border-right', borderRight);
|
878
|
-
}
|
879
|
-
/**
|
880
|
-
*
|
881
|
-
*/
|
882
|
-
get borderRightColor() {
|
883
|
-
return this.getPropertyValue('border-right-color');
|
884
|
-
}
|
885
|
-
/**
|
886
|
-
*
|
887
|
-
*/
|
888
|
-
set borderRightColor(borderRightColor) {
|
889
|
-
this.setProperty('border-right-color', borderRightColor);
|
890
|
-
}
|
891
|
-
/**
|
892
|
-
*
|
893
|
-
*/
|
894
|
-
get borderRightStyle() {
|
895
|
-
return this.getPropertyValue('border-right-style');
|
896
|
-
}
|
897
|
-
/**
|
898
|
-
*
|
899
|
-
*/
|
900
|
-
set borderRightStyle(borderRightStyle) {
|
901
|
-
this.setProperty('border-right-style', borderRightStyle);
|
902
|
-
}
|
903
|
-
/**
|
904
|
-
*
|
905
|
-
*/
|
906
|
-
get borderRightWidth() {
|
907
|
-
return this.getPropertyValue('border-right-width');
|
908
|
-
}
|
909
|
-
/**
|
910
|
-
*
|
911
|
-
*/
|
912
|
-
set borderRightWidth(borderRightWidth) {
|
913
|
-
this.setProperty('border-right-width', borderRightWidth);
|
914
|
-
}
|
915
|
-
/**
|
916
|
-
*
|
917
|
-
*/
|
918
|
-
get borderSpacing() {
|
919
|
-
return this.getPropertyValue('border-spacing');
|
920
|
-
}
|
921
|
-
/**
|
922
|
-
*
|
923
|
-
*/
|
924
|
-
set borderSpacing(borderSpacing) {
|
925
|
-
this.setProperty('border-spacing', borderSpacing);
|
926
|
-
}
|
927
|
-
/**
|
928
|
-
*
|
929
|
-
*/
|
930
|
-
get borderStyle() {
|
931
|
-
return this.getPropertyValue('border-style');
|
932
|
-
}
|
933
|
-
/**
|
934
|
-
*
|
935
|
-
*/
|
936
|
-
set borderStyle(borderStyle) {
|
937
|
-
this.setProperty('border-style', borderStyle);
|
938
|
-
}
|
939
|
-
/**
|
940
|
-
*
|
941
|
-
*/
|
942
|
-
get borderTop() {
|
943
|
-
return this.getPropertyValue('border-top');
|
944
|
-
}
|
945
|
-
/**
|
946
|
-
*
|
947
|
-
*/
|
948
|
-
set borderTop(borderTop) {
|
949
|
-
this.setProperty('border-top', borderTop);
|
950
|
-
}
|
951
|
-
/**
|
952
|
-
*
|
953
|
-
*/
|
954
|
-
get borderTopColor() {
|
955
|
-
return this.getPropertyValue('border-top-color');
|
956
|
-
}
|
957
|
-
/**
|
958
|
-
*
|
959
|
-
*/
|
960
|
-
set borderTopColor(borderTopColor) {
|
961
|
-
this.setProperty('border-top-color', borderTopColor);
|
962
|
-
}
|
963
|
-
/**
|
964
|
-
*
|
965
|
-
*/
|
966
|
-
get borderTopLeftRadius() {
|
967
|
-
return this.getPropertyValue('border-top-left-radius');
|
968
|
-
}
|
969
|
-
/**
|
970
|
-
*
|
971
|
-
*/
|
972
|
-
set borderTopLeftRadius(borderTopLeftRadius) {
|
973
|
-
this.setProperty('border-top-left-radius', borderTopLeftRadius);
|
974
|
-
}
|
975
|
-
/**
|
976
|
-
*
|
977
|
-
*/
|
978
|
-
get borderTopRightRadius() {
|
979
|
-
return this.getPropertyValue('border-top-right-radius');
|
980
|
-
}
|
981
|
-
/**
|
982
|
-
*
|
983
|
-
*/
|
984
|
-
set borderTopRightRadius(borderTopRightRadius) {
|
985
|
-
this.setProperty('border-top-right-radius', borderTopRightRadius);
|
986
|
-
}
|
987
|
-
/**
|
988
|
-
*
|
989
|
-
*/
|
990
|
-
get borderTopStyle() {
|
991
|
-
return this.getPropertyValue('border-top-style');
|
992
|
-
}
|
993
|
-
/**
|
994
|
-
*
|
995
|
-
*/
|
996
|
-
set borderTopStyle(borderTopStyle) {
|
997
|
-
this.setProperty('border-top-style', borderTopStyle);
|
998
|
-
}
|
999
|
-
/**
|
1000
|
-
*
|
1001
|
-
*/
|
1002
|
-
get borderTopWidth() {
|
1003
|
-
return this.getPropertyValue('border-top-width');
|
1004
|
-
}
|
1005
|
-
/**
|
1006
|
-
*
|
1007
|
-
*/
|
1008
|
-
set borderTopWidth(borderTopWidth) {
|
1009
|
-
this.setProperty('border-top-width', borderTopWidth);
|
1010
|
-
}
|
1011
|
-
/**
|
1012
|
-
*
|
1013
|
-
*/
|
1014
|
-
get borderWidth() {
|
1015
|
-
return this.getPropertyValue('border-width');
|
1016
|
-
}
|
1017
|
-
/**
|
1018
|
-
*
|
1019
|
-
*/
|
1020
|
-
set borderWidth(borderWidth) {
|
1021
|
-
this.setProperty('border-width', borderWidth);
|
1022
|
-
}
|
1023
|
-
/**
|
1024
|
-
*
|
1025
|
-
*/
|
1026
|
-
get bottom() {
|
1027
|
-
return this.getPropertyValue('bottom');
|
1028
|
-
}
|
1029
|
-
/**
|
1030
|
-
*
|
1031
|
-
*/
|
1032
|
-
set bottom(bottom) {
|
1033
|
-
this.setProperty('bottom', bottom);
|
1034
|
-
}
|
1035
|
-
/**
|
1036
|
-
*
|
1037
|
-
*/
|
1038
|
-
get boxShadow() {
|
1039
|
-
return this.getPropertyValue('box-shadow');
|
1040
|
-
}
|
1041
|
-
/**
|
1042
|
-
*
|
1043
|
-
*/
|
1044
|
-
set boxShadow(boxShadow) {
|
1045
|
-
this.setProperty('box-shadow', boxShadow);
|
1046
|
-
}
|
1047
|
-
/**
|
1048
|
-
*
|
1049
|
-
*/
|
1050
|
-
get boxSizing() {
|
1051
|
-
return this.getPropertyValue('box-sizing');
|
1052
|
-
}
|
1053
|
-
/**
|
1054
|
-
*
|
1055
|
-
*/
|
1056
|
-
set boxSizing(boxSizing) {
|
1057
|
-
this.setProperty('box-sizing', boxSizing);
|
1058
|
-
}
|
1059
|
-
/**
|
1060
|
-
*
|
1061
|
-
*/
|
1062
|
-
get breakAfter() {
|
1063
|
-
return this.getPropertyValue('break-after');
|
1064
|
-
}
|
1065
|
-
/**
|
1066
|
-
*
|
1067
|
-
*/
|
1068
|
-
set breakAfter(breakAfter) {
|
1069
|
-
this.setProperty('break-after', breakAfter);
|
1070
|
-
}
|
1071
|
-
/**
|
1072
|
-
*
|
1073
|
-
*/
|
1074
|
-
get breakBefore() {
|
1075
|
-
return this.getPropertyValue('break-before');
|
1076
|
-
}
|
1077
|
-
/**
|
1078
|
-
*
|
1079
|
-
*/
|
1080
|
-
set breakBefore(breakBefore) {
|
1081
|
-
this.setProperty('break-before', breakBefore);
|
1082
|
-
}
|
1083
|
-
/**
|
1084
|
-
*
|
1085
|
-
*/
|
1086
|
-
get breakInside() {
|
1087
|
-
return this.getPropertyValue('break-inside');
|
1088
|
-
}
|
1089
|
-
/**
|
1090
|
-
*
|
1091
|
-
*/
|
1092
|
-
set breakInside(breakInside) {
|
1093
|
-
this.setProperty('break-inside', breakInside);
|
1094
|
-
}
|
1095
|
-
/**
|
1096
|
-
*
|
1097
|
-
*/
|
1098
|
-
get bufferedRendering() {
|
1099
|
-
return this.getPropertyValue('buffered-rendering');
|
1100
|
-
}
|
1101
|
-
/**
|
1102
|
-
*
|
1103
|
-
*/
|
1104
|
-
set bufferedRendering(bufferedRendering) {
|
1105
|
-
this.setProperty('buffered-rendering', bufferedRendering);
|
1106
|
-
}
|
1107
|
-
/**
|
1108
|
-
*
|
1109
|
-
*/
|
1110
|
-
get captionSide() {
|
1111
|
-
return this.getPropertyValue('caption-side');
|
1112
|
-
}
|
1113
|
-
/**
|
1114
|
-
*
|
1115
|
-
*/
|
1116
|
-
set captionSide(captionSide) {
|
1117
|
-
this.setProperty('caption-side', captionSide);
|
1118
|
-
}
|
1119
|
-
/**
|
1120
|
-
*
|
1121
|
-
*/
|
1122
|
-
get caretColor() {
|
1123
|
-
return this.getPropertyValue('caret-color');
|
1124
|
-
}
|
1125
|
-
/**
|
1126
|
-
*
|
1127
|
-
*/
|
1128
|
-
set caretColor(caretColor) {
|
1129
|
-
this.setProperty('caret-color', caretColor);
|
1130
|
-
}
|
1131
|
-
/**
|
1132
|
-
*
|
1133
|
-
*/
|
1134
|
-
get clear() {
|
1135
|
-
return this.getPropertyValue('clear');
|
1136
|
-
}
|
1137
|
-
/**
|
1138
|
-
*
|
1139
|
-
*/
|
1140
|
-
set clear(clear) {
|
1141
|
-
this.setProperty('clear', clear);
|
1142
|
-
}
|
1143
|
-
/**
|
1144
|
-
*
|
1145
|
-
*/
|
1146
|
-
get clip() {
|
1147
|
-
return this.getPropertyValue('clip');
|
1148
|
-
}
|
1149
|
-
/**
|
1150
|
-
*
|
1151
|
-
*/
|
1152
|
-
set clip(clip) {
|
1153
|
-
this.setProperty('clip', clip);
|
1154
|
-
}
|
1155
|
-
/**
|
1156
|
-
*
|
1157
|
-
*/
|
1158
|
-
get clipPath() {
|
1159
|
-
return this.getPropertyValue('clip-path');
|
1160
|
-
}
|
1161
|
-
/**
|
1162
|
-
*
|
1163
|
-
*/
|
1164
|
-
set clipPath(clipPath) {
|
1165
|
-
this.setProperty('clip-path', clipPath);
|
1166
|
-
}
|
1167
|
-
/**
|
1168
|
-
*
|
1169
|
-
*/
|
1170
|
-
get clipRule() {
|
1171
|
-
return this.getPropertyValue('clip-rule');
|
1172
|
-
}
|
1173
|
-
/**
|
1174
|
-
*
|
1175
|
-
*/
|
1176
|
-
set clipRule(clipRule) {
|
1177
|
-
this.setProperty('clip-rule', clipRule);
|
1178
|
-
}
|
1179
|
-
/**
|
1180
|
-
*
|
1181
|
-
*/
|
1182
|
-
get color() {
|
1183
|
-
return this.getPropertyValue('color');
|
1184
|
-
}
|
1185
|
-
/**
|
1186
|
-
*
|
1187
|
-
*/
|
1188
|
-
set color(color) {
|
1189
|
-
this.setProperty('color', color);
|
1190
|
-
}
|
1191
|
-
/**
|
1192
|
-
*
|
1193
|
-
*/
|
1194
|
-
get colorInterpolation() {
|
1195
|
-
return this.getPropertyValue('color-interpolation');
|
1196
|
-
}
|
1197
|
-
/**
|
1198
|
-
*
|
1199
|
-
*/
|
1200
|
-
set colorInterpolation(colorInterpolation) {
|
1201
|
-
this.setProperty('color-interpolation', colorInterpolation);
|
1202
|
-
}
|
1203
|
-
/**
|
1204
|
-
*
|
1205
|
-
*/
|
1206
|
-
get colorInterpolationFilters() {
|
1207
|
-
return this.getPropertyValue('color-interpolation-filters');
|
1208
|
-
}
|
1209
|
-
/**
|
1210
|
-
*
|
1211
|
-
*/
|
1212
|
-
set colorInterpolationFilters(colorInterpolationFilters) {
|
1213
|
-
this.setProperty('color-interpolation-filters', colorInterpolationFilters);
|
1214
|
-
}
|
1215
|
-
/**
|
1216
|
-
*
|
1217
|
-
*/
|
1218
|
-
get colorRendering() {
|
1219
|
-
return this.getPropertyValue('color-rendering');
|
1220
|
-
}
|
1221
|
-
/**
|
1222
|
-
*
|
1223
|
-
*/
|
1224
|
-
set colorRendering(colorRendering) {
|
1225
|
-
this.setProperty('color-rendering', colorRendering);
|
1226
|
-
}
|
1227
|
-
/**
|
1228
|
-
*
|
1229
|
-
*/
|
1230
|
-
get colorScheme() {
|
1231
|
-
return this.getPropertyValue('color-scheme');
|
1232
|
-
}
|
1233
|
-
/**
|
1234
|
-
*
|
1235
|
-
*/
|
1236
|
-
set colorScheme(colorScheme) {
|
1237
|
-
this.setProperty('color-scheme', colorScheme);
|
1238
|
-
}
|
1239
|
-
/**
|
1240
|
-
*
|
1241
|
-
*/
|
1242
|
-
get columnCount() {
|
1243
|
-
return this.getPropertyValue('column-count');
|
1244
|
-
}
|
1245
|
-
/**
|
1246
|
-
*
|
1247
|
-
*/
|
1248
|
-
set columnCount(columnCount) {
|
1249
|
-
this.setProperty('column-count', columnCount);
|
1250
|
-
}
|
1251
|
-
/**
|
1252
|
-
*
|
1253
|
-
*/
|
1254
|
-
get columnFill() {
|
1255
|
-
return this.getPropertyValue('column-fill');
|
1256
|
-
}
|
1257
|
-
/**
|
1258
|
-
*
|
1259
|
-
*/
|
1260
|
-
set columnFill(columnFill) {
|
1261
|
-
this.setProperty('column-fill', columnFill);
|
1262
|
-
}
|
1263
|
-
/**
|
1264
|
-
*
|
1265
|
-
*/
|
1266
|
-
get columnGap() {
|
1267
|
-
return this.getPropertyValue('column-gap');
|
1268
|
-
}
|
1269
|
-
/**
|
1270
|
-
*
|
1271
|
-
*/
|
1272
|
-
set columnGap(columnGap) {
|
1273
|
-
this.setProperty('column-gap', columnGap);
|
1274
|
-
}
|
1275
|
-
/**
|
1276
|
-
*
|
1277
|
-
*/
|
1278
|
-
get columnRule() {
|
1279
|
-
return this.getPropertyValue('column-rule');
|
1280
|
-
}
|
1281
|
-
/**
|
1282
|
-
*
|
1283
|
-
*/
|
1284
|
-
set columnRule(columnRule) {
|
1285
|
-
this.setProperty('column-rule', columnRule);
|
1286
|
-
}
|
1287
|
-
/**
|
1288
|
-
*
|
1289
|
-
*/
|
1290
|
-
get columnRuleColor() {
|
1291
|
-
return this.getPropertyValue('column-rule-color');
|
1292
|
-
}
|
1293
|
-
/**
|
1294
|
-
*
|
1295
|
-
*/
|
1296
|
-
set columnRuleColor(columnRuleColor) {
|
1297
|
-
this.setProperty('column-rule-color', columnRuleColor);
|
1298
|
-
}
|
1299
|
-
/**
|
1300
|
-
*
|
1301
|
-
*/
|
1302
|
-
get columnRuleStyle() {
|
1303
|
-
return this.getPropertyValue('column-rule-style');
|
1304
|
-
}
|
1305
|
-
/**
|
1306
|
-
*
|
1307
|
-
*/
|
1308
|
-
set columnRuleStyle(columnRuleStyle) {
|
1309
|
-
this.setProperty('column-rule-style', columnRuleStyle);
|
1310
|
-
}
|
1311
|
-
/**
|
1312
|
-
*
|
1313
|
-
*/
|
1314
|
-
get columnRuleWidth() {
|
1315
|
-
return this.getPropertyValue('column-rule-width');
|
1316
|
-
}
|
1317
|
-
/**
|
1318
|
-
*
|
1319
|
-
*/
|
1320
|
-
set columnRuleWidth(columnRuleWidth) {
|
1321
|
-
this.setProperty('column-rule-width', columnRuleWidth);
|
1322
|
-
}
|
1323
|
-
/**
|
1324
|
-
*
|
1325
|
-
*/
|
1326
|
-
get columnSpan() {
|
1327
|
-
return this.getPropertyValue('column-span');
|
1328
|
-
}
|
1329
|
-
/**
|
1330
|
-
*
|
1331
|
-
*/
|
1332
|
-
set columnSpan(columnSpan) {
|
1333
|
-
this.setProperty('column-span', columnSpan);
|
1334
|
-
}
|
1335
|
-
/**
|
1336
|
-
*
|
1337
|
-
*/
|
1338
|
-
get columnWidth() {
|
1339
|
-
return this.getPropertyValue('column-width');
|
1340
|
-
}
|
1341
|
-
/**
|
1342
|
-
*
|
1343
|
-
*/
|
1344
|
-
set columnWidth(columnWidth) {
|
1345
|
-
this.setProperty('column-width', columnWidth);
|
1346
|
-
}
|
1347
|
-
/**
|
1348
|
-
*
|
1349
|
-
*/
|
1350
|
-
get columns() {
|
1351
|
-
return this.getPropertyValue('columns');
|
1352
|
-
}
|
1353
|
-
/**
|
1354
|
-
*
|
1355
|
-
*/
|
1356
|
-
set columns(columns) {
|
1357
|
-
this.setProperty('columns', columns);
|
1358
|
-
}
|
1359
|
-
/**
|
1360
|
-
*
|
1361
|
-
*/
|
1362
|
-
get contain() {
|
1363
|
-
return this.getPropertyValue('contain');
|
1364
|
-
}
|
1365
|
-
/**
|
1366
|
-
*
|
1367
|
-
*/
|
1368
|
-
set contain(contain) {
|
1369
|
-
this.setProperty('contain', contain);
|
1370
|
-
}
|
1371
|
-
/**
|
1372
|
-
*
|
1373
|
-
*/
|
1374
|
-
get containIntrinsicSize() {
|
1375
|
-
return this.getPropertyValue('contain-intrinsic-size');
|
1376
|
-
}
|
1377
|
-
/**
|
1378
|
-
*
|
1379
|
-
*/
|
1380
|
-
set containIntrinsicSize(containIntrinsicSize) {
|
1381
|
-
this.setProperty('contain-intrinsic-size', containIntrinsicSize);
|
1382
|
-
}
|
1383
|
-
/**
|
1384
|
-
*
|
1385
|
-
*/
|
1386
|
-
get content() {
|
1387
|
-
return this.getPropertyValue('content');
|
1388
|
-
}
|
1389
|
-
/**
|
1390
|
-
*
|
1391
|
-
*/
|
1392
|
-
set content(content) {
|
1393
|
-
this.setProperty('content', content);
|
1394
|
-
}
|
1395
|
-
/**
|
1396
|
-
*
|
1397
|
-
*/
|
1398
|
-
get contentVisibility() {
|
1399
|
-
return this.getPropertyValue('content-visibility');
|
1400
|
-
}
|
1401
|
-
/**
|
1402
|
-
*
|
1403
|
-
*/
|
1404
|
-
set contentVisibility(contentVisibility) {
|
1405
|
-
this.setProperty('content-visibility', contentVisibility);
|
1406
|
-
}
|
1407
|
-
/**
|
1408
|
-
*
|
1409
|
-
*/
|
1410
|
-
get counterIncrement() {
|
1411
|
-
return this.getPropertyValue('counter-increment');
|
1412
|
-
}
|
1413
|
-
/**
|
1414
|
-
*
|
1415
|
-
*/
|
1416
|
-
set counterIncrement(counterIncrement) {
|
1417
|
-
this.setProperty('counter-increment', counterIncrement);
|
1418
|
-
}
|
1419
|
-
/**
|
1420
|
-
*
|
1421
|
-
*/
|
1422
|
-
get counterReset() {
|
1423
|
-
return this.getPropertyValue('counter-reset');
|
1424
|
-
}
|
1425
|
-
/**
|
1426
|
-
*
|
1427
|
-
*/
|
1428
|
-
set counterReset(counterReset) {
|
1429
|
-
this.setProperty('counter-reset', counterReset);
|
1430
|
-
}
|
1431
|
-
/**
|
1432
|
-
*
|
1433
|
-
*/
|
1434
|
-
get counterSet() {
|
1435
|
-
return this.getPropertyValue('counter-set');
|
1436
|
-
}
|
1437
|
-
/**
|
1438
|
-
*
|
1439
|
-
*/
|
1440
|
-
set counterSet(counterSet) {
|
1441
|
-
this.setProperty('counter-set', counterSet);
|
1442
|
-
}
|
1443
|
-
/**
|
1444
|
-
*
|
1445
|
-
*/
|
1446
|
-
get cssFloat() {
|
1447
|
-
return this.getPropertyValue('css-float');
|
1448
|
-
}
|
1449
|
-
/**
|
1450
|
-
*
|
1451
|
-
*/
|
1452
|
-
set cssFloat(cssFloat) {
|
1453
|
-
this.setProperty('css-float', cssFloat);
|
1454
|
-
}
|
1455
|
-
/**
|
1456
|
-
*
|
1457
|
-
*/
|
1458
|
-
get cursor() {
|
1459
|
-
return this.getPropertyValue('cursor');
|
1460
|
-
}
|
1461
|
-
/**
|
1462
|
-
*
|
1463
|
-
*/
|
1464
|
-
set cursor(cursor) {
|
1465
|
-
this.setProperty('cursor', cursor);
|
1466
|
-
}
|
1467
|
-
/**
|
1468
|
-
*
|
1469
|
-
*/
|
1470
|
-
get cx() {
|
1471
|
-
return this.getPropertyValue('cx');
|
1472
|
-
}
|
1473
|
-
/**
|
1474
|
-
*
|
1475
|
-
*/
|
1476
|
-
set cx(cx) {
|
1477
|
-
this.setProperty('cx', cx);
|
1478
|
-
}
|
1479
|
-
/**
|
1480
|
-
*
|
1481
|
-
*/
|
1482
|
-
get cy() {
|
1483
|
-
return this.getPropertyValue('cy');
|
1484
|
-
}
|
1485
|
-
/**
|
1486
|
-
*
|
1487
|
-
*/
|
1488
|
-
set cy(cy) {
|
1489
|
-
this.setProperty('cy', cy);
|
1490
|
-
}
|
1491
|
-
/**
|
1492
|
-
*
|
1493
|
-
*/
|
1494
|
-
get d() {
|
1495
|
-
return this.getPropertyValue('d');
|
1496
|
-
}
|
1497
|
-
/**
|
1498
|
-
*
|
1499
|
-
*/
|
1500
|
-
set d(d) {
|
1501
|
-
this.setProperty('d', d);
|
1502
|
-
}
|
1503
|
-
/**
|
1504
|
-
*
|
1505
|
-
*/
|
1506
|
-
get direction() {
|
1507
|
-
return this.getPropertyValue('direction');
|
1508
|
-
}
|
1509
|
-
/**
|
1510
|
-
*
|
1511
|
-
*/
|
1512
|
-
set direction(direction) {
|
1513
|
-
this.setProperty('direction', direction);
|
1514
|
-
}
|
1515
|
-
/**
|
1516
|
-
*
|
1517
|
-
*/
|
1518
|
-
get display() {
|
1519
|
-
return this.getPropertyValue('display');
|
1520
|
-
}
|
1521
|
-
/**
|
1522
|
-
*
|
1523
|
-
*/
|
1524
|
-
set display(display) {
|
1525
|
-
this.setProperty('display', display);
|
1526
|
-
}
|
1527
|
-
/**
|
1528
|
-
*
|
1529
|
-
*/
|
1530
|
-
get dominantBaseline() {
|
1531
|
-
return this.getPropertyValue('dominant-baseline');
|
1532
|
-
}
|
1533
|
-
/**
|
1534
|
-
*
|
1535
|
-
*/
|
1536
|
-
set dominantBaseline(dominantBaseline) {
|
1537
|
-
this.setProperty('dominant-baseline', dominantBaseline);
|
1538
|
-
}
|
1539
|
-
/**
|
1540
|
-
*
|
1541
|
-
*/
|
1542
|
-
get emptyCells() {
|
1543
|
-
return this.getPropertyValue('empty-cells');
|
1544
|
-
}
|
1545
|
-
/**
|
1546
|
-
*
|
1547
|
-
*/
|
1548
|
-
set emptyCells(emptyCells) {
|
1549
|
-
this.setProperty('empty-cells', emptyCells);
|
1550
|
-
}
|
1551
|
-
/**
|
1552
|
-
*
|
1553
|
-
*/
|
1554
|
-
get fill() {
|
1555
|
-
return this.getPropertyValue('fill');
|
1556
|
-
}
|
1557
|
-
/**
|
1558
|
-
*
|
1559
|
-
*/
|
1560
|
-
set fill(fill) {
|
1561
|
-
this.setProperty('fill', fill);
|
1562
|
-
}
|
1563
|
-
/**
|
1564
|
-
*
|
1565
|
-
*/
|
1566
|
-
get fillOpacity() {
|
1567
|
-
return this.getPropertyValue('fill-opacity');
|
1568
|
-
}
|
1569
|
-
/**
|
1570
|
-
*
|
1571
|
-
*/
|
1572
|
-
set fillOpacity(fillOpacity) {
|
1573
|
-
this.setProperty('fill-opacity', fillOpacity);
|
1574
|
-
}
|
1575
|
-
/**
|
1576
|
-
*
|
1577
|
-
*/
|
1578
|
-
get fillRule() {
|
1579
|
-
return this.getPropertyValue('fill-rule');
|
1580
|
-
}
|
1581
|
-
/**
|
1582
|
-
*
|
1583
|
-
*/
|
1584
|
-
set fillRule(fillRule) {
|
1585
|
-
this.setProperty('fill-rule', fillRule);
|
1586
|
-
}
|
1587
|
-
/**
|
1588
|
-
*
|
1589
|
-
*/
|
1590
|
-
get filter() {
|
1591
|
-
return this.getPropertyValue('filter');
|
1592
|
-
}
|
1593
|
-
/**
|
1594
|
-
*
|
1595
|
-
*/
|
1596
|
-
set filter(filter) {
|
1597
|
-
this.setProperty('filter', filter);
|
1598
|
-
}
|
1599
|
-
/**
|
1600
|
-
*
|
1601
|
-
*/
|
1602
|
-
get flex() {
|
1603
|
-
return this.getPropertyValue('flex');
|
1604
|
-
}
|
1605
|
-
/**
|
1606
|
-
*
|
1607
|
-
*/
|
1608
|
-
set flex(flex) {
|
1609
|
-
this.setProperty('flex', flex);
|
1610
|
-
}
|
1611
|
-
/**
|
1612
|
-
*
|
1613
|
-
*/
|
1614
|
-
get flexBasis() {
|
1615
|
-
return this.getPropertyValue('flex-basis');
|
1616
|
-
}
|
1617
|
-
/**
|
1618
|
-
*
|
1619
|
-
*/
|
1620
|
-
set flexBasis(flexBasis) {
|
1621
|
-
this.setProperty('flex-basis', flexBasis);
|
1622
|
-
}
|
1623
|
-
/**
|
1624
|
-
*
|
1625
|
-
*/
|
1626
|
-
get flexDirection() {
|
1627
|
-
return this.getPropertyValue('flex-direction');
|
1628
|
-
}
|
1629
|
-
/**
|
1630
|
-
*
|
1631
|
-
*/
|
1632
|
-
set flexDirection(flexDirection) {
|
1633
|
-
this.setProperty('flex-direction', flexDirection);
|
1634
|
-
}
|
1635
|
-
/**
|
1636
|
-
*
|
1637
|
-
*/
|
1638
|
-
get flexFlow() {
|
1639
|
-
return this.getPropertyValue('flex-flow');
|
1640
|
-
}
|
1641
|
-
/**
|
1642
|
-
*
|
1643
|
-
*/
|
1644
|
-
set flexFlow(flexFlow) {
|
1645
|
-
this.setProperty('flex-flow', flexFlow);
|
1646
|
-
}
|
1647
|
-
/**
|
1648
|
-
*
|
1649
|
-
*/
|
1650
|
-
get flexGrow() {
|
1651
|
-
return this.getPropertyValue('flex-grow');
|
1652
|
-
}
|
1653
|
-
/**
|
1654
|
-
*
|
1655
|
-
*/
|
1656
|
-
set flexGrow(flexGrow) {
|
1657
|
-
this.setProperty('flex-grow', flexGrow);
|
1658
|
-
}
|
1659
|
-
/**
|
1660
|
-
*
|
1661
|
-
*/
|
1662
|
-
get flexShrink() {
|
1663
|
-
return this.getPropertyValue('flex-shrink');
|
1664
|
-
}
|
1665
|
-
/**
|
1666
|
-
*
|
1667
|
-
*/
|
1668
|
-
set flexShrink(flexShrink) {
|
1669
|
-
this.setProperty('flex-shrink', flexShrink);
|
1670
|
-
}
|
1671
|
-
/**
|
1672
|
-
*
|
1673
|
-
*/
|
1674
|
-
get flexWrap() {
|
1675
|
-
return this.getPropertyValue('flex-wrap');
|
1676
|
-
}
|
1677
|
-
/**
|
1678
|
-
*
|
1679
|
-
*/
|
1680
|
-
set flexWrap(flexWrap) {
|
1681
|
-
this.setProperty('flex-wrap', flexWrap);
|
1682
|
-
}
|
1683
|
-
/**
|
1684
|
-
*
|
1685
|
-
*/
|
1686
|
-
get float() {
|
1687
|
-
return this.getPropertyValue('float');
|
1688
|
-
}
|
1689
|
-
/**
|
1690
|
-
*
|
1691
|
-
*/
|
1692
|
-
set float(float) {
|
1693
|
-
this.setProperty('float', float);
|
1694
|
-
}
|
1695
|
-
/**
|
1696
|
-
*
|
1697
|
-
*/
|
1698
|
-
get floodColor() {
|
1699
|
-
return this.getPropertyValue('flood-color');
|
1700
|
-
}
|
1701
|
-
/**
|
1702
|
-
*
|
1703
|
-
*/
|
1704
|
-
set floodColor(floodColor) {
|
1705
|
-
this.setProperty('flood-color', floodColor);
|
1706
|
-
}
|
1707
|
-
/**
|
1708
|
-
*
|
1709
|
-
*/
|
1710
|
-
get floodOpacity() {
|
1711
|
-
return this.getPropertyValue('flood-opacity');
|
1712
|
-
}
|
1713
|
-
/**
|
1714
|
-
*
|
1715
|
-
*/
|
1716
|
-
set floodOpacity(floodOpacity) {
|
1717
|
-
this.setProperty('flood-opacity', floodOpacity);
|
1718
|
-
}
|
1719
|
-
/**
|
1720
|
-
*
|
1721
|
-
*/
|
1722
|
-
get font() {
|
1723
|
-
return this.getPropertyValue('font');
|
1724
|
-
}
|
1725
|
-
/**
|
1726
|
-
*
|
1727
|
-
*/
|
1728
|
-
set font(font) {
|
1729
|
-
this.setProperty('font', font);
|
1730
|
-
}
|
1731
|
-
/**
|
1732
|
-
*
|
1733
|
-
*/
|
1734
|
-
get fontDisplay() {
|
1735
|
-
return this.getPropertyValue('font-display');
|
1736
|
-
}
|
1737
|
-
/**
|
1738
|
-
*
|
1739
|
-
*/
|
1740
|
-
set fontDisplay(fontDisplay) {
|
1741
|
-
this.setProperty('font-display', fontDisplay);
|
1742
|
-
}
|
1743
|
-
/**
|
1744
|
-
*
|
1745
|
-
*/
|
1746
|
-
get fontFamily() {
|
1747
|
-
return this.getPropertyValue('font-family');
|
1748
|
-
}
|
1749
|
-
/**
|
1750
|
-
*
|
1751
|
-
*/
|
1752
|
-
set fontFamily(fontFamily) {
|
1753
|
-
this.setProperty('font-family', fontFamily);
|
1754
|
-
}
|
1755
|
-
/**
|
1756
|
-
*
|
1757
|
-
*/
|
1758
|
-
get fontFeatureSettings() {
|
1759
|
-
return this.getPropertyValue('font-feature-settings');
|
1760
|
-
}
|
1761
|
-
/**
|
1762
|
-
*
|
1763
|
-
*/
|
1764
|
-
set fontFeatureSettings(fontFeatureSettings) {
|
1765
|
-
this.setProperty('font-feature-settings', fontFeatureSettings);
|
1766
|
-
}
|
1767
|
-
/**
|
1768
|
-
*
|
1769
|
-
*/
|
1770
|
-
get fontKerning() {
|
1771
|
-
return this.getPropertyValue('font-kerning');
|
1772
|
-
}
|
1773
|
-
/**
|
1774
|
-
*
|
1775
|
-
*/
|
1776
|
-
set fontKerning(fontKerning) {
|
1777
|
-
this.setProperty('font-kerning', fontKerning);
|
1778
|
-
}
|
1779
|
-
/**
|
1780
|
-
*
|
1781
|
-
*/
|
1782
|
-
get fontOpticalSizing() {
|
1783
|
-
return this.getPropertyValue('font-optical-sizing');
|
1784
|
-
}
|
1785
|
-
/**
|
1786
|
-
*
|
1787
|
-
*/
|
1788
|
-
set fontOpticalSizing(fontOpticalSizing) {
|
1789
|
-
this.setProperty('font-optical-sizing', fontOpticalSizing);
|
1790
|
-
}
|
1791
|
-
/**
|
1792
|
-
*
|
1793
|
-
*/
|
1794
|
-
get fontSize() {
|
1795
|
-
return this.getPropertyValue('font-size');
|
1796
|
-
}
|
1797
|
-
/**
|
1798
|
-
*
|
1799
|
-
*/
|
1800
|
-
set fontSize(fontSize) {
|
1801
|
-
this.setProperty('font-size', fontSize);
|
1802
|
-
}
|
1803
|
-
/**
|
1804
|
-
*
|
1805
|
-
*/
|
1806
|
-
get fontStretch() {
|
1807
|
-
return this.getPropertyValue('font-stretch');
|
1808
|
-
}
|
1809
|
-
/**
|
1810
|
-
*
|
1811
|
-
*/
|
1812
|
-
set fontStretch(fontStretch) {
|
1813
|
-
this.setProperty('font-stretch', fontStretch);
|
1814
|
-
}
|
1815
|
-
/**
|
1816
|
-
*
|
1817
|
-
*/
|
1818
|
-
get fontStyle() {
|
1819
|
-
return this.getPropertyValue('font-style');
|
1820
|
-
}
|
1821
|
-
/**
|
1822
|
-
*
|
1823
|
-
*/
|
1824
|
-
set fontStyle(fontStyle) {
|
1825
|
-
this.setProperty('font-style', fontStyle);
|
1826
|
-
}
|
1827
|
-
/**
|
1828
|
-
*
|
1829
|
-
*/
|
1830
|
-
get fontVariant() {
|
1831
|
-
return this.getPropertyValue('font-variant');
|
1832
|
-
}
|
1833
|
-
/**
|
1834
|
-
*
|
1835
|
-
*/
|
1836
|
-
set fontVariant(fontVariant) {
|
1837
|
-
this.setProperty('font-variant', fontVariant);
|
1838
|
-
}
|
1839
|
-
/**
|
1840
|
-
*
|
1841
|
-
*/
|
1842
|
-
get fontVariantCaps() {
|
1843
|
-
return this.getPropertyValue('font-variant-caps');
|
1844
|
-
}
|
1845
|
-
/**
|
1846
|
-
*
|
1847
|
-
*/
|
1848
|
-
set fontVariantCaps(fontVariantCaps) {
|
1849
|
-
this.setProperty('font-variant-caps', fontVariantCaps);
|
1850
|
-
}
|
1851
|
-
/**
|
1852
|
-
*
|
1853
|
-
*/
|
1854
|
-
get fontVariantEastAsian() {
|
1855
|
-
return this.getPropertyValue('font-variant-east-asian');
|
1856
|
-
}
|
1857
|
-
/**
|
1858
|
-
*
|
1859
|
-
*/
|
1860
|
-
set fontVariantEastAsian(fontVariantEastAsian) {
|
1861
|
-
this.setProperty('font-variant-east-asian', fontVariantEastAsian);
|
1862
|
-
}
|
1863
|
-
/**
|
1864
|
-
*
|
1865
|
-
*/
|
1866
|
-
get fontVariantLigatures() {
|
1867
|
-
return this.getPropertyValue('font-variant-ligatures');
|
1868
|
-
}
|
1869
|
-
/**
|
1870
|
-
*
|
1871
|
-
*/
|
1872
|
-
set fontVariantLigatures(fontVariantLigatures) {
|
1873
|
-
this.setProperty('font-variant-ligatures', fontVariantLigatures);
|
1874
|
-
}
|
1875
|
-
/**
|
1876
|
-
*
|
1877
|
-
*/
|
1878
|
-
get fontVariantNumeric() {
|
1879
|
-
return this.getPropertyValue('font-variant-numeric');
|
1880
|
-
}
|
1881
|
-
/**
|
1882
|
-
*
|
1883
|
-
*/
|
1884
|
-
set fontVariantNumeric(fontVariantNumeric) {
|
1885
|
-
this.setProperty('font-variant-numeric', fontVariantNumeric);
|
1886
|
-
}
|
1887
|
-
/**
|
1888
|
-
*
|
1889
|
-
*/
|
1890
|
-
get fontVariationSettings() {
|
1891
|
-
return this.getPropertyValue('font-variation-settings');
|
1892
|
-
}
|
1893
|
-
/**
|
1894
|
-
*
|
1895
|
-
*/
|
1896
|
-
set fontVariationSettings(fontVariationSettings) {
|
1897
|
-
this.setProperty('font-variation-settings', fontVariationSettings);
|
1898
|
-
}
|
1899
|
-
/**
|
1900
|
-
*
|
1901
|
-
*/
|
1902
|
-
get fontWeight() {
|
1903
|
-
return this.getPropertyValue('font-weight');
|
1904
|
-
}
|
1905
|
-
/**
|
1906
|
-
*
|
1907
|
-
*/
|
1908
|
-
set fontWeight(fontWeight) {
|
1909
|
-
this.setProperty('font-weight', fontWeight);
|
1910
|
-
}
|
1911
|
-
/**
|
1912
|
-
*
|
1913
|
-
*/
|
1914
|
-
get gap() {
|
1915
|
-
return this.getPropertyValue('gap');
|
1916
|
-
}
|
1917
|
-
/**
|
1918
|
-
*
|
1919
|
-
*/
|
1920
|
-
set gap(gap) {
|
1921
|
-
this.setProperty('gap', gap);
|
1922
|
-
}
|
1923
|
-
/**
|
1924
|
-
*
|
1925
|
-
*/
|
1926
|
-
get grid() {
|
1927
|
-
return this.getPropertyValue('grid');
|
1928
|
-
}
|
1929
|
-
/**
|
1930
|
-
*
|
1931
|
-
*/
|
1932
|
-
set grid(grid) {
|
1933
|
-
this.setProperty('grid', grid);
|
1934
|
-
}
|
1935
|
-
/**
|
1936
|
-
*
|
1937
|
-
*/
|
1938
|
-
get gridArea() {
|
1939
|
-
return this.getPropertyValue('grid-area');
|
1940
|
-
}
|
1941
|
-
/**
|
1942
|
-
*
|
1943
|
-
*/
|
1944
|
-
set gridArea(gridArea) {
|
1945
|
-
this.setProperty('grid-area', gridArea);
|
1946
|
-
}
|
1947
|
-
/**
|
1948
|
-
*
|
1949
|
-
*/
|
1950
|
-
get gridAutoColumns() {
|
1951
|
-
return this.getPropertyValue('grid-auto-columns');
|
1952
|
-
}
|
1953
|
-
/**
|
1954
|
-
*
|
1955
|
-
*/
|
1956
|
-
set gridAutoColumns(gridAutoColumns) {
|
1957
|
-
this.setProperty('grid-auto-columns', gridAutoColumns);
|
1958
|
-
}
|
1959
|
-
/**
|
1960
|
-
*
|
1961
|
-
*/
|
1962
|
-
get gridAutoFlow() {
|
1963
|
-
return this.getPropertyValue('grid-auto-flow');
|
1964
|
-
}
|
1965
|
-
/**
|
1966
|
-
*
|
1967
|
-
*/
|
1968
|
-
set gridAutoFlow(gridAutoFlow) {
|
1969
|
-
this.setProperty('grid-auto-flow', gridAutoFlow);
|
1970
|
-
}
|
1971
|
-
/**
|
1972
|
-
*
|
1973
|
-
*/
|
1974
|
-
get gridAutoRows() {
|
1975
|
-
return this.getPropertyValue('grid-auto-rows');
|
1976
|
-
}
|
1977
|
-
/**
|
1978
|
-
*
|
1979
|
-
*/
|
1980
|
-
set gridAutoRows(gridAutoRows) {
|
1981
|
-
this.setProperty('grid-auto-rows', gridAutoRows);
|
1982
|
-
}
|
1983
|
-
/**
|
1984
|
-
*
|
1985
|
-
*/
|
1986
|
-
get gridColumn() {
|
1987
|
-
return this.getPropertyValue('grid-column');
|
1988
|
-
}
|
1989
|
-
/**
|
1990
|
-
*
|
1991
|
-
*/
|
1992
|
-
set gridColumn(gridColumn) {
|
1993
|
-
this.setProperty('grid-column', gridColumn);
|
1994
|
-
}
|
1995
|
-
/**
|
1996
|
-
*
|
1997
|
-
*/
|
1998
|
-
get gridColumnEnd() {
|
1999
|
-
return this.getPropertyValue('grid-column-end');
|
2000
|
-
}
|
2001
|
-
/**
|
2002
|
-
*
|
2003
|
-
*/
|
2004
|
-
set gridColumnEnd(gridColumnEnd) {
|
2005
|
-
this.setProperty('grid-column-end', gridColumnEnd);
|
2006
|
-
}
|
2007
|
-
/**
|
2008
|
-
*
|
2009
|
-
*/
|
2010
|
-
get gridColumnGap() {
|
2011
|
-
return this.getPropertyValue('grid-column-gap');
|
2012
|
-
}
|
2013
|
-
/**
|
2014
|
-
*
|
2015
|
-
*/
|
2016
|
-
set gridColumnGap(gridColumnGap) {
|
2017
|
-
this.setProperty('grid-column-gap', gridColumnGap);
|
2018
|
-
}
|
2019
|
-
/**
|
2020
|
-
*
|
2021
|
-
*/
|
2022
|
-
get gridColumnStart() {
|
2023
|
-
return this.getPropertyValue('grid-column-start');
|
2024
|
-
}
|
2025
|
-
/**
|
2026
|
-
*
|
2027
|
-
*/
|
2028
|
-
set gridColumnStart(gridColumnStart) {
|
2029
|
-
this.setProperty('grid-column-start', gridColumnStart);
|
2030
|
-
}
|
2031
|
-
/**
|
2032
|
-
*
|
2033
|
-
*/
|
2034
|
-
get gridGap() {
|
2035
|
-
return this.getPropertyValue('grid-gap');
|
2036
|
-
}
|
2037
|
-
/**
|
2038
|
-
*
|
2039
|
-
*/
|
2040
|
-
set gridGap(gridGap) {
|
2041
|
-
this.setProperty('grid-gap', gridGap);
|
2042
|
-
}
|
2043
|
-
/**
|
2044
|
-
*
|
2045
|
-
*/
|
2046
|
-
get gridRow() {
|
2047
|
-
return this.getPropertyValue('grid-row');
|
2048
|
-
}
|
2049
|
-
/**
|
2050
|
-
*
|
2051
|
-
*/
|
2052
|
-
set gridRow(gridRow) {
|
2053
|
-
this.setProperty('grid-row', gridRow);
|
2054
|
-
}
|
2055
|
-
/**
|
2056
|
-
*
|
2057
|
-
*/
|
2058
|
-
get gridRowEnd() {
|
2059
|
-
return this.getPropertyValue('grid-row-end');
|
2060
|
-
}
|
2061
|
-
/**
|
2062
|
-
*
|
2063
|
-
*/
|
2064
|
-
set gridRowEnd(gridRowEnd) {
|
2065
|
-
this.setProperty('grid-row-end', gridRowEnd);
|
2066
|
-
}
|
2067
|
-
/**
|
2068
|
-
*
|
2069
|
-
*/
|
2070
|
-
get gridRowGap() {
|
2071
|
-
return this.getPropertyValue('grid-row-gap');
|
2072
|
-
}
|
2073
|
-
/**
|
2074
|
-
*
|
2075
|
-
*/
|
2076
|
-
set gridRowGap(gridRowGap) {
|
2077
|
-
this.setProperty('grid-row-gap', gridRowGap);
|
2078
|
-
}
|
2079
|
-
/**
|
2080
|
-
*
|
2081
|
-
*/
|
2082
|
-
get gridRowStart() {
|
2083
|
-
return this.getPropertyValue('grid-row-start');
|
2084
|
-
}
|
2085
|
-
/**
|
2086
|
-
*
|
2087
|
-
*/
|
2088
|
-
set gridRowStart(gridRowStart) {
|
2089
|
-
this.setProperty('grid-row-start', gridRowStart);
|
2090
|
-
}
|
2091
|
-
/**
|
2092
|
-
*
|
2093
|
-
*/
|
2094
|
-
get gridTemplate() {
|
2095
|
-
return this.getPropertyValue('grid-template');
|
2096
|
-
}
|
2097
|
-
/**
|
2098
|
-
*
|
2099
|
-
*/
|
2100
|
-
set gridTemplate(gridTemplate) {
|
2101
|
-
this.setProperty('grid-template', gridTemplate);
|
2102
|
-
}
|
2103
|
-
/**
|
2104
|
-
*
|
2105
|
-
*/
|
2106
|
-
get gridTemplateAreas() {
|
2107
|
-
return this.getPropertyValue('grid-template-areas');
|
2108
|
-
}
|
2109
|
-
/**
|
2110
|
-
*
|
2111
|
-
*/
|
2112
|
-
set gridTemplateAreas(gridTemplateAreas) {
|
2113
|
-
this.setProperty('grid-template-areas', gridTemplateAreas);
|
2114
|
-
}
|
2115
|
-
/**
|
2116
|
-
*
|
2117
|
-
*/
|
2118
|
-
get gridTemplateColumns() {
|
2119
|
-
return this.getPropertyValue('grid-template-columns');
|
2120
|
-
}
|
2121
|
-
/**
|
2122
|
-
*
|
2123
|
-
*/
|
2124
|
-
set gridTemplateColumns(gridTemplateColumns) {
|
2125
|
-
this.setProperty('grid-template-columns', gridTemplateColumns);
|
2126
|
-
}
|
2127
|
-
/**
|
2128
|
-
*
|
2129
|
-
*/
|
2130
|
-
get gridTemplateRows() {
|
2131
|
-
return this.getPropertyValue('grid-template-rows');
|
2132
|
-
}
|
2133
|
-
/**
|
2134
|
-
*
|
2135
|
-
*/
|
2136
|
-
set gridTemplateRows(gridTemplateRows) {
|
2137
|
-
this.setProperty('grid-template-rows', gridTemplateRows);
|
2138
|
-
}
|
2139
|
-
/**
|
2140
|
-
*
|
2141
|
-
*/
|
2142
|
-
get height() {
|
2143
|
-
return this.getPropertyValue('height');
|
2144
|
-
}
|
2145
|
-
/**
|
2146
|
-
*
|
2147
|
-
*/
|
2148
|
-
set height(height) {
|
2149
|
-
this.setProperty('height', height);
|
2150
|
-
}
|
2151
|
-
/**
|
2152
|
-
*
|
2153
|
-
*/
|
2154
|
-
get hyphens() {
|
2155
|
-
return this.getPropertyValue('hyphens');
|
2156
|
-
}
|
2157
|
-
/**
|
2158
|
-
*
|
2159
|
-
*/
|
2160
|
-
set hyphens(hyphens) {
|
2161
|
-
this.setProperty('hyphens', hyphens);
|
2162
|
-
}
|
2163
|
-
/**
|
2164
|
-
*
|
2165
|
-
*/
|
2166
|
-
get imageOrientation() {
|
2167
|
-
return this.getPropertyValue('image-orientation');
|
2168
|
-
}
|
2169
|
-
/**
|
2170
|
-
*
|
2171
|
-
*/
|
2172
|
-
set imageOrientation(imageOrientation) {
|
2173
|
-
this.setProperty('image-orientation', imageOrientation);
|
2174
|
-
}
|
2175
|
-
/**
|
2176
|
-
*
|
2177
|
-
*/
|
2178
|
-
get imageRendering() {
|
2179
|
-
return this.getPropertyValue('image-rendering');
|
2180
|
-
}
|
2181
|
-
/**
|
2182
|
-
*
|
2183
|
-
*/
|
2184
|
-
set imageRendering(imageRendering) {
|
2185
|
-
this.setProperty('image-rendering', imageRendering);
|
2186
|
-
}
|
2187
|
-
/**
|
2188
|
-
*
|
2189
|
-
*/
|
2190
|
-
get inherits() {
|
2191
|
-
return this.getPropertyValue('inherits');
|
2192
|
-
}
|
2193
|
-
/**
|
2194
|
-
*
|
2195
|
-
*/
|
2196
|
-
set inherits(inherits) {
|
2197
|
-
this.setProperty('inherits', inherits);
|
2198
|
-
}
|
2199
|
-
/**
|
2200
|
-
*
|
2201
|
-
*/
|
2202
|
-
get initialValue() {
|
2203
|
-
return this.getPropertyValue('initial-value');
|
2204
|
-
}
|
2205
|
-
/**
|
2206
|
-
*
|
2207
|
-
*/
|
2208
|
-
set initialValue(initialValue) {
|
2209
|
-
this.setProperty('initial-value', initialValue);
|
2210
|
-
}
|
2211
|
-
/**
|
2212
|
-
*
|
2213
|
-
*/
|
2214
|
-
get inlineSize() {
|
2215
|
-
return this.getPropertyValue('inline-size');
|
2216
|
-
}
|
2217
|
-
/**
|
2218
|
-
*
|
2219
|
-
*/
|
2220
|
-
set inlineSize(inlineSize) {
|
2221
|
-
this.setProperty('inline-size', inlineSize);
|
2222
|
-
}
|
2223
|
-
/**
|
2224
|
-
*
|
2225
|
-
*/
|
2226
|
-
get isolation() {
|
2227
|
-
return this.getPropertyValue('isolation');
|
2228
|
-
}
|
2229
|
-
/**
|
2230
|
-
*
|
2231
|
-
*/
|
2232
|
-
set isolation(isolation) {
|
2233
|
-
this.setProperty('isolation', isolation);
|
2234
|
-
}
|
2235
|
-
/**
|
2236
|
-
*
|
2237
|
-
*/
|
2238
|
-
get justifyContent() {
|
2239
|
-
return this.getPropertyValue('justify-content');
|
2240
|
-
}
|
2241
|
-
/**
|
2242
|
-
*
|
2243
|
-
*/
|
2244
|
-
set justifyContent(justifyContent) {
|
2245
|
-
this.setProperty('justify-content', justifyContent);
|
2246
|
-
}
|
2247
|
-
/**
|
2248
|
-
*
|
2249
|
-
*/
|
2250
|
-
get justifyItems() {
|
2251
|
-
return this.getPropertyValue('justify-items');
|
2252
|
-
}
|
2253
|
-
/**
|
2254
|
-
*
|
2255
|
-
*/
|
2256
|
-
set justifyItems(justifyItems) {
|
2257
|
-
this.setProperty('justify-items', justifyItems);
|
2258
|
-
}
|
2259
|
-
/**
|
2260
|
-
*
|
2261
|
-
*/
|
2262
|
-
get justifySelf() {
|
2263
|
-
return this.getPropertyValue('justify-self');
|
2264
|
-
}
|
2265
|
-
/**
|
2266
|
-
*
|
2267
|
-
*/
|
2268
|
-
set justifySelf(justifySelf) {
|
2269
|
-
this.setProperty('justify-self', justifySelf);
|
2270
|
-
}
|
2271
|
-
/**
|
2272
|
-
*
|
2273
|
-
*/
|
2274
|
-
get left() {
|
2275
|
-
return this.getPropertyValue('left');
|
2276
|
-
}
|
2277
|
-
/**
|
2278
|
-
*
|
2279
|
-
*/
|
2280
|
-
set left(left) {
|
2281
|
-
this.setProperty('left', left);
|
2282
|
-
}
|
2283
|
-
/**
|
2284
|
-
*
|
2285
|
-
*/
|
2286
|
-
get letterSpacing() {
|
2287
|
-
return this.getPropertyValue('letter-spacing');
|
2288
|
-
}
|
2289
|
-
/**
|
2290
|
-
*
|
2291
|
-
*/
|
2292
|
-
set letterSpacing(letterSpacing) {
|
2293
|
-
this.setProperty('letter-spacing', letterSpacing);
|
2294
|
-
}
|
2295
|
-
/**
|
2296
|
-
*
|
2297
|
-
*/
|
2298
|
-
get lightingColor() {
|
2299
|
-
return this.getPropertyValue('lighting-color');
|
2300
|
-
}
|
2301
|
-
/**
|
2302
|
-
*
|
2303
|
-
*/
|
2304
|
-
set lightingColor(lightingColor) {
|
2305
|
-
this.setProperty('lighting-color', lightingColor);
|
2306
|
-
}
|
2307
|
-
/**
|
2308
|
-
*
|
2309
|
-
*/
|
2310
|
-
get lineBreak() {
|
2311
|
-
return this.getPropertyValue('line-break');
|
2312
|
-
}
|
2313
|
-
/**
|
2314
|
-
*
|
2315
|
-
*/
|
2316
|
-
set lineBreak(lineBreak) {
|
2317
|
-
this.setProperty('line-break', lineBreak);
|
2318
|
-
}
|
2319
|
-
/**
|
2320
|
-
*
|
2321
|
-
*/
|
2322
|
-
get lineHeight() {
|
2323
|
-
return this.getPropertyValue('line-height');
|
2324
|
-
}
|
2325
|
-
/**
|
2326
|
-
*
|
2327
|
-
*/
|
2328
|
-
set lineHeight(lineHeight) {
|
2329
|
-
this.setProperty('line-height', lineHeight);
|
2330
|
-
}
|
2331
|
-
/**
|
2332
|
-
*
|
2333
|
-
*/
|
2334
|
-
get listStyle() {
|
2335
|
-
return this.getPropertyValue('list-style');
|
2336
|
-
}
|
2337
|
-
/**
|
2338
|
-
*
|
2339
|
-
*/
|
2340
|
-
set listStyle(listStyle) {
|
2341
|
-
this.setProperty('list-style', listStyle);
|
2342
|
-
}
|
2343
|
-
/**
|
2344
|
-
*
|
2345
|
-
*/
|
2346
|
-
get listStyleImage() {
|
2347
|
-
return this.getPropertyValue('list-style-image');
|
2348
|
-
}
|
2349
|
-
/**
|
2350
|
-
*
|
2351
|
-
*/
|
2352
|
-
set listStyleImage(listStyleImage) {
|
2353
|
-
this.setProperty('list-style-image', listStyleImage);
|
2354
|
-
}
|
2355
|
-
/**
|
2356
|
-
*
|
2357
|
-
*/
|
2358
|
-
get listStylePosition() {
|
2359
|
-
return this.getPropertyValue('list-style-position');
|
2360
|
-
}
|
2361
|
-
/**
|
2362
|
-
*
|
2363
|
-
*/
|
2364
|
-
set listStylePosition(listStylePosition) {
|
2365
|
-
this.setProperty('list-style-position', listStylePosition);
|
2366
|
-
}
|
2367
|
-
/**
|
2368
|
-
*
|
2369
|
-
*/
|
2370
|
-
get listStyleType() {
|
2371
|
-
return this.getPropertyValue('list-style-type');
|
2372
|
-
}
|
2373
|
-
/**
|
2374
|
-
*
|
2375
|
-
*/
|
2376
|
-
set listStyleType(listStyleType) {
|
2377
|
-
this.setProperty('list-style-type', listStyleType);
|
2378
|
-
}
|
2379
|
-
/**
|
2380
|
-
*
|
2381
|
-
*/
|
2382
|
-
get margin() {
|
2383
|
-
return this.getPropertyValue('margin');
|
2384
|
-
}
|
2385
|
-
/**
|
2386
|
-
*
|
2387
|
-
*/
|
2388
|
-
set margin(margin) {
|
2389
|
-
this.setProperty('margin', margin);
|
2390
|
-
}
|
2391
|
-
/**
|
2392
|
-
*
|
2393
|
-
*/
|
2394
|
-
get marginBlockEnd() {
|
2395
|
-
return this.getPropertyValue('margin-block-end');
|
2396
|
-
}
|
2397
|
-
/**
|
2398
|
-
*
|
2399
|
-
*/
|
2400
|
-
set marginBlockEnd(marginBlockEnd) {
|
2401
|
-
this.setProperty('margin-block-end', marginBlockEnd);
|
2402
|
-
}
|
2403
|
-
/**
|
2404
|
-
*
|
2405
|
-
*/
|
2406
|
-
get marginBlockStart() {
|
2407
|
-
return this.getPropertyValue('margin-block-start');
|
2408
|
-
}
|
2409
|
-
/**
|
2410
|
-
*
|
2411
|
-
*/
|
2412
|
-
set marginBlockStart(marginBlockStart) {
|
2413
|
-
this.setProperty('margin-block-start', marginBlockStart);
|
2414
|
-
}
|
2415
|
-
/**
|
2416
|
-
*
|
2417
|
-
*/
|
2418
|
-
get marginBottom() {
|
2419
|
-
return this.getPropertyValue('margin-bottom');
|
2420
|
-
}
|
2421
|
-
/**
|
2422
|
-
*
|
2423
|
-
*/
|
2424
|
-
set marginBottom(marginBottom) {
|
2425
|
-
this.setProperty('margin-bottom', marginBottom);
|
2426
|
-
}
|
2427
|
-
/**
|
2428
|
-
*
|
2429
|
-
*/
|
2430
|
-
get marginInlineEnd() {
|
2431
|
-
return this.getPropertyValue('margin-inline-end');
|
2432
|
-
}
|
2433
|
-
/**
|
2434
|
-
*
|
2435
|
-
*/
|
2436
|
-
set marginInlineEnd(marginInlineEnd) {
|
2437
|
-
this.setProperty('margin-inline-end', marginInlineEnd);
|
2438
|
-
}
|
2439
|
-
/**
|
2440
|
-
*
|
2441
|
-
*/
|
2442
|
-
get marginInlineStart() {
|
2443
|
-
return this.getPropertyValue('margin-inline-start');
|
2444
|
-
}
|
2445
|
-
/**
|
2446
|
-
*
|
2447
|
-
*/
|
2448
|
-
set marginInlineStart(marginInlineStart) {
|
2449
|
-
this.setProperty('margin-inline-start', marginInlineStart);
|
2450
|
-
}
|
2451
|
-
/**
|
2452
|
-
*
|
2453
|
-
*/
|
2454
|
-
get marginLeft() {
|
2455
|
-
return this.getPropertyValue('margin-left');
|
2456
|
-
}
|
2457
|
-
/**
|
2458
|
-
*
|
2459
|
-
*/
|
2460
|
-
set marginLeft(marginLeft) {
|
2461
|
-
this.setProperty('margin-left', marginLeft);
|
2462
|
-
}
|
2463
|
-
/**
|
2464
|
-
*
|
2465
|
-
*/
|
2466
|
-
get marginRight() {
|
2467
|
-
return this.getPropertyValue('margin-right');
|
2468
|
-
}
|
2469
|
-
/**
|
2470
|
-
*
|
2471
|
-
*/
|
2472
|
-
set marginRight(marginRight) {
|
2473
|
-
this.setProperty('margin-right', marginRight);
|
2474
|
-
}
|
2475
|
-
/**
|
2476
|
-
*
|
2477
|
-
*/
|
2478
|
-
get marginTop() {
|
2479
|
-
return this.getPropertyValue('margin-top');
|
2480
|
-
}
|
2481
|
-
/**
|
2482
|
-
*
|
2483
|
-
*/
|
2484
|
-
set marginTop(marginTop) {
|
2485
|
-
this.setProperty('margin-top', marginTop);
|
2486
|
-
}
|
2487
|
-
/**
|
2488
|
-
*
|
2489
|
-
*/
|
2490
|
-
get marker() {
|
2491
|
-
return this.getPropertyValue('marker');
|
2492
|
-
}
|
2493
|
-
/**
|
2494
|
-
*
|
2495
|
-
*/
|
2496
|
-
set marker(marker) {
|
2497
|
-
this.setProperty('marker', marker);
|
2498
|
-
}
|
2499
|
-
/**
|
2500
|
-
*
|
2501
|
-
*/
|
2502
|
-
get markerEnd() {
|
2503
|
-
return this.getPropertyValue('marker-end');
|
2504
|
-
}
|
2505
|
-
/**
|
2506
|
-
*
|
2507
|
-
*/
|
2508
|
-
set markerEnd(markerEnd) {
|
2509
|
-
this.setProperty('marker-end', markerEnd);
|
2510
|
-
}
|
2511
|
-
/**
|
2512
|
-
*
|
2513
|
-
*/
|
2514
|
-
get markerMid() {
|
2515
|
-
return this.getPropertyValue('marker-mid');
|
2516
|
-
}
|
2517
|
-
/**
|
2518
|
-
*
|
2519
|
-
*/
|
2520
|
-
set markerMid(markerMid) {
|
2521
|
-
this.setProperty('marker-mid', markerMid);
|
2522
|
-
}
|
2523
|
-
/**
|
2524
|
-
*
|
2525
|
-
*/
|
2526
|
-
get markerStart() {
|
2527
|
-
return this.getPropertyValue('marker-start');
|
2528
|
-
}
|
2529
|
-
/**
|
2530
|
-
*
|
2531
|
-
*/
|
2532
|
-
set markerStart(markerStart) {
|
2533
|
-
this.setProperty('marker-start', markerStart);
|
2534
|
-
}
|
2535
|
-
/**
|
2536
|
-
*
|
2537
|
-
*/
|
2538
|
-
get mask() {
|
2539
|
-
return this.getPropertyValue('mask');
|
2540
|
-
}
|
2541
|
-
/**
|
2542
|
-
*
|
2543
|
-
*/
|
2544
|
-
set mask(mask) {
|
2545
|
-
this.setProperty('mask', mask);
|
2546
|
-
}
|
2547
|
-
/**
|
2548
|
-
*
|
2549
|
-
*/
|
2550
|
-
get maskType() {
|
2551
|
-
return this.getPropertyValue('mask-type');
|
2552
|
-
}
|
2553
|
-
/**
|
2554
|
-
*
|
2555
|
-
*/
|
2556
|
-
set maskType(maskType) {
|
2557
|
-
this.setProperty('mask-type', maskType);
|
2558
|
-
}
|
2559
|
-
/**
|
2560
|
-
*
|
2561
|
-
*/
|
2562
|
-
get maxBlockSize() {
|
2563
|
-
return this.getPropertyValue('max-block-size');
|
2564
|
-
}
|
2565
|
-
/**
|
2566
|
-
*
|
2567
|
-
*/
|
2568
|
-
set maxBlockSize(maxBlockSize) {
|
2569
|
-
this.setProperty('max-block-size', maxBlockSize);
|
2570
|
-
}
|
2571
|
-
/**
|
2572
|
-
*
|
2573
|
-
*/
|
2574
|
-
get maxHeight() {
|
2575
|
-
return this.getPropertyValue('max-height');
|
2576
|
-
}
|
2577
|
-
/**
|
2578
|
-
*
|
2579
|
-
*/
|
2580
|
-
set maxHeight(maxHeight) {
|
2581
|
-
this.setProperty('max-height', maxHeight);
|
2582
|
-
}
|
2583
|
-
/**
|
2584
|
-
*
|
2585
|
-
*/
|
2586
|
-
get maxInlineSize() {
|
2587
|
-
return this.getPropertyValue('max-inline-size');
|
2588
|
-
}
|
2589
|
-
/**
|
2590
|
-
*
|
2591
|
-
*/
|
2592
|
-
set maxInlineSize(maxInlineSize) {
|
2593
|
-
this.setProperty('max-inline-size', maxInlineSize);
|
2594
|
-
}
|
2595
|
-
/**
|
2596
|
-
*
|
2597
|
-
*/
|
2598
|
-
get maxWidth() {
|
2599
|
-
return this.getPropertyValue('max-width');
|
2600
|
-
}
|
2601
|
-
/**
|
2602
|
-
*
|
2603
|
-
*/
|
2604
|
-
set maxWidth(maxWidth) {
|
2605
|
-
this.setProperty('max-width', maxWidth);
|
2606
|
-
}
|
2607
|
-
/**
|
2608
|
-
*
|
2609
|
-
*/
|
2610
|
-
get maxZoom() {
|
2611
|
-
return this.getPropertyValue('max-zoom');
|
2612
|
-
}
|
2613
|
-
/**
|
2614
|
-
*
|
2615
|
-
*/
|
2616
|
-
set maxZoom(maxZoom) {
|
2617
|
-
this.setProperty('max-zoom', maxZoom);
|
2618
|
-
}
|
2619
|
-
/**
|
2620
|
-
*
|
2621
|
-
*/
|
2622
|
-
get minBlockSize() {
|
2623
|
-
return this.getPropertyValue('min-block-size');
|
2624
|
-
}
|
2625
|
-
/**
|
2626
|
-
*
|
2627
|
-
*/
|
2628
|
-
set minBlockSize(minBlockSize) {
|
2629
|
-
this.setProperty('min-block-size', minBlockSize);
|
2630
|
-
}
|
2631
|
-
/**
|
2632
|
-
*
|
2633
|
-
*/
|
2634
|
-
get minHeight() {
|
2635
|
-
return this.getPropertyValue('min-height');
|
2636
|
-
}
|
2637
|
-
/**
|
2638
|
-
*
|
2639
|
-
*/
|
2640
|
-
set minHeight(minHeight) {
|
2641
|
-
this.setProperty('min-height', minHeight);
|
2642
|
-
}
|
2643
|
-
/**
|
2644
|
-
*
|
2645
|
-
*/
|
2646
|
-
get minInlineSize() {
|
2647
|
-
return this.getPropertyValue('min-inline-size');
|
2648
|
-
}
|
2649
|
-
/**
|
2650
|
-
*
|
2651
|
-
*/
|
2652
|
-
set minInlineSize(minInlineSize) {
|
2653
|
-
this.setProperty('min-inline-size', minInlineSize);
|
2654
|
-
}
|
2655
|
-
/**
|
2656
|
-
*
|
2657
|
-
*/
|
2658
|
-
get minWidth() {
|
2659
|
-
return this.getPropertyValue('min-width');
|
2660
|
-
}
|
2661
|
-
/**
|
2662
|
-
*
|
2663
|
-
*/
|
2664
|
-
set minWidth(minWidth) {
|
2665
|
-
this.setProperty('min-width', minWidth);
|
2666
|
-
}
|
2667
|
-
/**
|
2668
|
-
*
|
2669
|
-
*/
|
2670
|
-
get minZoom() {
|
2671
|
-
return this.getPropertyValue('min-zoom');
|
2672
|
-
}
|
2673
|
-
/**
|
2674
|
-
*
|
2675
|
-
*/
|
2676
|
-
set minZoom(minZoom) {
|
2677
|
-
this.setProperty('min-zoom', minZoom);
|
2678
|
-
}
|
2679
|
-
/**
|
2680
|
-
*
|
2681
|
-
*/
|
2682
|
-
get mixBlendMode() {
|
2683
|
-
return this.getPropertyValue('mix-blend-mode');
|
2684
|
-
}
|
2685
|
-
/**
|
2686
|
-
*
|
2687
|
-
*/
|
2688
|
-
set mixBlendMode(mixBlendMode) {
|
2689
|
-
this.setProperty('mix-blend-mode', mixBlendMode);
|
2690
|
-
}
|
2691
|
-
/**
|
2692
|
-
*
|
2693
|
-
*/
|
2694
|
-
get objectFit() {
|
2695
|
-
return this.getPropertyValue('object-fit');
|
2696
|
-
}
|
2697
|
-
/**
|
2698
|
-
*
|
2699
|
-
*/
|
2700
|
-
set objectFit(objectFit) {
|
2701
|
-
this.setProperty('object-fit', objectFit);
|
2702
|
-
}
|
2703
|
-
/**
|
2704
|
-
*
|
2705
|
-
*/
|
2706
|
-
get objectPosition() {
|
2707
|
-
return this.getPropertyValue('object-position');
|
2708
|
-
}
|
2709
|
-
/**
|
2710
|
-
*
|
2711
|
-
*/
|
2712
|
-
set objectPosition(objectPosition) {
|
2713
|
-
this.setProperty('object-position', objectPosition);
|
2714
|
-
}
|
2715
|
-
/**
|
2716
|
-
*
|
2717
|
-
*/
|
2718
|
-
get offset() {
|
2719
|
-
return this.getPropertyValue('offset');
|
2720
|
-
}
|
2721
|
-
/**
|
2722
|
-
*
|
2723
|
-
*/
|
2724
|
-
set offset(offset) {
|
2725
|
-
this.setProperty('offset', offset);
|
2726
|
-
}
|
2727
|
-
/**
|
2728
|
-
*
|
2729
|
-
*/
|
2730
|
-
get offsetDistance() {
|
2731
|
-
return this.getPropertyValue('offset-distance');
|
2732
|
-
}
|
2733
|
-
/**
|
2734
|
-
*
|
2735
|
-
*/
|
2736
|
-
set offsetDistance(offsetDistance) {
|
2737
|
-
this.setProperty('offset-distance', offsetDistance);
|
2738
|
-
}
|
2739
|
-
/**
|
2740
|
-
*
|
2741
|
-
*/
|
2742
|
-
get offsetPath() {
|
2743
|
-
return this.getPropertyValue('offset-path');
|
2744
|
-
}
|
2745
|
-
/**
|
2746
|
-
*
|
2747
|
-
*/
|
2748
|
-
set offsetPath(offsetPath) {
|
2749
|
-
this.setProperty('offset-path', offsetPath);
|
2750
|
-
}
|
2751
|
-
/**
|
2752
|
-
*
|
2753
|
-
*/
|
2754
|
-
get offsetRotate() {
|
2755
|
-
return this.getPropertyValue('offset-rotate');
|
2756
|
-
}
|
2757
|
-
/**
|
2758
|
-
*
|
2759
|
-
*/
|
2760
|
-
set offsetRotate(offsetRotate) {
|
2761
|
-
this.setProperty('offset-rotate', offsetRotate);
|
2762
|
-
}
|
2763
|
-
/**
|
2764
|
-
*
|
2765
|
-
*/
|
2766
|
-
get opacity() {
|
2767
|
-
return this.getPropertyValue('opacity');
|
2768
|
-
}
|
2769
|
-
/**
|
2770
|
-
*
|
2771
|
-
*/
|
2772
|
-
set opacity(opacity) {
|
2773
|
-
this.setProperty('opacity', opacity);
|
2774
|
-
}
|
2775
|
-
/**
|
2776
|
-
*
|
2777
|
-
*/
|
2778
|
-
get order() {
|
2779
|
-
return this.getPropertyValue('order');
|
2780
|
-
}
|
2781
|
-
/**
|
2782
|
-
*
|
2783
|
-
*/
|
2784
|
-
set order(order) {
|
2785
|
-
this.setProperty('order', order);
|
2786
|
-
}
|
2787
|
-
/**
|
2788
|
-
*
|
2789
|
-
*/
|
2790
|
-
get orientation() {
|
2791
|
-
return this.getPropertyValue('orientation');
|
2792
|
-
}
|
2793
|
-
/**
|
2794
|
-
*
|
2795
|
-
*/
|
2796
|
-
set orientation(orientation) {
|
2797
|
-
this.setProperty('orientation', orientation);
|
2798
|
-
}
|
2799
|
-
/**
|
2800
|
-
*
|
2801
|
-
*/
|
2802
|
-
get orphans() {
|
2803
|
-
return this.getPropertyValue('orphans');
|
2804
|
-
}
|
2805
|
-
/**
|
2806
|
-
*
|
2807
|
-
*/
|
2808
|
-
set orphans(orphans) {
|
2809
|
-
this.setProperty('orphans', orphans);
|
2810
|
-
}
|
2811
|
-
/**
|
2812
|
-
*
|
2813
|
-
*/
|
2814
|
-
get outline() {
|
2815
|
-
return this.getPropertyValue('outline');
|
2816
|
-
}
|
2817
|
-
/**
|
2818
|
-
*
|
2819
|
-
*/
|
2820
|
-
set outline(outline) {
|
2821
|
-
this.setProperty('outline', outline);
|
2822
|
-
}
|
2823
|
-
/**
|
2824
|
-
*
|
2825
|
-
*/
|
2826
|
-
get outlineColor() {
|
2827
|
-
return this.getPropertyValue('outline-color');
|
2828
|
-
}
|
2829
|
-
/**
|
2830
|
-
*
|
2831
|
-
*/
|
2832
|
-
set outlineColor(outlineColor) {
|
2833
|
-
this.setProperty('outline-color', outlineColor);
|
2834
|
-
}
|
2835
|
-
/**
|
2836
|
-
*
|
2837
|
-
*/
|
2838
|
-
get outlineOffset() {
|
2839
|
-
return this.getPropertyValue('outline-offset');
|
2840
|
-
}
|
2841
|
-
/**
|
2842
|
-
*
|
2843
|
-
*/
|
2844
|
-
set outlineOffset(outlineOffset) {
|
2845
|
-
this.setProperty('outline-offset', outlineOffset);
|
2846
|
-
}
|
2847
|
-
/**
|
2848
|
-
*
|
2849
|
-
*/
|
2850
|
-
get outlineStyle() {
|
2851
|
-
return this.getPropertyValue('outline-style');
|
2852
|
-
}
|
2853
|
-
/**
|
2854
|
-
*
|
2855
|
-
*/
|
2856
|
-
set outlineStyle(outlineStyle) {
|
2857
|
-
this.setProperty('outline-style', outlineStyle);
|
2858
|
-
}
|
2859
|
-
/**
|
2860
|
-
*
|
2861
|
-
*/
|
2862
|
-
get outlineWidth() {
|
2863
|
-
return this.getPropertyValue('outline-width');
|
2864
|
-
}
|
2865
|
-
/**
|
2866
|
-
*
|
2867
|
-
*/
|
2868
|
-
set outlineWidth(outlineWidth) {
|
2869
|
-
this.setProperty('outline-width', outlineWidth);
|
2870
|
-
}
|
2871
|
-
/**
|
2872
|
-
*
|
2873
|
-
*/
|
2874
|
-
get overflow() {
|
2875
|
-
return this.getPropertyValue('overflow');
|
2876
|
-
}
|
2877
|
-
/**
|
2878
|
-
*
|
2879
|
-
*/
|
2880
|
-
set overflow(overflow) {
|
2881
|
-
this.setProperty('overflow', overflow);
|
2882
|
-
}
|
2883
|
-
/**
|
2884
|
-
*
|
2885
|
-
*/
|
2886
|
-
get overflowAnchor() {
|
2887
|
-
return this.getPropertyValue('overflow-anchor');
|
2888
|
-
}
|
2889
|
-
/**
|
2890
|
-
*
|
2891
|
-
*/
|
2892
|
-
set overflowAnchor(overflowAnchor) {
|
2893
|
-
this.setProperty('overflow-anchor', overflowAnchor);
|
2894
|
-
}
|
2895
|
-
/**
|
2896
|
-
*
|
2897
|
-
*/
|
2898
|
-
get overflowWrap() {
|
2899
|
-
return this.getPropertyValue('overflow-wrap');
|
2900
|
-
}
|
2901
|
-
/**
|
2902
|
-
*
|
2903
|
-
*/
|
2904
|
-
set overflowWrap(overflowWrap) {
|
2905
|
-
this.setProperty('overflow-wrap', overflowWrap);
|
2906
|
-
}
|
2907
|
-
/**
|
2908
|
-
*
|
2909
|
-
*/
|
2910
|
-
get overflowX() {
|
2911
|
-
return this.getPropertyValue('overflow-x');
|
2912
|
-
}
|
2913
|
-
/**
|
2914
|
-
*
|
2915
|
-
*/
|
2916
|
-
set overflowX(overflowX) {
|
2917
|
-
this.setProperty('overflow-x', overflowX);
|
2918
|
-
}
|
2919
|
-
/**
|
2920
|
-
*
|
2921
|
-
*/
|
2922
|
-
get overflowY() {
|
2923
|
-
return this.getPropertyValue('overflow-y');
|
2924
|
-
}
|
2925
|
-
/**
|
2926
|
-
*
|
2927
|
-
*/
|
2928
|
-
set overflowY(overflowY) {
|
2929
|
-
this.setProperty('overflow-y', overflowY);
|
2930
|
-
}
|
2931
|
-
/**
|
2932
|
-
*
|
2933
|
-
*/
|
2934
|
-
get overscrollBehavior() {
|
2935
|
-
return this.getPropertyValue('overscroll-behavior');
|
2936
|
-
}
|
2937
|
-
/**
|
2938
|
-
*
|
2939
|
-
*/
|
2940
|
-
set overscrollBehavior(overscrollBehavior) {
|
2941
|
-
this.setProperty('overscroll-behavior', overscrollBehavior);
|
2942
|
-
}
|
2943
|
-
/**
|
2944
|
-
*
|
2945
|
-
*/
|
2946
|
-
get overscrollBehaviorBlock() {
|
2947
|
-
return this.getPropertyValue('overscroll-behavior-block');
|
2948
|
-
}
|
2949
|
-
/**
|
2950
|
-
*
|
2951
|
-
*/
|
2952
|
-
set overscrollBehaviorBlock(overscrollBehaviorBlock) {
|
2953
|
-
this.setProperty('overscroll-behavior-block', overscrollBehaviorBlock);
|
2954
|
-
}
|
2955
|
-
/**
|
2956
|
-
*
|
2957
|
-
*/
|
2958
|
-
get overscrollBehaviorInline() {
|
2959
|
-
return this.getPropertyValue('overscroll-behavior-inline');
|
2960
|
-
}
|
2961
|
-
/**
|
2962
|
-
*
|
2963
|
-
*/
|
2964
|
-
set overscrollBehaviorInline(overscrollBehaviorInline) {
|
2965
|
-
this.setProperty('overscroll-behavior-inline', overscrollBehaviorInline);
|
2966
|
-
}
|
2967
|
-
/**
|
2968
|
-
*
|
2969
|
-
*/
|
2970
|
-
get overscrollBehaviorX() {
|
2971
|
-
return this.getPropertyValue('overscroll-behavior-x');
|
2972
|
-
}
|
2973
|
-
/**
|
2974
|
-
*
|
2975
|
-
*/
|
2976
|
-
set overscrollBehaviorX(overscrollBehaviorX) {
|
2977
|
-
this.setProperty('overscroll-behavior-x', overscrollBehaviorX);
|
2978
|
-
}
|
2979
|
-
/**
|
2980
|
-
*
|
2981
|
-
*/
|
2982
|
-
get overscrollBehaviorY() {
|
2983
|
-
return this.getPropertyValue('overscroll-behavior-y');
|
2984
|
-
}
|
2985
|
-
/**
|
2986
|
-
*
|
2987
|
-
*/
|
2988
|
-
set overscrollBehaviorY(overscrollBehaviorY) {
|
2989
|
-
this.setProperty('overscroll-behavior-y', overscrollBehaviorY);
|
2990
|
-
}
|
2991
|
-
/**
|
2992
|
-
*
|
2993
|
-
*/
|
2994
|
-
get padding() {
|
2995
|
-
return this.getPropertyValue('padding');
|
2996
|
-
}
|
2997
|
-
/**
|
2998
|
-
*
|
2999
|
-
*/
|
3000
|
-
set padding(padding) {
|
3001
|
-
this.setProperty('padding', padding);
|
3002
|
-
}
|
3003
|
-
/**
|
3004
|
-
*
|
3005
|
-
*/
|
3006
|
-
get paddingBlockEnd() {
|
3007
|
-
return this.getPropertyValue('padding-block-end');
|
3008
|
-
}
|
3009
|
-
/**
|
3010
|
-
*
|
3011
|
-
*/
|
3012
|
-
set paddingBlockEnd(paddingBlockEnd) {
|
3013
|
-
this.setProperty('padding-block-end', paddingBlockEnd);
|
3014
|
-
}
|
3015
|
-
/**
|
3016
|
-
*
|
3017
|
-
*/
|
3018
|
-
get paddingBlockStart() {
|
3019
|
-
return this.getPropertyValue('padding-block-start');
|
3020
|
-
}
|
3021
|
-
/**
|
3022
|
-
*
|
3023
|
-
*/
|
3024
|
-
set paddingBlockStart(paddingBlockStart) {
|
3025
|
-
this.setProperty('padding-block-start', paddingBlockStart);
|
3026
|
-
}
|
3027
|
-
/**
|
3028
|
-
*
|
3029
|
-
*/
|
3030
|
-
get paddingBottom() {
|
3031
|
-
return this.getPropertyValue('padding-bottom');
|
3032
|
-
}
|
3033
|
-
/**
|
3034
|
-
*
|
3035
|
-
*/
|
3036
|
-
set paddingBottom(paddingBottom) {
|
3037
|
-
this.setProperty('padding-bottom', paddingBottom);
|
3038
|
-
}
|
3039
|
-
/**
|
3040
|
-
*
|
3041
|
-
*/
|
3042
|
-
get paddingInlineEnd() {
|
3043
|
-
return this.getPropertyValue('padding-inline-end');
|
3044
|
-
}
|
3045
|
-
/**
|
3046
|
-
*
|
3047
|
-
*/
|
3048
|
-
set paddingInlineEnd(paddingInlineEnd) {
|
3049
|
-
this.setProperty('padding-inline-end', paddingInlineEnd);
|
3050
|
-
}
|
3051
|
-
/**
|
3052
|
-
*
|
3053
|
-
*/
|
3054
|
-
get paddingInlineStart() {
|
3055
|
-
return this.getPropertyValue('padding-inline-start');
|
3056
|
-
}
|
3057
|
-
/**
|
3058
|
-
*
|
3059
|
-
*/
|
3060
|
-
set paddingInlineStart(paddingInlineStart) {
|
3061
|
-
this.setProperty('padding-inline-start', paddingInlineStart);
|
3062
|
-
}
|
3063
|
-
/**
|
3064
|
-
*
|
3065
|
-
*/
|
3066
|
-
get paddingLeft() {
|
3067
|
-
return this.getPropertyValue('padding-left');
|
3068
|
-
}
|
3069
|
-
/**
|
3070
|
-
*
|
3071
|
-
*/
|
3072
|
-
set paddingLeft(paddingLeft) {
|
3073
|
-
this.setProperty('padding-left', paddingLeft);
|
3074
|
-
}
|
3075
|
-
/**
|
3076
|
-
*
|
3077
|
-
*/
|
3078
|
-
get paddingRight() {
|
3079
|
-
return this.getPropertyValue('padding-right');
|
3080
|
-
}
|
3081
|
-
/**
|
3082
|
-
*
|
3083
|
-
*/
|
3084
|
-
set paddingRight(paddingRight) {
|
3085
|
-
this.setProperty('padding-right', paddingRight);
|
3086
|
-
}
|
3087
|
-
/**
|
3088
|
-
*
|
3089
|
-
*/
|
3090
|
-
get paddingTop() {
|
3091
|
-
return this.getPropertyValue('padding-top');
|
3092
|
-
}
|
3093
|
-
/**
|
3094
|
-
*
|
3095
|
-
*/
|
3096
|
-
set paddingTop(paddingTop) {
|
3097
|
-
this.setProperty('padding-top', paddingTop);
|
3098
|
-
}
|
3099
|
-
/**
|
3100
|
-
*
|
3101
|
-
*/
|
3102
|
-
get page() {
|
3103
|
-
return this.getPropertyValue('page');
|
3104
|
-
}
|
3105
|
-
/**
|
3106
|
-
*
|
3107
|
-
*/
|
3108
|
-
set page(page) {
|
3109
|
-
this.setProperty('page', page);
|
3110
|
-
}
|
3111
|
-
/**
|
3112
|
-
*
|
3113
|
-
*/
|
3114
|
-
get pageBreakAfter() {
|
3115
|
-
return this.getPropertyValue('page-break-after');
|
3116
|
-
}
|
3117
|
-
/**
|
3118
|
-
*
|
3119
|
-
*/
|
3120
|
-
set pageBreakAfter(pageBreakAfter) {
|
3121
|
-
this.setProperty('page-break-after', pageBreakAfter);
|
3122
|
-
}
|
3123
|
-
/**
|
3124
|
-
*
|
3125
|
-
*/
|
3126
|
-
get pageBreakBefore() {
|
3127
|
-
return this.getPropertyValue('page-break-before');
|
3128
|
-
}
|
3129
|
-
/**
|
3130
|
-
*
|
3131
|
-
*/
|
3132
|
-
set pageBreakBefore(pageBreakBefore) {
|
3133
|
-
this.setProperty('page-break-before', pageBreakBefore);
|
3134
|
-
}
|
3135
|
-
/**
|
3136
|
-
*
|
3137
|
-
*/
|
3138
|
-
get pageBreakInside() {
|
3139
|
-
return this.getPropertyValue('page-break-inside');
|
3140
|
-
}
|
3141
|
-
/**
|
3142
|
-
*
|
3143
|
-
*/
|
3144
|
-
set pageBreakInside(pageBreakInside) {
|
3145
|
-
this.setProperty('page-break-inside', pageBreakInside);
|
3146
|
-
}
|
3147
|
-
/**
|
3148
|
-
*
|
3149
|
-
*/
|
3150
|
-
get pageOrientation() {
|
3151
|
-
return this.getPropertyValue('page-orientation');
|
3152
|
-
}
|
3153
|
-
/**
|
3154
|
-
*
|
3155
|
-
*/
|
3156
|
-
set pageOrientation(pageOrientation) {
|
3157
|
-
this.setProperty('page-orientation', pageOrientation);
|
3158
|
-
}
|
3159
|
-
/**
|
3160
|
-
*
|
3161
|
-
*/
|
3162
|
-
get paintOrder() {
|
3163
|
-
return this.getPropertyValue('paint-order');
|
3164
|
-
}
|
3165
|
-
/**
|
3166
|
-
*
|
3167
|
-
*/
|
3168
|
-
set paintOrder(paintOrder) {
|
3169
|
-
this.setProperty('paint-order', paintOrder);
|
3170
|
-
}
|
3171
|
-
/**
|
3172
|
-
*
|
3173
|
-
*/
|
3174
|
-
get perspective() {
|
3175
|
-
return this.getPropertyValue('perspective');
|
3176
|
-
}
|
3177
|
-
/**
|
3178
|
-
*
|
3179
|
-
*/
|
3180
|
-
set perspective(perspective) {
|
3181
|
-
this.setProperty('perspective', perspective);
|
3182
|
-
}
|
3183
|
-
/**
|
3184
|
-
*
|
3185
|
-
*/
|
3186
|
-
get perspectiveOrigin() {
|
3187
|
-
return this.getPropertyValue('perspective-origin');
|
3188
|
-
}
|
3189
|
-
/**
|
3190
|
-
*
|
3191
|
-
*/
|
3192
|
-
set perspectiveOrigin(perspectiveOrigin) {
|
3193
|
-
this.setProperty('perspective-origin', perspectiveOrigin);
|
3194
|
-
}
|
3195
|
-
/**
|
3196
|
-
*
|
3197
|
-
*/
|
3198
|
-
get placeContent() {
|
3199
|
-
return this.getPropertyValue('place-content');
|
3200
|
-
}
|
3201
|
-
/**
|
3202
|
-
*
|
3203
|
-
*/
|
3204
|
-
set placeContent(placeContent) {
|
3205
|
-
this.setProperty('place-content', placeContent);
|
3206
|
-
}
|
3207
|
-
/**
|
3208
|
-
*
|
3209
|
-
*/
|
3210
|
-
get placeItems() {
|
3211
|
-
return this.getPropertyValue('place-items');
|
3212
|
-
}
|
3213
|
-
/**
|
3214
|
-
*
|
3215
|
-
*/
|
3216
|
-
set placeItems(placeItems) {
|
3217
|
-
this.setProperty('place-items', placeItems);
|
3218
|
-
}
|
3219
|
-
/**
|
3220
|
-
*
|
3221
|
-
*/
|
3222
|
-
get placeSelf() {
|
3223
|
-
return this.getPropertyValue('place-self');
|
3224
|
-
}
|
3225
|
-
/**
|
3226
|
-
*
|
3227
|
-
*/
|
3228
|
-
set placeSelf(placeSelf) {
|
3229
|
-
this.setProperty('place-self', placeSelf);
|
3230
|
-
}
|
3231
|
-
/**
|
3232
|
-
*
|
3233
|
-
*/
|
3234
|
-
get pointerEvents() {
|
3235
|
-
return this.getPropertyValue('pointer-events');
|
3236
|
-
}
|
3237
|
-
/**
|
3238
|
-
*
|
3239
|
-
*/
|
3240
|
-
set pointerEvents(pointerEvents) {
|
3241
|
-
this.setProperty('pointer-events', pointerEvents);
|
3242
|
-
}
|
3243
|
-
/**
|
3244
|
-
*
|
3245
|
-
*/
|
3246
|
-
get position() {
|
3247
|
-
return this.getPropertyValue('position');
|
3248
|
-
}
|
3249
|
-
/**
|
3250
|
-
*
|
3251
|
-
*/
|
3252
|
-
set position(position) {
|
3253
|
-
this.setProperty('position', position);
|
3254
|
-
}
|
3255
|
-
/**
|
3256
|
-
*
|
3257
|
-
*/
|
3258
|
-
get quotes() {
|
3259
|
-
return this.getPropertyValue('quotes');
|
3260
|
-
}
|
3261
|
-
/**
|
3262
|
-
*
|
3263
|
-
*/
|
3264
|
-
set quotes(quotes) {
|
3265
|
-
this.setProperty('quotes', quotes);
|
3266
|
-
}
|
3267
|
-
/**
|
3268
|
-
*
|
3269
|
-
*/
|
3270
|
-
get r() {
|
3271
|
-
return this.getPropertyValue('r');
|
3272
|
-
}
|
3273
|
-
/**
|
3274
|
-
*
|
3275
|
-
*/
|
3276
|
-
set r(r) {
|
3277
|
-
this.setProperty('r', r);
|
3278
|
-
}
|
3279
|
-
/**
|
3280
|
-
*
|
3281
|
-
*/
|
3282
|
-
get resize() {
|
3283
|
-
return this.getPropertyValue('resize');
|
3284
|
-
}
|
3285
|
-
/**
|
3286
|
-
*
|
3287
|
-
*/
|
3288
|
-
set resize(resize) {
|
3289
|
-
this.setProperty('resize', resize);
|
3290
|
-
}
|
3291
|
-
/**
|
3292
|
-
*
|
3293
|
-
*/
|
3294
|
-
get right() {
|
3295
|
-
return this.getPropertyValue('right');
|
3296
|
-
}
|
3297
|
-
/**
|
3298
|
-
*
|
3299
|
-
*/
|
3300
|
-
set right(right) {
|
3301
|
-
this.setProperty('right', right);
|
3302
|
-
}
|
3303
|
-
/**
|
3304
|
-
*
|
3305
|
-
*/
|
3306
|
-
get rowGap() {
|
3307
|
-
return this.getPropertyValue('row-gap');
|
3308
|
-
}
|
3309
|
-
/**
|
3310
|
-
*
|
3311
|
-
*/
|
3312
|
-
set rowGap(rowGap) {
|
3313
|
-
this.setProperty('row-gap', rowGap);
|
3314
|
-
}
|
3315
|
-
/**
|
3316
|
-
*
|
3317
|
-
*/
|
3318
|
-
get rubyPosition() {
|
3319
|
-
return this.getPropertyValue('ruby-position');
|
3320
|
-
}
|
3321
|
-
/**
|
3322
|
-
*
|
3323
|
-
*/
|
3324
|
-
set rubyPosition(rubyPosition) {
|
3325
|
-
this.setProperty('ruby-position', rubyPosition);
|
3326
|
-
}
|
3327
|
-
/**
|
3328
|
-
*
|
3329
|
-
*/
|
3330
|
-
get rx() {
|
3331
|
-
return this.getPropertyValue('rx');
|
3332
|
-
}
|
3333
|
-
/**
|
3334
|
-
*
|
3335
|
-
*/
|
3336
|
-
set rx(rx) {
|
3337
|
-
this.setProperty('rx', rx);
|
3338
|
-
}
|
3339
|
-
/**
|
3340
|
-
*
|
3341
|
-
*/
|
3342
|
-
get ry() {
|
3343
|
-
return this.getPropertyValue('ry');
|
3344
|
-
}
|
3345
|
-
/**
|
3346
|
-
*
|
3347
|
-
*/
|
3348
|
-
set ry(ry) {
|
3349
|
-
this.setProperty('ry', ry);
|
3350
|
-
}
|
3351
|
-
/**
|
3352
|
-
*
|
3353
|
-
*/
|
3354
|
-
get scrollBehavior() {
|
3355
|
-
return this.getPropertyValue('scroll-behavior');
|
3356
|
-
}
|
3357
|
-
/**
|
3358
|
-
*
|
3359
|
-
*/
|
3360
|
-
set scrollBehavior(scrollBehavior) {
|
3361
|
-
this.setProperty('scroll-behavior', scrollBehavior);
|
3362
|
-
}
|
3363
|
-
/**
|
3364
|
-
*
|
3365
|
-
*/
|
3366
|
-
get scrollMargin() {
|
3367
|
-
return this.getPropertyValue('scroll-margin');
|
3368
|
-
}
|
3369
|
-
/**
|
3370
|
-
*
|
3371
|
-
*/
|
3372
|
-
set scrollMargin(scrollMargin) {
|
3373
|
-
this.setProperty('scroll-margin', scrollMargin);
|
3374
|
-
}
|
3375
|
-
/**
|
3376
|
-
*
|
3377
|
-
*/
|
3378
|
-
get scrollMarginBlock() {
|
3379
|
-
return this.getPropertyValue('scroll-margin-block');
|
3380
|
-
}
|
3381
|
-
/**
|
3382
|
-
*
|
3383
|
-
*/
|
3384
|
-
set scrollMarginBlock(scrollMarginBlock) {
|
3385
|
-
this.setProperty('scroll-margin-block', scrollMarginBlock);
|
3386
|
-
}
|
3387
|
-
/**
|
3388
|
-
*
|
3389
|
-
*/
|
3390
|
-
get scrollMarginBlockEnd() {
|
3391
|
-
return this.getPropertyValue('scroll-margin-block-end');
|
3392
|
-
}
|
3393
|
-
/**
|
3394
|
-
*
|
3395
|
-
*/
|
3396
|
-
set scrollMarginBlockEnd(scrollMarginBlockEnd) {
|
3397
|
-
this.setProperty('scroll-margin-block-end', scrollMarginBlockEnd);
|
3398
|
-
}
|
3399
|
-
/**
|
3400
|
-
*
|
3401
|
-
*/
|
3402
|
-
get scrollMarginBlockStart() {
|
3403
|
-
return this.getPropertyValue('scroll-margin-block-start');
|
3404
|
-
}
|
3405
|
-
/**
|
3406
|
-
*
|
3407
|
-
*/
|
3408
|
-
set scrollMarginBlockStart(scrollMarginBlockStart) {
|
3409
|
-
this.setProperty('scroll-margin-block-start', scrollMarginBlockStart);
|
3410
|
-
}
|
3411
|
-
/**
|
3412
|
-
*
|
3413
|
-
*/
|
3414
|
-
get scrollMarginBottom() {
|
3415
|
-
return this.getPropertyValue('scroll-margin-bottom');
|
3416
|
-
}
|
3417
|
-
/**
|
3418
|
-
*
|
3419
|
-
*/
|
3420
|
-
set scrollMarginBottom(scrollMarginBottom) {
|
3421
|
-
this.setProperty('scroll-margin-bottom', scrollMarginBottom);
|
3422
|
-
}
|
3423
|
-
/**
|
3424
|
-
*
|
3425
|
-
*/
|
3426
|
-
get scrollMarginInline() {
|
3427
|
-
return this.getPropertyValue('scroll-margin-inline');
|
3428
|
-
}
|
3429
|
-
/**
|
3430
|
-
*
|
3431
|
-
*/
|
3432
|
-
set scrollMarginInline(scrollMarginInline) {
|
3433
|
-
this.setProperty('scroll-margin-inline', scrollMarginInline);
|
3434
|
-
}
|
3435
|
-
/**
|
3436
|
-
*
|
3437
|
-
*/
|
3438
|
-
get scrollMarginInlineEnd() {
|
3439
|
-
return this.getPropertyValue('scroll-margin-inline-end');
|
3440
|
-
}
|
3441
|
-
/**
|
3442
|
-
*
|
3443
|
-
*/
|
3444
|
-
set scrollMarginInlineEnd(scrollMarginInlineEnd) {
|
3445
|
-
this.setProperty('scroll-margin-inline-end', scrollMarginInlineEnd);
|
3446
|
-
}
|
3447
|
-
/**
|
3448
|
-
*
|
3449
|
-
*/
|
3450
|
-
get scrollMarginInlineStart() {
|
3451
|
-
return this.getPropertyValue('scroll-margin-inline-start');
|
3452
|
-
}
|
3453
|
-
/**
|
3454
|
-
*
|
3455
|
-
*/
|
3456
|
-
set scrollMarginInlineStart(scrollMarginInlineStart) {
|
3457
|
-
this.setProperty('scroll-margin-inline-start', scrollMarginInlineStart);
|
3458
|
-
}
|
3459
|
-
/**
|
3460
|
-
*
|
3461
|
-
*/
|
3462
|
-
get scrollMarginLeft() {
|
3463
|
-
return this.getPropertyValue('scroll-margin-left');
|
3464
|
-
}
|
3465
|
-
/**
|
3466
|
-
*
|
3467
|
-
*/
|
3468
|
-
set scrollMarginLeft(scrollMarginLeft) {
|
3469
|
-
this.setProperty('scroll-margin-left', scrollMarginLeft);
|
3470
|
-
}
|
3471
|
-
/**
|
3472
|
-
*
|
3473
|
-
*/
|
3474
|
-
get scrollMarginRight() {
|
3475
|
-
return this.getPropertyValue('scroll-margin-right');
|
3476
|
-
}
|
3477
|
-
/**
|
3478
|
-
*
|
3479
|
-
*/
|
3480
|
-
set scrollMarginRight(scrollMarginRight) {
|
3481
|
-
this.setProperty('scroll-margin-right', scrollMarginRight);
|
3482
|
-
}
|
3483
|
-
/**
|
3484
|
-
*
|
3485
|
-
*/
|
3486
|
-
get scrollMarginTop() {
|
3487
|
-
return this.getPropertyValue('scroll-margin-top');
|
3488
|
-
}
|
3489
|
-
/**
|
3490
|
-
*
|
3491
|
-
*/
|
3492
|
-
set scrollMarginTop(scrollMarginTop) {
|
3493
|
-
this.setProperty('scroll-margin-top', scrollMarginTop);
|
3494
|
-
}
|
3495
|
-
/**
|
3496
|
-
*
|
3497
|
-
*/
|
3498
|
-
get scrollPadding() {
|
3499
|
-
return this.getPropertyValue('scroll-padding');
|
3500
|
-
}
|
3501
|
-
/**
|
3502
|
-
*
|
3503
|
-
*/
|
3504
|
-
set scrollPadding(scrollPadding) {
|
3505
|
-
this.setProperty('scroll-padding', scrollPadding);
|
3506
|
-
}
|
3507
|
-
/**
|
3508
|
-
*
|
3509
|
-
*/
|
3510
|
-
get scrollPaddingBlock() {
|
3511
|
-
return this.getPropertyValue('scroll-padding-block');
|
3512
|
-
}
|
3513
|
-
/**
|
3514
|
-
*
|
3515
|
-
*/
|
3516
|
-
set scrollPaddingBlock(scrollPaddingBlock) {
|
3517
|
-
this.setProperty('scroll-padding-block', scrollPaddingBlock);
|
3518
|
-
}
|
3519
|
-
/**
|
3520
|
-
*
|
3521
|
-
*/
|
3522
|
-
get scrollPaddingBlockEnd() {
|
3523
|
-
return this.getPropertyValue('scroll-padding-block-end');
|
3524
|
-
}
|
3525
|
-
/**
|
3526
|
-
*
|
3527
|
-
*/
|
3528
|
-
set scrollPaddingBlockEnd(scrollPaddingBlockEnd) {
|
3529
|
-
this.setProperty('scroll-padding-block-end', scrollPaddingBlockEnd);
|
3530
|
-
}
|
3531
|
-
/**
|
3532
|
-
*
|
3533
|
-
*/
|
3534
|
-
get scrollPaddingBlockStart() {
|
3535
|
-
return this.getPropertyValue('scroll-padding-block-start');
|
3536
|
-
}
|
3537
|
-
/**
|
3538
|
-
*
|
3539
|
-
*/
|
3540
|
-
set scrollPaddingBlockStart(scrollPaddingBlockStart) {
|
3541
|
-
this.setProperty('scroll-padding-block-start', scrollPaddingBlockStart);
|
3542
|
-
}
|
3543
|
-
/**
|
3544
|
-
*
|
3545
|
-
*/
|
3546
|
-
get scrollPaddingBottom() {
|
3547
|
-
return this.getPropertyValue('scroll-padding-bottom');
|
3548
|
-
}
|
3549
|
-
/**
|
3550
|
-
*
|
3551
|
-
*/
|
3552
|
-
set scrollPaddingBottom(scrollPaddingBottom) {
|
3553
|
-
this.setProperty('scroll-padding-bottom', scrollPaddingBottom);
|
3554
|
-
}
|
3555
|
-
/**
|
3556
|
-
*
|
3557
|
-
*/
|
3558
|
-
get scrollPaddingInline() {
|
3559
|
-
return this.getPropertyValue('scroll-padding-inline');
|
3560
|
-
}
|
3561
|
-
/**
|
3562
|
-
*
|
3563
|
-
*/
|
3564
|
-
set scrollPaddingInline(scrollPaddingInline) {
|
3565
|
-
this.setProperty('scroll-padding-inline', scrollPaddingInline);
|
3566
|
-
}
|
3567
|
-
/**
|
3568
|
-
*
|
3569
|
-
*/
|
3570
|
-
get scrollPaddingInlineEnd() {
|
3571
|
-
return this.getPropertyValue('scroll-padding-inline-end');
|
3572
|
-
}
|
3573
|
-
/**
|
3574
|
-
*
|
3575
|
-
*/
|
3576
|
-
set scrollPaddingInlineEnd(scrollPaddingInlineEnd) {
|
3577
|
-
this.setProperty('scroll-padding-inline-end', scrollPaddingInlineEnd);
|
3578
|
-
}
|
3579
|
-
/**
|
3580
|
-
*
|
3581
|
-
*/
|
3582
|
-
get scrollPaddingInlineStart() {
|
3583
|
-
return this.getPropertyValue('scroll-padding-inline-start');
|
3584
|
-
}
|
3585
|
-
/**
|
3586
|
-
*
|
3587
|
-
*/
|
3588
|
-
set scrollPaddingInlineStart(scrollPaddingInlineStart) {
|
3589
|
-
this.setProperty('scroll-padding-inline-start', scrollPaddingInlineStart);
|
3590
|
-
}
|
3591
|
-
/**
|
3592
|
-
*
|
3593
|
-
*/
|
3594
|
-
get scrollPaddingLeft() {
|
3595
|
-
return this.getPropertyValue('scroll-padding-left');
|
3596
|
-
}
|
3597
|
-
/**
|
3598
|
-
*
|
3599
|
-
*/
|
3600
|
-
set scrollPaddingLeft(scrollPaddingLeft) {
|
3601
|
-
this.setProperty('scroll-padding-left', scrollPaddingLeft);
|
3602
|
-
}
|
3603
|
-
/**
|
3604
|
-
*
|
3605
|
-
*/
|
3606
|
-
get scrollPaddingRight() {
|
3607
|
-
return this.getPropertyValue('scroll-padding-right');
|
3608
|
-
}
|
3609
|
-
/**
|
3610
|
-
*
|
3611
|
-
*/
|
3612
|
-
set scrollPaddingRight(scrollPaddingRight) {
|
3613
|
-
this.setProperty('scroll-padding-right', scrollPaddingRight);
|
3614
|
-
}
|
3615
|
-
/**
|
3616
|
-
*
|
3617
|
-
*/
|
3618
|
-
get scrollPaddingTop() {
|
3619
|
-
return this.getPropertyValue('scroll-padding-top');
|
3620
|
-
}
|
3621
|
-
/**
|
3622
|
-
*
|
3623
|
-
*/
|
3624
|
-
set scrollPaddingTop(scrollPaddingTop) {
|
3625
|
-
this.setProperty('scroll-padding-top', scrollPaddingTop);
|
3626
|
-
}
|
3627
|
-
/**
|
3628
|
-
*
|
3629
|
-
*/
|
3630
|
-
get scrollSnapAlign() {
|
3631
|
-
return this.getPropertyValue('scroll-snap-align');
|
3632
|
-
}
|
3633
|
-
/**
|
3634
|
-
*
|
3635
|
-
*/
|
3636
|
-
set scrollSnapAlign(scrollSnapAlign) {
|
3637
|
-
this.setProperty('scroll-snap-align', scrollSnapAlign);
|
3638
|
-
}
|
3639
|
-
/**
|
3640
|
-
*
|
3641
|
-
*/
|
3642
|
-
get scrollSnapStop() {
|
3643
|
-
return this.getPropertyValue('scroll-snap-stop');
|
3644
|
-
}
|
3645
|
-
/**
|
3646
|
-
*
|
3647
|
-
*/
|
3648
|
-
set scrollSnapStop(scrollSnapStop) {
|
3649
|
-
this.setProperty('scroll-snap-stop', scrollSnapStop);
|
3650
|
-
}
|
3651
|
-
/**
|
3652
|
-
*
|
3653
|
-
*/
|
3654
|
-
get scrollSnapType() {
|
3655
|
-
return this.getPropertyValue('scroll-snap-type');
|
3656
|
-
}
|
3657
|
-
/**
|
3658
|
-
*
|
3659
|
-
*/
|
3660
|
-
set scrollSnapType(scrollSnapType) {
|
3661
|
-
this.setProperty('scroll-snap-type', scrollSnapType);
|
3662
|
-
}
|
3663
|
-
/**
|
3664
|
-
*
|
3665
|
-
*/
|
3666
|
-
get shapeImageThreshold() {
|
3667
|
-
return this.getPropertyValue('shape-image-threshold');
|
3668
|
-
}
|
3669
|
-
/**
|
3670
|
-
*
|
3671
|
-
*/
|
3672
|
-
set shapeImageThreshold(shapeImageThreshold) {
|
3673
|
-
this.setProperty('shape-image-threshold', shapeImageThreshold);
|
3674
|
-
}
|
3675
|
-
/**
|
3676
|
-
*
|
3677
|
-
*/
|
3678
|
-
get shapeMargin() {
|
3679
|
-
return this.getPropertyValue('shape-margin');
|
3680
|
-
}
|
3681
|
-
/**
|
3682
|
-
*
|
3683
|
-
*/
|
3684
|
-
set shapeMargin(shapeMargin) {
|
3685
|
-
this.setProperty('shape-margin', shapeMargin);
|
3686
|
-
}
|
3687
|
-
/**
|
3688
|
-
*
|
3689
|
-
*/
|
3690
|
-
get shapeOutside() {
|
3691
|
-
return this.getPropertyValue('shape-outside');
|
3692
|
-
}
|
3693
|
-
/**
|
3694
|
-
*
|
3695
|
-
*/
|
3696
|
-
set shapeOutside(shapeOutside) {
|
3697
|
-
this.setProperty('shape-outside', shapeOutside);
|
3698
|
-
}
|
3699
|
-
/**
|
3700
|
-
*
|
3701
|
-
*/
|
3702
|
-
get shapeRendering() {
|
3703
|
-
return this.getPropertyValue('shape-rendering');
|
3704
|
-
}
|
3705
|
-
/**
|
3706
|
-
*
|
3707
|
-
*/
|
3708
|
-
set shapeRendering(shapeRendering) {
|
3709
|
-
this.setProperty('shape-rendering', shapeRendering);
|
3710
|
-
}
|
3711
|
-
/**
|
3712
|
-
*
|
3713
|
-
*/
|
3714
|
-
get size() {
|
3715
|
-
return this.getPropertyValue('size');
|
3716
|
-
}
|
3717
|
-
/**
|
3718
|
-
*
|
3719
|
-
*/
|
3720
|
-
set size(size) {
|
3721
|
-
this.setProperty('size', size);
|
3722
|
-
}
|
3723
|
-
/**
|
3724
|
-
*
|
3725
|
-
*/
|
3726
|
-
get speak() {
|
3727
|
-
return this.getPropertyValue('speak');
|
3728
|
-
}
|
3729
|
-
/**
|
3730
|
-
*
|
3731
|
-
*/
|
3732
|
-
set speak(speak) {
|
3733
|
-
this.setProperty('speak', speak);
|
3734
|
-
}
|
3735
|
-
/**
|
3736
|
-
*
|
3737
|
-
*/
|
3738
|
-
get src() {
|
3739
|
-
return this.getPropertyValue('src');
|
3740
|
-
}
|
3741
|
-
/**
|
3742
|
-
*
|
3743
|
-
*/
|
3744
|
-
set src(src) {
|
3745
|
-
this.setProperty('src', src);
|
3746
|
-
}
|
3747
|
-
/**
|
3748
|
-
*
|
3749
|
-
*/
|
3750
|
-
get stopColor() {
|
3751
|
-
return this.getPropertyValue('stop-color');
|
3752
|
-
}
|
3753
|
-
/**
|
3754
|
-
*
|
3755
|
-
*/
|
3756
|
-
set stopColor(stopColor) {
|
3757
|
-
this.setProperty('stop-color', stopColor);
|
3758
|
-
}
|
3759
|
-
/**
|
3760
|
-
*
|
3761
|
-
*/
|
3762
|
-
get stopOpacity() {
|
3763
|
-
return this.getPropertyValue('stop-opacity');
|
3764
|
-
}
|
3765
|
-
/**
|
3766
|
-
*
|
3767
|
-
*/
|
3768
|
-
set stopOpacity(stopOpacity) {
|
3769
|
-
this.setProperty('stop-opacity', stopOpacity);
|
3770
|
-
}
|
3771
|
-
/**
|
3772
|
-
*
|
3773
|
-
*/
|
3774
|
-
get stroke() {
|
3775
|
-
return this.getPropertyValue('stroke');
|
3776
|
-
}
|
3777
|
-
/**
|
3778
|
-
*
|
3779
|
-
*/
|
3780
|
-
set stroke(stroke) {
|
3781
|
-
this.setProperty('stroke', stroke);
|
3782
|
-
}
|
3783
|
-
/**
|
3784
|
-
*
|
3785
|
-
*/
|
3786
|
-
get strokeDasharray() {
|
3787
|
-
return this.getPropertyValue('stroke-dasharray');
|
3788
|
-
}
|
3789
|
-
/**
|
3790
|
-
*
|
3791
|
-
*/
|
3792
|
-
set strokeDasharray(strokeDasharray) {
|
3793
|
-
this.setProperty('stroke-dasharray', strokeDasharray);
|
3794
|
-
}
|
3795
|
-
/**
|
3796
|
-
*
|
3797
|
-
*/
|
3798
|
-
get strokeDashoffset() {
|
3799
|
-
return this.getPropertyValue('stroke-dashoffset');
|
3800
|
-
}
|
3801
|
-
/**
|
3802
|
-
*
|
3803
|
-
*/
|
3804
|
-
set strokeDashoffset(strokeDashoffset) {
|
3805
|
-
this.setProperty('stroke-dashoffset', strokeDashoffset);
|
3806
|
-
}
|
3807
|
-
/**
|
3808
|
-
*
|
3809
|
-
*/
|
3810
|
-
get strokeLinecap() {
|
3811
|
-
return this.getPropertyValue('stroke-linecap');
|
3812
|
-
}
|
3813
|
-
/**
|
3814
|
-
*
|
3815
|
-
*/
|
3816
|
-
set strokeLinecap(strokeLinecap) {
|
3817
|
-
this.setProperty('stroke-linecap', strokeLinecap);
|
3818
|
-
}
|
3819
|
-
/**
|
3820
|
-
*
|
3821
|
-
*/
|
3822
|
-
get strokeLinejoin() {
|
3823
|
-
return this.getPropertyValue('stroke-linejoin');
|
3824
|
-
}
|
3825
|
-
/**
|
3826
|
-
*
|
3827
|
-
*/
|
3828
|
-
set strokeLinejoin(strokeLinejoin) {
|
3829
|
-
this.setProperty('stroke-linejoin', strokeLinejoin);
|
3830
|
-
}
|
3831
|
-
/**
|
3832
|
-
*
|
3833
|
-
*/
|
3834
|
-
get strokeMiterlimit() {
|
3835
|
-
return this.getPropertyValue('stroke-miterlimit');
|
3836
|
-
}
|
3837
|
-
/**
|
3838
|
-
*
|
3839
|
-
*/
|
3840
|
-
set strokeMiterlimit(strokeMiterlimit) {
|
3841
|
-
this.setProperty('stroke-miterlimit', strokeMiterlimit);
|
3842
|
-
}
|
3843
|
-
/**
|
3844
|
-
*
|
3845
|
-
*/
|
3846
|
-
get strokeOpacity() {
|
3847
|
-
return this.getPropertyValue('stroke-opacity');
|
3848
|
-
}
|
3849
|
-
/**
|
3850
|
-
*
|
3851
|
-
*/
|
3852
|
-
set strokeOpacity(strokeOpacity) {
|
3853
|
-
this.setProperty('stroke-opacity', strokeOpacity);
|
3854
|
-
}
|
3855
|
-
/**
|
3856
|
-
*
|
3857
|
-
*/
|
3858
|
-
get strokeWidth() {
|
3859
|
-
return this.getPropertyValue('stroke-width');
|
3860
|
-
}
|
3861
|
-
/**
|
3862
|
-
*
|
3863
|
-
*/
|
3864
|
-
set strokeWidth(strokeWidth) {
|
3865
|
-
this.setProperty('stroke-width', strokeWidth);
|
3866
|
-
}
|
3867
|
-
/**
|
3868
|
-
*
|
3869
|
-
*/
|
3870
|
-
get syntax() {
|
3871
|
-
return this.getPropertyValue('syntax');
|
3872
|
-
}
|
3873
|
-
/**
|
3874
|
-
*
|
3875
|
-
*/
|
3876
|
-
set syntax(syntax) {
|
3877
|
-
this.setProperty('syntax', syntax);
|
3878
|
-
}
|
3879
|
-
/**
|
3880
|
-
*
|
3881
|
-
*/
|
3882
|
-
get tabSize() {
|
3883
|
-
return this.getPropertyValue('tab-size');
|
3884
|
-
}
|
3885
|
-
/**
|
3886
|
-
*
|
3887
|
-
*/
|
3888
|
-
set tabSize(tabSize) {
|
3889
|
-
this.setProperty('tab-size', tabSize);
|
3890
|
-
}
|
3891
|
-
/**
|
3892
|
-
*
|
3893
|
-
*/
|
3894
|
-
get tableLayout() {
|
3895
|
-
return this.getPropertyValue('table-layout');
|
3896
|
-
}
|
3897
|
-
/**
|
3898
|
-
*
|
3899
|
-
*/
|
3900
|
-
set tableLayout(tableLayout) {
|
3901
|
-
this.setProperty('table-layout', tableLayout);
|
3902
|
-
}
|
3903
|
-
/**
|
3904
|
-
*
|
3905
|
-
*/
|
3906
|
-
get textAlign() {
|
3907
|
-
return this.getPropertyValue('text-align');
|
3908
|
-
}
|
3909
|
-
/**
|
3910
|
-
*
|
3911
|
-
*/
|
3912
|
-
set textAlign(textAlign) {
|
3913
|
-
this.setProperty('text-align', textAlign);
|
3914
|
-
}
|
3915
|
-
/**
|
3916
|
-
*
|
3917
|
-
*/
|
3918
|
-
get textAlignLast() {
|
3919
|
-
return this.getPropertyValue('text-align-last');
|
3920
|
-
}
|
3921
|
-
/**
|
3922
|
-
*
|
3923
|
-
*/
|
3924
|
-
set textAlignLast(textAlignLast) {
|
3925
|
-
this.setProperty('text-align-last', textAlignLast);
|
3926
|
-
}
|
3927
|
-
/**
|
3928
|
-
*
|
3929
|
-
*/
|
3930
|
-
get textAnchor() {
|
3931
|
-
return this.getPropertyValue('text-anchor');
|
3932
|
-
}
|
3933
|
-
/**
|
3934
|
-
*
|
3935
|
-
*/
|
3936
|
-
set textAnchor(textAnchor) {
|
3937
|
-
this.setProperty('text-anchor', textAnchor);
|
3938
|
-
}
|
3939
|
-
/**
|
3940
|
-
*
|
3941
|
-
*/
|
3942
|
-
get textCombineUpright() {
|
3943
|
-
return this.getPropertyValue('text-combine-upright');
|
3944
|
-
}
|
3945
|
-
/**
|
3946
|
-
*
|
3947
|
-
*/
|
3948
|
-
set textCombineUpright(textCombineUpright) {
|
3949
|
-
this.setProperty('text-combine-upright', textCombineUpright);
|
3950
|
-
}
|
3951
|
-
/**
|
3952
|
-
*
|
3953
|
-
*/
|
3954
|
-
get textDecoration() {
|
3955
|
-
return this.getPropertyValue('text-decoration');
|
3956
|
-
}
|
3957
|
-
/**
|
3958
|
-
*
|
3959
|
-
*/
|
3960
|
-
set textDecoration(textDecoration) {
|
3961
|
-
this.setProperty('text-decoration', textDecoration);
|
3962
|
-
}
|
3963
|
-
/**
|
3964
|
-
*
|
3965
|
-
*/
|
3966
|
-
get textDecorationColor() {
|
3967
|
-
return this.getPropertyValue('text-decoration-color');
|
3968
|
-
}
|
3969
|
-
/**
|
3970
|
-
*
|
3971
|
-
*/
|
3972
|
-
set textDecorationColor(textDecorationColor) {
|
3973
|
-
this.setProperty('text-decoration-color', textDecorationColor);
|
3974
|
-
}
|
3975
|
-
/**
|
3976
|
-
*
|
3977
|
-
*/
|
3978
|
-
get textDecorationLine() {
|
3979
|
-
return this.getPropertyValue('text-decoration-line');
|
3980
|
-
}
|
3981
|
-
/**
|
3982
|
-
*
|
3983
|
-
*/
|
3984
|
-
set textDecorationLine(textDecorationLine) {
|
3985
|
-
this.setProperty('text-decoration-line', textDecorationLine);
|
3986
|
-
}
|
3987
|
-
/**
|
3988
|
-
*
|
3989
|
-
*/
|
3990
|
-
get textDecorationSkipInk() {
|
3991
|
-
return this.getPropertyValue('text-decoration-skip-ink');
|
3992
|
-
}
|
3993
|
-
/**
|
3994
|
-
*
|
3995
|
-
*/
|
3996
|
-
set textDecorationSkipInk(textDecorationSkipInk) {
|
3997
|
-
this.setProperty('text-decoration-skip-ink', textDecorationSkipInk);
|
3998
|
-
}
|
3999
|
-
/**
|
4000
|
-
*
|
4001
|
-
*/
|
4002
|
-
get textDecorationStyle() {
|
4003
|
-
return this.getPropertyValue('text-decoration-style');
|
4004
|
-
}
|
4005
|
-
/**
|
4006
|
-
*
|
4007
|
-
*/
|
4008
|
-
set textDecorationStyle(textDecorationStyle) {
|
4009
|
-
this.setProperty('text-decoration-style', textDecorationStyle);
|
4010
|
-
}
|
4011
|
-
/**
|
4012
|
-
*
|
4013
|
-
*/
|
4014
|
-
get textIndent() {
|
4015
|
-
return this.getPropertyValue('text-indent');
|
4016
|
-
}
|
4017
|
-
/**
|
4018
|
-
*
|
4019
|
-
*/
|
4020
|
-
set textIndent(textIndent) {
|
4021
|
-
this.setProperty('text-indent', textIndent);
|
4022
|
-
}
|
4023
|
-
/**
|
4024
|
-
*
|
4025
|
-
*/
|
4026
|
-
get textOrientation() {
|
4027
|
-
return this.getPropertyValue('text-orientation');
|
4028
|
-
}
|
4029
|
-
/**
|
4030
|
-
*
|
4031
|
-
*/
|
4032
|
-
set textOrientation(textOrientation) {
|
4033
|
-
this.setProperty('text-orientation', textOrientation);
|
4034
|
-
}
|
4035
|
-
/**
|
4036
|
-
*
|
4037
|
-
*/
|
4038
|
-
get textOverflow() {
|
4039
|
-
return this.getPropertyValue('text-overflow');
|
4040
|
-
}
|
4041
|
-
/**
|
4042
|
-
*
|
4043
|
-
*/
|
4044
|
-
set textOverflow(textOverflow) {
|
4045
|
-
this.setProperty('text-overflow', textOverflow);
|
4046
|
-
}
|
4047
|
-
/**
|
4048
|
-
*
|
4049
|
-
*/
|
4050
|
-
get textRendering() {
|
4051
|
-
return this.getPropertyValue('text-rendering');
|
4052
|
-
}
|
4053
|
-
/**
|
4054
|
-
*
|
4055
|
-
*/
|
4056
|
-
set textRendering(textRendering) {
|
4057
|
-
this.setProperty('text-rendering', textRendering);
|
4058
|
-
}
|
4059
|
-
/**
|
4060
|
-
*
|
4061
|
-
*/
|
4062
|
-
get textShadow() {
|
4063
|
-
return this.getPropertyValue('text-shadow');
|
4064
|
-
}
|
4065
|
-
/**
|
4066
|
-
*
|
4067
|
-
*/
|
4068
|
-
set textShadow(textShadow) {
|
4069
|
-
this.setProperty('text-shadow', textShadow);
|
4070
|
-
}
|
4071
|
-
/**
|
4072
|
-
*
|
4073
|
-
*/
|
4074
|
-
get textSizeAdjust() {
|
4075
|
-
return this.getPropertyValue('text-size-adjust');
|
4076
|
-
}
|
4077
|
-
/**
|
4078
|
-
*
|
4079
|
-
*/
|
4080
|
-
set textSizeAdjust(textSizeAdjust) {
|
4081
|
-
this.setProperty('text-size-adjust', textSizeAdjust);
|
4082
|
-
}
|
4083
|
-
/**
|
4084
|
-
*
|
4085
|
-
*/
|
4086
|
-
get textTransform() {
|
4087
|
-
return this.getPropertyValue('text-transform');
|
4088
|
-
}
|
4089
|
-
/**
|
4090
|
-
*
|
4091
|
-
*/
|
4092
|
-
set textTransform(textTransform) {
|
4093
|
-
this.setProperty('text-transform', textTransform);
|
4094
|
-
}
|
4095
|
-
/**
|
4096
|
-
*
|
4097
|
-
*/
|
4098
|
-
get textUnderlinePosition() {
|
4099
|
-
return this.getPropertyValue('text-underline-position');
|
4100
|
-
}
|
4101
|
-
/**
|
4102
|
-
*
|
4103
|
-
*/
|
4104
|
-
set textUnderlinePosition(textUnderlinePosition) {
|
4105
|
-
this.setProperty('text-underline-position', textUnderlinePosition);
|
4106
|
-
}
|
4107
|
-
/**
|
4108
|
-
*
|
4109
|
-
*/
|
4110
|
-
get top() {
|
4111
|
-
return this.getPropertyValue('top');
|
4112
|
-
}
|
4113
|
-
/**
|
4114
|
-
*
|
4115
|
-
*/
|
4116
|
-
set top(top) {
|
4117
|
-
this.setProperty('top', top);
|
4118
|
-
}
|
4119
|
-
/**
|
4120
|
-
*
|
4121
|
-
*/
|
4122
|
-
get touchAction() {
|
4123
|
-
return this.getPropertyValue('touch-action');
|
4124
|
-
}
|
4125
|
-
/**
|
4126
|
-
*
|
4127
|
-
*/
|
4128
|
-
set touchAction(touchAction) {
|
4129
|
-
this.setProperty('touch-action', touchAction);
|
4130
|
-
}
|
4131
|
-
/**
|
4132
|
-
*
|
4133
|
-
*/
|
4134
|
-
get transform() {
|
4135
|
-
return this.getPropertyValue('transform');
|
4136
|
-
}
|
4137
|
-
/**
|
4138
|
-
*
|
4139
|
-
*/
|
4140
|
-
set transform(transform) {
|
4141
|
-
this.setProperty('transform', transform);
|
4142
|
-
}
|
4143
|
-
/**
|
4144
|
-
*
|
4145
|
-
*/
|
4146
|
-
get transformBox() {
|
4147
|
-
return this.getPropertyValue('transform-box');
|
4148
|
-
}
|
4149
|
-
/**
|
4150
|
-
*
|
4151
|
-
*/
|
4152
|
-
set transformBox(transformBox) {
|
4153
|
-
this.setProperty('transform-box', transformBox);
|
4154
|
-
}
|
4155
|
-
/**
|
4156
|
-
*
|
4157
|
-
*/
|
4158
|
-
get transformOrigin() {
|
4159
|
-
return this.getPropertyValue('transform-origin');
|
4160
|
-
}
|
4161
|
-
/**
|
4162
|
-
*
|
4163
|
-
*/
|
4164
|
-
set transformOrigin(transformOrigin) {
|
4165
|
-
this.setProperty('transform-origin', transformOrigin);
|
4166
|
-
}
|
4167
|
-
/**
|
4168
|
-
*
|
4169
|
-
*/
|
4170
|
-
get transformStyle() {
|
4171
|
-
return this.getPropertyValue('transform-style');
|
4172
|
-
}
|
4173
|
-
/**
|
4174
|
-
*
|
4175
|
-
*/
|
4176
|
-
set transformStyle(transformStyle) {
|
4177
|
-
this.setProperty('transform-style', transformStyle);
|
4178
|
-
}
|
4179
|
-
/**
|
4180
|
-
*
|
4181
|
-
*/
|
4182
|
-
get transition() {
|
4183
|
-
return this.getPropertyValue('transition');
|
4184
|
-
}
|
4185
|
-
/**
|
4186
|
-
*
|
4187
|
-
*/
|
4188
|
-
set transition(transition) {
|
4189
|
-
this.setProperty('transition', transition);
|
4190
|
-
}
|
4191
|
-
/**
|
4192
|
-
*
|
4193
|
-
*/
|
4194
|
-
get transitionDelay() {
|
4195
|
-
return this.getPropertyValue('transition-delay');
|
4196
|
-
}
|
4197
|
-
/**
|
4198
|
-
*
|
4199
|
-
*/
|
4200
|
-
set transitionDelay(transitionDelay) {
|
4201
|
-
this.setProperty('transition-delay', transitionDelay);
|
4202
|
-
}
|
4203
|
-
/**
|
4204
|
-
*
|
4205
|
-
*/
|
4206
|
-
get transitionDuration() {
|
4207
|
-
return this.getPropertyValue('transition-duration');
|
4208
|
-
}
|
4209
|
-
/**
|
4210
|
-
*
|
4211
|
-
*/
|
4212
|
-
set transitionDuration(transitionDuration) {
|
4213
|
-
this.setProperty('transition-duration', transitionDuration);
|
4214
|
-
}
|
4215
|
-
/**
|
4216
|
-
*
|
4217
|
-
*/
|
4218
|
-
get transitionProperty() {
|
4219
|
-
return this.getPropertyValue('transition-property');
|
4220
|
-
}
|
4221
|
-
/**
|
4222
|
-
*
|
4223
|
-
*/
|
4224
|
-
set transitionProperty(transitionProperty) {
|
4225
|
-
this.setProperty('transition-property', transitionProperty);
|
4226
|
-
}
|
4227
|
-
/**
|
4228
|
-
*
|
4229
|
-
*/
|
4230
|
-
get transitionTimingFunction() {
|
4231
|
-
return this.getPropertyValue('transition-timing-function');
|
4232
|
-
}
|
4233
|
-
/**
|
4234
|
-
*
|
4235
|
-
*/
|
4236
|
-
set transitionTimingFunction(transitionTimingFunction) {
|
4237
|
-
this.setProperty('transition-timing-function', transitionTimingFunction);
|
4238
|
-
}
|
4239
|
-
/**
|
4240
|
-
*
|
4241
|
-
*/
|
4242
|
-
get unicodeBidi() {
|
4243
|
-
return this.getPropertyValue('unicode-bidi');
|
4244
|
-
}
|
4245
|
-
/**
|
4246
|
-
*
|
4247
|
-
*/
|
4248
|
-
set unicodeBidi(unicodeBidi) {
|
4249
|
-
this.setProperty('unicode-bidi', unicodeBidi);
|
4250
|
-
}
|
4251
|
-
/**
|
4252
|
-
*
|
4253
|
-
*/
|
4254
|
-
get unicodeRange() {
|
4255
|
-
return this.getPropertyValue('unicode-range');
|
4256
|
-
}
|
4257
|
-
/**
|
4258
|
-
*
|
4259
|
-
*/
|
4260
|
-
set unicodeRange(unicodeRange) {
|
4261
|
-
this.setProperty('unicode-range', unicodeRange);
|
4262
|
-
}
|
4263
|
-
/**
|
4264
|
-
*
|
4265
|
-
*/
|
4266
|
-
get userSelect() {
|
4267
|
-
return this.getPropertyValue('user-select');
|
4268
|
-
}
|
4269
|
-
/**
|
4270
|
-
*
|
4271
|
-
*/
|
4272
|
-
set userSelect(userSelect) {
|
4273
|
-
this.setProperty('user-select', userSelect);
|
4274
|
-
}
|
4275
|
-
/**
|
4276
|
-
*
|
4277
|
-
*/
|
4278
|
-
get userZoom() {
|
4279
|
-
return this.getPropertyValue('user-zoom');
|
4280
|
-
}
|
4281
|
-
/**
|
4282
|
-
*
|
4283
|
-
*/
|
4284
|
-
set userZoom(userZoom) {
|
4285
|
-
this.setProperty('user-zoom', userZoom);
|
4286
|
-
}
|
4287
|
-
/**
|
4288
|
-
*
|
4289
|
-
*/
|
4290
|
-
get vectorEffect() {
|
4291
|
-
return this.getPropertyValue('vector-effect');
|
4292
|
-
}
|
4293
|
-
/**
|
4294
|
-
*
|
4295
|
-
*/
|
4296
|
-
set vectorEffect(vectorEffect) {
|
4297
|
-
this.setProperty('vector-effect', vectorEffect);
|
4298
|
-
}
|
4299
|
-
/**
|
4300
|
-
*
|
4301
|
-
*/
|
4302
|
-
get verticalAlign() {
|
4303
|
-
return this.getPropertyValue('vertical-align');
|
4304
|
-
}
|
4305
|
-
/**
|
4306
|
-
*
|
4307
|
-
*/
|
4308
|
-
set verticalAlign(verticalAlign) {
|
4309
|
-
this.setProperty('vertical-align', verticalAlign);
|
4310
|
-
}
|
4311
|
-
/**
|
4312
|
-
*
|
4313
|
-
*/
|
4314
|
-
get visibility() {
|
4315
|
-
return this.getPropertyValue('visibility');
|
4316
|
-
}
|
4317
|
-
/**
|
4318
|
-
*
|
4319
|
-
*/
|
4320
|
-
set visibility(visibility) {
|
4321
|
-
this.setProperty('visibility', visibility);
|
4322
|
-
}
|
4323
|
-
/**
|
4324
|
-
*
|
4325
|
-
*/
|
4326
|
-
get whiteSpace() {
|
4327
|
-
return this.getPropertyValue('white-space');
|
4328
|
-
}
|
4329
|
-
/**
|
4330
|
-
*
|
4331
|
-
*/
|
4332
|
-
set whiteSpace(whiteSpace) {
|
4333
|
-
this.setProperty('white-space', whiteSpace);
|
4334
|
-
}
|
4335
|
-
/**
|
4336
|
-
*
|
4337
|
-
*/
|
4338
|
-
get widows() {
|
4339
|
-
return this.getPropertyValue('widows');
|
4340
|
-
}
|
4341
|
-
/**
|
4342
|
-
*
|
4343
|
-
*/
|
4344
|
-
set widows(widows) {
|
4345
|
-
this.setProperty('widows', widows);
|
4346
|
-
}
|
4347
|
-
/**
|
4348
|
-
*
|
4349
|
-
*/
|
4350
|
-
get width() {
|
4351
|
-
return this.getPropertyValue('width');
|
4352
|
-
}
|
4353
|
-
/**
|
4354
|
-
*
|
4355
|
-
*/
|
4356
|
-
set width(width) {
|
4357
|
-
this.setProperty('width', width);
|
4358
|
-
}
|
4359
|
-
/**
|
4360
|
-
*
|
4361
|
-
*/
|
4362
|
-
get willChange() {
|
4363
|
-
return this.getPropertyValue('will-change');
|
4364
|
-
}
|
4365
|
-
/**
|
4366
|
-
*
|
4367
|
-
*/
|
4368
|
-
set willChange(willChange) {
|
4369
|
-
this.setProperty('will-change', willChange);
|
4370
|
-
}
|
4371
|
-
/**
|
4372
|
-
*
|
4373
|
-
*/
|
4374
|
-
get wordBreak() {
|
4375
|
-
return this.getPropertyValue('word-break');
|
4376
|
-
}
|
4377
|
-
/**
|
4378
|
-
*
|
4379
|
-
*/
|
4380
|
-
set wordBreak(wordBreak) {
|
4381
|
-
this.setProperty('word-break', wordBreak);
|
4382
|
-
}
|
4383
|
-
/**
|
4384
|
-
*
|
4385
|
-
*/
|
4386
|
-
get wordSpacing() {
|
4387
|
-
return this.getPropertyValue('word-spacing');
|
4388
|
-
}
|
4389
|
-
/**
|
4390
|
-
*
|
4391
|
-
*/
|
4392
|
-
set wordSpacing(wordSpacing) {
|
4393
|
-
this.setProperty('word-spacing', wordSpacing);
|
4394
|
-
}
|
4395
|
-
/**
|
4396
|
-
*
|
4397
|
-
*/
|
4398
|
-
get wordWrap() {
|
4399
|
-
return this.getPropertyValue('word-wrap');
|
4400
|
-
}
|
4401
|
-
/**
|
4402
|
-
*
|
4403
|
-
*/
|
4404
|
-
set wordWrap(wordWrap) {
|
4405
|
-
this.setProperty('word-wrap', wordWrap);
|
4406
|
-
}
|
4407
|
-
/**
|
4408
|
-
*
|
4409
|
-
*/
|
4410
|
-
get writingMode() {
|
4411
|
-
return this.getPropertyValue('writing-mode');
|
4412
|
-
}
|
4413
|
-
/**
|
4414
|
-
*
|
4415
|
-
*/
|
4416
|
-
set writingMode(writingMode) {
|
4417
|
-
this.setProperty('writing-mode', writingMode);
|
4418
|
-
}
|
4419
|
-
/**
|
4420
|
-
*
|
4421
|
-
*/
|
4422
|
-
get x() {
|
4423
|
-
return this.getPropertyValue('x');
|
4424
|
-
}
|
4425
|
-
/**
|
4426
|
-
*
|
4427
|
-
*/
|
4428
|
-
set x(x) {
|
4429
|
-
this.setProperty('x', x);
|
4430
|
-
}
|
4431
|
-
/**
|
4432
|
-
*
|
4433
|
-
*/
|
4434
|
-
get y() {
|
4435
|
-
return this.getPropertyValue('y');
|
4436
|
-
}
|
4437
|
-
/**
|
4438
|
-
*
|
4439
|
-
*/
|
4440
|
-
set y(y) {
|
4441
|
-
this.setProperty('y', y);
|
4442
|
-
}
|
4443
|
-
/**
|
4444
|
-
*
|
4445
|
-
*/
|
4446
|
-
get zIndex() {
|
4447
|
-
return this.getPropertyValue('z-index');
|
4448
|
-
}
|
4449
|
-
/**
|
4450
|
-
*
|
4451
|
-
*/
|
4452
|
-
set zIndex(zIndex) {
|
4453
|
-
this.setProperty('z-index', zIndex);
|
4454
|
-
}
|
4455
|
-
/**
|
4456
|
-
*
|
4457
|
-
*/
|
4458
|
-
get zoom() {
|
4459
|
-
return this.getPropertyValue('zoom');
|
4460
|
-
}
|
4461
|
-
/**
|
4462
|
-
*
|
4463
|
-
*/
|
4464
|
-
set zoom(zoom) {
|
4465
|
-
this.setProperty('zoom', zoom);
|
4466
|
-
}
|
4467
|
-
/**
|
4468
|
-
* Returns the style decleration as a CSS text.
|
4469
|
-
*
|
4470
|
-
* @returns CSS text.
|
4471
|
-
*/
|
4472
|
-
get cssText() {
|
4473
|
-
const style = this._attributes['style'];
|
4474
|
-
if (style && style.value) {
|
4475
|
-
return style.value;
|
4476
|
-
}
|
4477
|
-
return '';
|
4478
|
-
}
|
4479
|
-
/**
|
4480
|
-
* Sets CSS text.
|
4481
|
-
*
|
4482
|
-
* @param cssText CSS text.
|
4483
|
-
*/
|
4484
|
-
set cssText(cssText) {
|
4485
|
-
if (cssText) {
|
4486
|
-
if (!this._attributes['style']) {
|
4487
|
-
this._attributes['style'] = new Attr_1.default();
|
4488
|
-
this._attributes['style'].name = 'style';
|
4489
|
-
}
|
4490
|
-
const parts = cssText.split(';');
|
4491
|
-
const newStyle = [];
|
4492
|
-
let index = 0;
|
4493
|
-
for (let i = 0; i < this.length; i++) {
|
4494
|
-
delete this[i];
|
4495
|
-
}
|
4496
|
-
for (const part of parts) {
|
4497
|
-
if (part) {
|
4498
|
-
const [name, value] = part.trim().split(':');
|
4499
|
-
if (value) {
|
4500
|
-
newStyle.push(`${name}: ${value.trim()};`);
|
4501
|
-
}
|
4502
|
-
else {
|
4503
|
-
newStyle.push(name);
|
4504
|
-
}
|
4505
|
-
this[index] = name;
|
4506
|
-
index++;
|
4507
|
-
}
|
4508
|
-
}
|
4509
|
-
this.length = index;
|
4510
|
-
this._attributes['style'].value = newStyle.join(' ');
|
4511
|
-
}
|
4512
|
-
else {
|
4513
|
-
delete this._attributes['style'];
|
4514
|
-
for (let i = 0; i < this.length; i++) {
|
4515
|
-
delete this[i];
|
4516
|
-
}
|
4517
|
-
this.length = 0;
|
4518
|
-
}
|
4519
|
-
}
|
4520
|
-
/**
|
4521
|
-
* Returns item.
|
4522
|
-
*
|
4523
|
-
* @param index Index.
|
4524
|
-
* @returns Item.
|
4525
|
-
*/
|
4526
|
-
item(index) {
|
4527
|
-
return this[index] || '';
|
4528
|
-
}
|
4529
|
-
/**
|
4530
|
-
* Set a property.
|
4531
|
-
*
|
4532
|
-
* @param propertyName Property name.
|
4533
|
-
* @param value Value. Must not contain "!important" as that should be set using the priority parameter.
|
4534
|
-
* @param [priority] Can be "important", or an empty string.
|
4535
|
-
*/
|
4536
|
-
setProperty(propertyName, value, priority = '') {
|
4537
|
-
if (!value) {
|
4538
|
-
this.removeProperty(propertyName);
|
4539
|
-
return;
|
4540
|
-
}
|
4541
|
-
if (!this._attributes['style']) {
|
4542
|
-
this._attributes['style'] = new Attr_1.default();
|
4543
|
-
this._attributes['style'].name = 'style';
|
4544
|
-
}
|
4545
|
-
const style = this._attributes['style'];
|
4546
|
-
const newStyle = [];
|
4547
|
-
let index = 0;
|
4548
|
-
let isExisting = false;
|
4549
|
-
if (style && style.value) {
|
4550
|
-
const parts = style.value.split(';');
|
4551
|
-
for (const part of parts) {
|
4552
|
-
if (part) {
|
4553
|
-
const [name, existingValue] = part.trim().split(':');
|
4554
|
-
if (name === propertyName) {
|
4555
|
-
newStyle.push(`${name}: ${value};`);
|
4556
|
-
isExisting = true;
|
4557
|
-
}
|
4558
|
-
else if (existingValue) {
|
4559
|
-
newStyle.push(`${name}: ${existingValue.trim()};`);
|
4560
|
-
}
|
4561
|
-
else {
|
4562
|
-
newStyle.push(`${name};`);
|
4563
|
-
}
|
4564
|
-
this[index] = name;
|
4565
|
-
index++;
|
4566
|
-
}
|
4567
|
-
}
|
4568
|
-
}
|
4569
|
-
if (!isExisting) {
|
4570
|
-
newStyle.push(`${propertyName}: ${value}${priority ? '' + priority : ''};`);
|
4571
|
-
this[index] = propertyName;
|
4572
|
-
index++;
|
4573
|
-
}
|
4574
|
-
this._attributes['style'].value = newStyle.join(' ');
|
4575
|
-
this.length = index;
|
4576
|
-
}
|
4577
|
-
/**
|
4578
|
-
* Removes a property.
|
4579
|
-
*
|
4580
|
-
* @param propertyName Property name in kebab case.
|
4581
|
-
* @param value Value. Must not contain "!important" as that should be set using the priority parameter.
|
4582
|
-
* @param [priority] Can be "important", or an empty string.
|
4583
|
-
*/
|
4584
|
-
removeProperty(propertyName) {
|
4585
|
-
const style = this._attributes['style'];
|
4586
|
-
const newStyle = [];
|
4587
|
-
let hasProperty = false;
|
4588
|
-
let index = 0;
|
4589
|
-
if (style && style.value) {
|
4590
|
-
const parts = style.value.split(';');
|
4591
|
-
for (const part of parts) {
|
4592
|
-
if (part) {
|
4593
|
-
const [name, value] = part.trim().split(':');
|
4594
|
-
if (name !== propertyName) {
|
4595
|
-
newStyle.push(`${name}: ${value.trim()};`);
|
4596
|
-
this[index] = name;
|
4597
|
-
index++;
|
4598
|
-
hasProperty = true;
|
4599
|
-
}
|
4600
|
-
}
|
4601
|
-
}
|
4602
|
-
}
|
4603
|
-
if (newStyle.length) {
|
4604
|
-
this._attributes['style'].value = newStyle.join(' ');
|
4605
|
-
}
|
4606
|
-
else {
|
4607
|
-
delete this._attributes['style'];
|
4608
|
-
}
|
4609
|
-
if (hasProperty) {
|
4610
|
-
delete this[index];
|
4611
|
-
}
|
4612
|
-
this.length = index;
|
4613
|
-
}
|
4614
|
-
/**
|
4615
|
-
* Returns a property.
|
4616
|
-
*
|
4617
|
-
* @param propertyName Property name in kebab case.
|
4618
|
-
* @returns Property value.
|
4619
|
-
*/
|
4620
|
-
getPropertyValue(propertyName) {
|
4621
|
-
if (this._computedStyleElement && !this._computedStyleElement.isConnected) {
|
4622
|
-
return '';
|
4623
|
-
}
|
4624
|
-
const style = this._attributes['style'];
|
4625
|
-
if (style && style.value) {
|
4626
|
-
const parts = style.value.split(';');
|
4627
|
-
for (const part of parts) {
|
4628
|
-
if (part) {
|
4629
|
-
const [name, value] = part.trim().split(':');
|
4630
|
-
if (name === propertyName) {
|
4631
|
-
if (!value) {
|
4632
|
-
return '';
|
4633
|
-
}
|
4634
|
-
return value.trim();
|
4635
|
-
}
|
4636
|
-
}
|
4637
|
-
}
|
4638
|
-
}
|
4639
|
-
return '';
|
4640
|
-
}
|
4641
|
-
}
|
4642
|
-
exports.default = CSSStyleDeclaration;
|
4643
|
-
//# sourceMappingURL=CSSStyleDeclaration.js.map
|