Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: client/base/Css.dart

Issue 8360025: Move the individual property definitions from client/base/Css to CSSStyleDeclaration. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/base/AnimationScheduler.dart ('k') | client/base/base.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit.
6 // This file was generated by base/scripts/css_code_generator.py
7
8 // Source of CSS properties:
9 // Source/WebCore/css/CSSPropertyNames.in
10
11 // TODO(jacobr): add versions that take numeric values in px, miliseconds, etc.
12
13 /**
14 * Browser neutral and typesafe class for setting CSS styles from Dart.
15 * This class smoothes over browser differences.
16 */
17 class Css {
18 static String _cachedBrowserPrefix;
19
20 final CSSStyleDeclaration raw;
21 Css(CSSStyleDeclaration this.raw) { }
22
23 static String get _browserPrefix() {
24 if (_cachedBrowserPrefix === null) {
25 if (Device.isFirefox) {
26 _cachedBrowserPrefix = '-moz-';
27 } else {
28 _cachedBrowserPrefix = '-webkit-';
29 }
30 // TODO(jacobr): support IE 9.0 and Opera as well.
31 }
32 return _cachedBrowserPrefix;
33 }
34
35 /** Gets the value of "animation" */
36 static String getAnimation(CSSStyleDeclaration style) {
37 return style.getPropertyValue('${_browserPrefix}animation');
38 }
39
40 /** Sets the value of "animation" */
41 static void setAnimation(CSSStyleDeclaration style, String value) {
42 style.setProperty('${_browserPrefix}animation', value, '');
43 }
44
45 /** Gets the value of "animation-delay" */
46 static String getAnimationDelay(CSSStyleDeclaration style) {
47 return style.getPropertyValue('${_browserPrefix}animation-delay');
48 }
49
50 /** Sets the value of "animation-delay" */
51 static void setAnimationDelay(CSSStyleDeclaration style, String value) {
52 style.setProperty('${_browserPrefix}animation-delay', value, '');
53 }
54
55 /** Gets the value of "animation-direction" */
56 static String getAnimationDirection(CSSStyleDeclaration style) {
57 return style.getPropertyValue('${_browserPrefix}animation-direction');
58 }
59
60 /** Sets the value of "animation-direction" */
61 static void setAnimationDirection(CSSStyleDeclaration style, String value) {
62 style.setProperty('${_browserPrefix}animation-direction', value, '');
63 }
64
65 /** Gets the value of "animation-duration" */
66 static String getAnimationDuration(CSSStyleDeclaration style) {
67 return style.getPropertyValue('${_browserPrefix}animation-duration');
68 }
69
70 /** Sets the value of "animation-duration" */
71 static void setAnimationDuration(CSSStyleDeclaration style, String value) {
72 style.setProperty('${_browserPrefix}animation-duration', value, '');
73 }
74
75 /** Gets the value of "animation-fill-mode" */
76 static String getAnimationFillMode(CSSStyleDeclaration style) {
77 return style.getPropertyValue('${_browserPrefix}animation-fill-mode');
78 }
79
80 /** Sets the value of "animation-fill-mode" */
81 static void setAnimationFillMode(CSSStyleDeclaration style, String value) {
82 style.setProperty('${_browserPrefix}animation-fill-mode', value, '');
83 }
84
85 /** Gets the value of "animation-iteration-count" */
86 static String getAnimationIterationCount(CSSStyleDeclaration style) {
87 return style.getPropertyValue('${_browserPrefix}animation-iteration-count');
88 }
89
90 /** Sets the value of "animation-iteration-count" */
91 static void setAnimationIterationCount(CSSStyleDeclaration style, String value ) {
92 style.setProperty('${_browserPrefix}animation-iteration-count', value, '');
93 }
94
95 /** Gets the value of "animation-name" */
96 static String getAnimationName(CSSStyleDeclaration style) {
97 return style.getPropertyValue('${_browserPrefix}animation-name');
98 }
99
100 /** Sets the value of "animation-name" */
101 static void setAnimationName(CSSStyleDeclaration style, String value) {
102 style.setProperty('${_browserPrefix}animation-name', value, '');
103 }
104
105 /** Gets the value of "animation-play-state" */
106 static String getAnimationPlayState(CSSStyleDeclaration style) {
107 return style.getPropertyValue('${_browserPrefix}animation-play-state');
108 }
109
110 /** Sets the value of "animation-play-state" */
111 static void setAnimationPlayState(CSSStyleDeclaration style, String value) {
112 style.setProperty('${_browserPrefix}animation-play-state', value, '');
113 }
114
115 /** Gets the value of "animation-timing-function" */
116 static String getAnimationTimingFunction(CSSStyleDeclaration style) {
117 return style.getPropertyValue('${_browserPrefix}animation-timing-function');
118 }
119
120 /** Sets the value of "animation-timing-function" */
121 static void setAnimationTimingFunction(CSSStyleDeclaration style, String value ) {
122 style.setProperty('${_browserPrefix}animation-timing-function', value, '');
123 }
124
125 /** Gets the value of "appearance" */
126 static String getAppearance(CSSStyleDeclaration style) {
127 return style.getPropertyValue('${_browserPrefix}appearance');
128 }
129
130 /** Sets the value of "appearance" */
131 static void setAppearance(CSSStyleDeclaration style, String value) {
132 style.setProperty('${_browserPrefix}appearance', value, '');
133 }
134
135 /** Gets the value of "backface-visibility" */
136 static String getBackfaceVisibility(CSSStyleDeclaration style) {
137 return style.getPropertyValue('${_browserPrefix}backface-visibility');
138 }
139
140 /** Sets the value of "backface-visibility" */
141 static void setBackfaceVisibility(CSSStyleDeclaration style, String value) {
142 style.setProperty('${_browserPrefix}backface-visibility', value, '');
143 }
144
145 /** Gets the value of "background" */
146 static String getBackground(CSSStyleDeclaration style) {
147 return style.getPropertyValue('background');
148 }
149
150 /** Sets the value of "background" */
151 static void setBackground(CSSStyleDeclaration style, String value) {
152 style.setProperty('background', value, '');
153 }
154
155 /** Gets the value of "background-attachment" */
156 static String getBackgroundAttachment(CSSStyleDeclaration style) {
157 return style.getPropertyValue('background-attachment');
158 }
159
160 /** Sets the value of "background-attachment" */
161 static void setBackgroundAttachment(CSSStyleDeclaration style, String value) {
162 style.setProperty('background-attachment', value, '');
163 }
164
165 /** Gets the value of "background-clip" */
166 static String getBackgroundClip(CSSStyleDeclaration style) {
167 return style.getPropertyValue('background-clip');
168 }
169
170 /** Sets the value of "background-clip" */
171 static void setBackgroundClip(CSSStyleDeclaration style, String value) {
172 style.setProperty('background-clip', value, '');
173 }
174
175 /** Gets the value of "background-color" */
176 static String getBackgroundColor(CSSStyleDeclaration style) {
177 return style.getPropertyValue('background-color');
178 }
179
180 /** Sets the value of "background-color" */
181 static void setBackgroundColor(CSSStyleDeclaration style, String value) {
182 style.setProperty('background-color', value, '');
183 }
184
185 /** Gets the value of "background-composite" */
186 static String getBackgroundComposite(CSSStyleDeclaration style) {
187 return style.getPropertyValue('${_browserPrefix}background-composite');
188 }
189
190 /** Sets the value of "background-composite" */
191 static void setBackgroundComposite(CSSStyleDeclaration style, String value) {
192 style.setProperty('${_browserPrefix}background-composite', value, '');
193 }
194
195 /** Gets the value of "background-image" */
196 static String getBackgroundImage(CSSStyleDeclaration style) {
197 return style.getPropertyValue('background-image');
198 }
199
200 /** Sets the value of "background-image" */
201 static void setBackgroundImage(CSSStyleDeclaration style, String value) {
202 style.setProperty('background-image', value, '');
203 }
204
205 /** Gets the value of "background-origin" */
206 static String getBackgroundOrigin(CSSStyleDeclaration style) {
207 return style.getPropertyValue('background-origin');
208 }
209
210 /** Sets the value of "background-origin" */
211 static void setBackgroundOrigin(CSSStyleDeclaration style, String value) {
212 style.setProperty('background-origin', value, '');
213 }
214
215 /** Gets the value of "background-position" */
216 static String getBackgroundPosition(CSSStyleDeclaration style) {
217 return style.getPropertyValue('background-position');
218 }
219
220 /** Sets the value of "background-position" */
221 static void setBackgroundPosition(CSSStyleDeclaration style, String value) {
222 style.setProperty('background-position', value, '');
223 }
224
225 /** Gets the value of "background-position-x" */
226 static String getBackgroundPositionX(CSSStyleDeclaration style) {
227 return style.getPropertyValue('background-position-x');
228 }
229
230 /** Sets the value of "background-position-x" */
231 static void setBackgroundPositionX(CSSStyleDeclaration style, String value) {
232 style.setProperty('background-position-x', value, '');
233 }
234
235 /** Gets the value of "background-position-y" */
236 static String getBackgroundPositionY(CSSStyleDeclaration style) {
237 return style.getPropertyValue('background-position-y');
238 }
239
240 /** Sets the value of "background-position-y" */
241 static void setBackgroundPositionY(CSSStyleDeclaration style, String value) {
242 style.setProperty('background-position-y', value, '');
243 }
244
245 /** Gets the value of "background-repeat" */
246 static String getBackgroundRepeat(CSSStyleDeclaration style) {
247 return style.getPropertyValue('background-repeat');
248 }
249
250 /** Sets the value of "background-repeat" */
251 static void setBackgroundRepeat(CSSStyleDeclaration style, String value) {
252 style.setProperty('background-repeat', value, '');
253 }
254
255 /** Gets the value of "background-repeat-x" */
256 static String getBackgroundRepeatX(CSSStyleDeclaration style) {
257 return style.getPropertyValue('background-repeat-x');
258 }
259
260 /** Sets the value of "background-repeat-x" */
261 static void setBackgroundRepeatX(CSSStyleDeclaration style, String value) {
262 style.setProperty('background-repeat-x', value, '');
263 }
264
265 /** Gets the value of "background-repeat-y" */
266 static String getBackgroundRepeatY(CSSStyleDeclaration style) {
267 return style.getPropertyValue('background-repeat-y');
268 }
269
270 /** Sets the value of "background-repeat-y" */
271 static void setBackgroundRepeatY(CSSStyleDeclaration style, String value) {
272 style.setProperty('background-repeat-y', value, '');
273 }
274
275 /** Gets the value of "background-size" */
276 static String getBackgroundSize(CSSStyleDeclaration style) {
277 return style.getPropertyValue('background-size');
278 }
279
280 /** Sets the value of "background-size" */
281 static void setBackgroundSize(CSSStyleDeclaration style, String value) {
282 style.setProperty('background-size', value, '');
283 }
284
285 /** Gets the value of "border" */
286 static String getBorder(CSSStyleDeclaration style) {
287 return style.getPropertyValue('border');
288 }
289
290 /** Sets the value of "border" */
291 static void setBorder(CSSStyleDeclaration style, String value) {
292 style.setProperty('border', value, '');
293 }
294
295 /** Gets the value of "border-after" */
296 static String getBorderAfter(CSSStyleDeclaration style) {
297 return style.getPropertyValue('${_browserPrefix}border-after');
298 }
299
300 /** Sets the value of "border-after" */
301 static void setBorderAfter(CSSStyleDeclaration style, String value) {
302 style.setProperty('${_browserPrefix}border-after', value, '');
303 }
304
305 /** Gets the value of "border-after-color" */
306 static String getBorderAfterColor(CSSStyleDeclaration style) {
307 return style.getPropertyValue('${_browserPrefix}border-after-color');
308 }
309
310 /** Sets the value of "border-after-color" */
311 static void setBorderAfterColor(CSSStyleDeclaration style, String value) {
312 style.setProperty('${_browserPrefix}border-after-color', value, '');
313 }
314
315 /** Gets the value of "border-after-style" */
316 static String getBorderAfterStyle(CSSStyleDeclaration style) {
317 return style.getPropertyValue('${_browserPrefix}border-after-style');
318 }
319
320 /** Sets the value of "border-after-style" */
321 static void setBorderAfterStyle(CSSStyleDeclaration style, String value) {
322 style.setProperty('${_browserPrefix}border-after-style', value, '');
323 }
324
325 /** Gets the value of "border-after-width" */
326 static String getBorderAfterWidth(CSSStyleDeclaration style) {
327 return style.getPropertyValue('${_browserPrefix}border-after-width');
328 }
329
330 /** Sets the value of "border-after-width" */
331 static void setBorderAfterWidth(CSSStyleDeclaration style, String value) {
332 style.setProperty('${_browserPrefix}border-after-width', value, '');
333 }
334
335 /** Gets the value of "border-before" */
336 static String getBorderBefore(CSSStyleDeclaration style) {
337 return style.getPropertyValue('${_browserPrefix}border-before');
338 }
339
340 /** Sets the value of "border-before" */
341 static void setBorderBefore(CSSStyleDeclaration style, String value) {
342 style.setProperty('${_browserPrefix}border-before', value, '');
343 }
344
345 /** Gets the value of "border-before-color" */
346 static String getBorderBeforeColor(CSSStyleDeclaration style) {
347 return style.getPropertyValue('${_browserPrefix}border-before-color');
348 }
349
350 /** Sets the value of "border-before-color" */
351 static void setBorderBeforeColor(CSSStyleDeclaration style, String value) {
352 style.setProperty('${_browserPrefix}border-before-color', value, '');
353 }
354
355 /** Gets the value of "border-before-style" */
356 static String getBorderBeforeStyle(CSSStyleDeclaration style) {
357 return style.getPropertyValue('${_browserPrefix}border-before-style');
358 }
359
360 /** Sets the value of "border-before-style" */
361 static void setBorderBeforeStyle(CSSStyleDeclaration style, String value) {
362 style.setProperty('${_browserPrefix}border-before-style', value, '');
363 }
364
365 /** Gets the value of "border-before-width" */
366 static String getBorderBeforeWidth(CSSStyleDeclaration style) {
367 return style.getPropertyValue('${_browserPrefix}border-before-width');
368 }
369
370 /** Sets the value of "border-before-width" */
371 static void setBorderBeforeWidth(CSSStyleDeclaration style, String value) {
372 style.setProperty('${_browserPrefix}border-before-width', value, '');
373 }
374
375 /** Gets the value of "border-bottom" */
376 static String getBorderBottom(CSSStyleDeclaration style) {
377 return style.getPropertyValue('border-bottom');
378 }
379
380 /** Sets the value of "border-bottom" */
381 static void setBorderBottom(CSSStyleDeclaration style, String value) {
382 style.setProperty('border-bottom', value, '');
383 }
384
385 /** Gets the value of "border-bottom-color" */
386 static String getBorderBottomColor(CSSStyleDeclaration style) {
387 return style.getPropertyValue('border-bottom-color');
388 }
389
390 /** Sets the value of "border-bottom-color" */
391 static void setBorderBottomColor(CSSStyleDeclaration style, String value) {
392 style.setProperty('border-bottom-color', value, '');
393 }
394
395 /** Gets the value of "border-bottom-left-radius" */
396 static String getBorderBottomLeftRadius(CSSStyleDeclaration style) {
397 return style.getPropertyValue('border-bottom-left-radius');
398 }
399
400 /** Sets the value of "border-bottom-left-radius" */
401 static void setBorderBottomLeftRadius(CSSStyleDeclaration style, String value) {
402 style.setProperty('border-bottom-left-radius', value, '');
403 }
404
405 /** Gets the value of "border-bottom-right-radius" */
406 static String getBorderBottomRightRadius(CSSStyleDeclaration style) {
407 return style.getPropertyValue('border-bottom-right-radius');
408 }
409
410 /** Sets the value of "border-bottom-right-radius" */
411 static void setBorderBottomRightRadius(CSSStyleDeclaration style, String value ) {
412 style.setProperty('border-bottom-right-radius', value, '');
413 }
414
415 /** Gets the value of "border-bottom-style" */
416 static String getBorderBottomStyle(CSSStyleDeclaration style) {
417 return style.getPropertyValue('border-bottom-style');
418 }
419
420 /** Sets the value of "border-bottom-style" */
421 static void setBorderBottomStyle(CSSStyleDeclaration style, String value) {
422 style.setProperty('border-bottom-style', value, '');
423 }
424
425 /** Gets the value of "border-bottom-width" */
426 static String getBorderBottomWidth(CSSStyleDeclaration style) {
427 return style.getPropertyValue('border-bottom-width');
428 }
429
430 /** Sets the value of "border-bottom-width" */
431 static void setBorderBottomWidth(CSSStyleDeclaration style, String value) {
432 style.setProperty('border-bottom-width', value, '');
433 }
434
435 /** Gets the value of "border-collapse" */
436 static String getBorderCollapse(CSSStyleDeclaration style) {
437 return style.getPropertyValue('border-collapse');
438 }
439
440 /** Sets the value of "border-collapse" */
441 static void setBorderCollapse(CSSStyleDeclaration style, String value) {
442 style.setProperty('border-collapse', value, '');
443 }
444
445 /** Gets the value of "border-color" */
446 static String getBorderColor(CSSStyleDeclaration style) {
447 return style.getPropertyValue('border-color');
448 }
449
450 /** Sets the value of "border-color" */
451 static void setBorderColor(CSSStyleDeclaration style, String value) {
452 style.setProperty('border-color', value, '');
453 }
454
455 /** Gets the value of "border-end" */
456 static String getBorderEnd(CSSStyleDeclaration style) {
457 return style.getPropertyValue('${_browserPrefix}border-end');
458 }
459
460 /** Sets the value of "border-end" */
461 static void setBorderEnd(CSSStyleDeclaration style, String value) {
462 style.setProperty('${_browserPrefix}border-end', value, '');
463 }
464
465 /** Gets the value of "border-end-color" */
466 static String getBorderEndColor(CSSStyleDeclaration style) {
467 return style.getPropertyValue('${_browserPrefix}border-end-color');
468 }
469
470 /** Sets the value of "border-end-color" */
471 static void setBorderEndColor(CSSStyleDeclaration style, String value) {
472 style.setProperty('${_browserPrefix}border-end-color', value, '');
473 }
474
475 /** Gets the value of "border-end-style" */
476 static String getBorderEndStyle(CSSStyleDeclaration style) {
477 return style.getPropertyValue('${_browserPrefix}border-end-style');
478 }
479
480 /** Sets the value of "border-end-style" */
481 static void setBorderEndStyle(CSSStyleDeclaration style, String value) {
482 style.setProperty('${_browserPrefix}border-end-style', value, '');
483 }
484
485 /** Gets the value of "border-end-width" */
486 static String getBorderEndWidth(CSSStyleDeclaration style) {
487 return style.getPropertyValue('${_browserPrefix}border-end-width');
488 }
489
490 /** Sets the value of "border-end-width" */
491 static void setBorderEndWidth(CSSStyleDeclaration style, String value) {
492 style.setProperty('${_browserPrefix}border-end-width', value, '');
493 }
494
495 /** Gets the value of "border-fit" */
496 static String getBorderFit(CSSStyleDeclaration style) {
497 return style.getPropertyValue('${_browserPrefix}border-fit');
498 }
499
500 /** Sets the value of "border-fit" */
501 static void setBorderFit(CSSStyleDeclaration style, String value) {
502 style.setProperty('${_browserPrefix}border-fit', value, '');
503 }
504
505 /** Gets the value of "border-horizontal-spacing" */
506 static String getBorderHorizontalSpacing(CSSStyleDeclaration style) {
507 return style.getPropertyValue('${_browserPrefix}border-horizontal-spacing');
508 }
509
510 /** Sets the value of "border-horizontal-spacing" */
511 static void setBorderHorizontalSpacing(CSSStyleDeclaration style, String value ) {
512 style.setProperty('${_browserPrefix}border-horizontal-spacing', value, '');
513 }
514
515 /** Gets the value of "border-image" */
516 static String getBorderImage(CSSStyleDeclaration style) {
517 return style.getPropertyValue('border-image');
518 }
519
520 /** Sets the value of "border-image" */
521 static void setBorderImage(CSSStyleDeclaration style, String value) {
522 style.setProperty('border-image', value, '');
523 }
524
525 /** Gets the value of "border-image-outset" */
526 static String getBorderImageOutset(CSSStyleDeclaration style) {
527 return style.getPropertyValue('border-image-outset');
528 }
529
530 /** Sets the value of "border-image-outset" */
531 static void setBorderImageOutset(CSSStyleDeclaration style, String value) {
532 style.setProperty('border-image-outset', value, '');
533 }
534
535 /** Gets the value of "border-image-repeat" */
536 static String getBorderImageRepeat(CSSStyleDeclaration style) {
537 return style.getPropertyValue('border-image-repeat');
538 }
539
540 /** Sets the value of "border-image-repeat" */
541 static void setBorderImageRepeat(CSSStyleDeclaration style, String value) {
542 style.setProperty('border-image-repeat', value, '');
543 }
544
545 /** Gets the value of "border-image-slice" */
546 static String getBorderImageSlice(CSSStyleDeclaration style) {
547 return style.getPropertyValue('border-image-slice');
548 }
549
550 /** Sets the value of "border-image-slice" */
551 static void setBorderImageSlice(CSSStyleDeclaration style, String value) {
552 style.setProperty('border-image-slice', value, '');
553 }
554
555 /** Gets the value of "border-image-source" */
556 static String getBorderImageSource(CSSStyleDeclaration style) {
557 return style.getPropertyValue('border-image-source');
558 }
559
560 /** Sets the value of "border-image-source" */
561 static void setBorderImageSource(CSSStyleDeclaration style, String value) {
562 style.setProperty('border-image-source', value, '');
563 }
564
565 /** Gets the value of "border-image-width" */
566 static String getBorderImageWidth(CSSStyleDeclaration style) {
567 return style.getPropertyValue('border-image-width');
568 }
569
570 /** Sets the value of "border-image-width" */
571 static void setBorderImageWidth(CSSStyleDeclaration style, String value) {
572 style.setProperty('border-image-width', value, '');
573 }
574
575 /** Gets the value of "border-left" */
576 static String getBorderLeft(CSSStyleDeclaration style) {
577 return style.getPropertyValue('border-left');
578 }
579
580 /** Sets the value of "border-left" */
581 static void setBorderLeft(CSSStyleDeclaration style, String value) {
582 style.setProperty('border-left', value, '');
583 }
584
585 /** Gets the value of "border-left-color" */
586 static String getBorderLeftColor(CSSStyleDeclaration style) {
587 return style.getPropertyValue('border-left-color');
588 }
589
590 /** Sets the value of "border-left-color" */
591 static void setBorderLeftColor(CSSStyleDeclaration style, String value) {
592 style.setProperty('border-left-color', value, '');
593 }
594
595 /** Gets the value of "border-left-style" */
596 static String getBorderLeftStyle(CSSStyleDeclaration style) {
597 return style.getPropertyValue('border-left-style');
598 }
599
600 /** Sets the value of "border-left-style" */
601 static void setBorderLeftStyle(CSSStyleDeclaration style, String value) {
602 style.setProperty('border-left-style', value, '');
603 }
604
605 /** Gets the value of "border-left-width" */
606 static String getBorderLeftWidth(CSSStyleDeclaration style) {
607 return style.getPropertyValue('border-left-width');
608 }
609
610 /** Sets the value of "border-left-width" */
611 static void setBorderLeftWidth(CSSStyleDeclaration style, String value) {
612 style.setProperty('border-left-width', value, '');
613 }
614
615 /** Gets the value of "border-radius" */
616 static String getBorderRadius(CSSStyleDeclaration style) {
617 return style.getPropertyValue('border-radius');
618 }
619
620 /** Sets the value of "border-radius" */
621 static void setBorderRadius(CSSStyleDeclaration style, String value) {
622 style.setProperty('border-radius', value, '');
623 }
624
625 /** Gets the value of "border-right" */
626 static String getBorderRight(CSSStyleDeclaration style) {
627 return style.getPropertyValue('border-right');
628 }
629
630 /** Sets the value of "border-right" */
631 static void setBorderRight(CSSStyleDeclaration style, String value) {
632 style.setProperty('border-right', value, '');
633 }
634
635 /** Gets the value of "border-right-color" */
636 static String getBorderRightColor(CSSStyleDeclaration style) {
637 return style.getPropertyValue('border-right-color');
638 }
639
640 /** Sets the value of "border-right-color" */
641 static void setBorderRightColor(CSSStyleDeclaration style, String value) {
642 style.setProperty('border-right-color', value, '');
643 }
644
645 /** Gets the value of "border-right-style" */
646 static String getBorderRightStyle(CSSStyleDeclaration style) {
647 return style.getPropertyValue('border-right-style');
648 }
649
650 /** Sets the value of "border-right-style" */
651 static void setBorderRightStyle(CSSStyleDeclaration style, String value) {
652 style.setProperty('border-right-style', value, '');
653 }
654
655 /** Gets the value of "border-right-width" */
656 static String getBorderRightWidth(CSSStyleDeclaration style) {
657 return style.getPropertyValue('border-right-width');
658 }
659
660 /** Sets the value of "border-right-width" */
661 static void setBorderRightWidth(CSSStyleDeclaration style, String value) {
662 style.setProperty('border-right-width', value, '');
663 }
664
665 /** Gets the value of "border-spacing" */
666 static String getBorderSpacing(CSSStyleDeclaration style) {
667 return style.getPropertyValue('border-spacing');
668 }
669
670 /** Sets the value of "border-spacing" */
671 static void setBorderSpacing(CSSStyleDeclaration style, String value) {
672 style.setProperty('border-spacing', value, '');
673 }
674
675 /** Gets the value of "border-start" */
676 static String getBorderStart(CSSStyleDeclaration style) {
677 return style.getPropertyValue('${_browserPrefix}border-start');
678 }
679
680 /** Sets the value of "border-start" */
681 static void setBorderStart(CSSStyleDeclaration style, String value) {
682 style.setProperty('${_browserPrefix}border-start', value, '');
683 }
684
685 /** Gets the value of "border-start-color" */
686 static String getBorderStartColor(CSSStyleDeclaration style) {
687 return style.getPropertyValue('${_browserPrefix}border-start-color');
688 }
689
690 /** Sets the value of "border-start-color" */
691 static void setBorderStartColor(CSSStyleDeclaration style, String value) {
692 style.setProperty('${_browserPrefix}border-start-color', value, '');
693 }
694
695 /** Gets the value of "border-start-style" */
696 static String getBorderStartStyle(CSSStyleDeclaration style) {
697 return style.getPropertyValue('${_browserPrefix}border-start-style');
698 }
699
700 /** Sets the value of "border-start-style" */
701 static void setBorderStartStyle(CSSStyleDeclaration style, String value) {
702 style.setProperty('${_browserPrefix}border-start-style', value, '');
703 }
704
705 /** Gets the value of "border-start-width" */
706 static String getBorderStartWidth(CSSStyleDeclaration style) {
707 return style.getPropertyValue('${_browserPrefix}border-start-width');
708 }
709
710 /** Sets the value of "border-start-width" */
711 static void setBorderStartWidth(CSSStyleDeclaration style, String value) {
712 style.setProperty('${_browserPrefix}border-start-width', value, '');
713 }
714
715 /** Gets the value of "border-style" */
716 static String getBorderStyle(CSSStyleDeclaration style) {
717 return style.getPropertyValue('border-style');
718 }
719
720 /** Sets the value of "border-style" */
721 static void setBorderStyle(CSSStyleDeclaration style, String value) {
722 style.setProperty('border-style', value, '');
723 }
724
725 /** Gets the value of "border-top" */
726 static String getBorderTop(CSSStyleDeclaration style) {
727 return style.getPropertyValue('border-top');
728 }
729
730 /** Sets the value of "border-top" */
731 static void setBorderTop(CSSStyleDeclaration style, String value) {
732 style.setProperty('border-top', value, '');
733 }
734
735 /** Gets the value of "border-top-color" */
736 static String getBorderTopColor(CSSStyleDeclaration style) {
737 return style.getPropertyValue('border-top-color');
738 }
739
740 /** Sets the value of "border-top-color" */
741 static void setBorderTopColor(CSSStyleDeclaration style, String value) {
742 style.setProperty('border-top-color', value, '');
743 }
744
745 /** Gets the value of "border-top-left-radius" */
746 static String getBorderTopLeftRadius(CSSStyleDeclaration style) {
747 return style.getPropertyValue('border-top-left-radius');
748 }
749
750 /** Sets the value of "border-top-left-radius" */
751 static void setBorderTopLeftRadius(CSSStyleDeclaration style, String value) {
752 style.setProperty('border-top-left-radius', value, '');
753 }
754
755 /** Gets the value of "border-top-right-radius" */
756 static String getBorderTopRightRadius(CSSStyleDeclaration style) {
757 return style.getPropertyValue('border-top-right-radius');
758 }
759
760 /** Sets the value of "border-top-right-radius" */
761 static void setBorderTopRightRadius(CSSStyleDeclaration style, String value) {
762 style.setProperty('border-top-right-radius', value, '');
763 }
764
765 /** Gets the value of "border-top-style" */
766 static String getBorderTopStyle(CSSStyleDeclaration style) {
767 return style.getPropertyValue('border-top-style');
768 }
769
770 /** Sets the value of "border-top-style" */
771 static void setBorderTopStyle(CSSStyleDeclaration style, String value) {
772 style.setProperty('border-top-style', value, '');
773 }
774
775 /** Gets the value of "border-top-width" */
776 static String getBorderTopWidth(CSSStyleDeclaration style) {
777 return style.getPropertyValue('border-top-width');
778 }
779
780 /** Sets the value of "border-top-width" */
781 static void setBorderTopWidth(CSSStyleDeclaration style, String value) {
782 style.setProperty('border-top-width', value, '');
783 }
784
785 /** Gets the value of "border-vertical-spacing" */
786 static String getBorderVerticalSpacing(CSSStyleDeclaration style) {
787 return style.getPropertyValue('${_browserPrefix}border-vertical-spacing');
788 }
789
790 /** Sets the value of "border-vertical-spacing" */
791 static void setBorderVerticalSpacing(CSSStyleDeclaration style, String value) {
792 style.setProperty('${_browserPrefix}border-vertical-spacing', value, '');
793 }
794
795 /** Gets the value of "border-width" */
796 static String getBorderWidth(CSSStyleDeclaration style) {
797 return style.getPropertyValue('border-width');
798 }
799
800 /** Sets the value of "border-width" */
801 static void setBorderWidth(CSSStyleDeclaration style, String value) {
802 style.setProperty('border-width', value, '');
803 }
804
805 /** Gets the value of "bottom" */
806 static String getBottom(CSSStyleDeclaration style) {
807 return style.getPropertyValue('bottom');
808 }
809
810 /** Sets the value of "bottom" */
811 static void setBottom(CSSStyleDeclaration style, String value) {
812 style.setProperty('bottom', value, '');
813 }
814
815 /** Gets the value of "box-align" */
816 static String getBoxAlign(CSSStyleDeclaration style) {
817 return style.getPropertyValue('${_browserPrefix}box-align');
818 }
819
820 /** Sets the value of "box-align" */
821 static void setBoxAlign(CSSStyleDeclaration style, String value) {
822 style.setProperty('${_browserPrefix}box-align', value, '');
823 }
824
825 /** Gets the value of "box-direction" */
826 static String getBoxDirection(CSSStyleDeclaration style) {
827 return style.getPropertyValue('${_browserPrefix}box-direction');
828 }
829
830 /** Sets the value of "box-direction" */
831 static void setBoxDirection(CSSStyleDeclaration style, String value) {
832 style.setProperty('${_browserPrefix}box-direction', value, '');
833 }
834
835 /** Gets the value of "box-flex" */
836 static String getBoxFlex(CSSStyleDeclaration style) {
837 return style.getPropertyValue('${_browserPrefix}box-flex');
838 }
839
840 /** Sets the value of "box-flex" */
841 static void setBoxFlex(CSSStyleDeclaration style, String value) {
842 style.setProperty('${_browserPrefix}box-flex', value, '');
843 }
844
845 /** Gets the value of "box-flex-group" */
846 static String getBoxFlexGroup(CSSStyleDeclaration style) {
847 return style.getPropertyValue('${_browserPrefix}box-flex-group');
848 }
849
850 /** Sets the value of "box-flex-group" */
851 static void setBoxFlexGroup(CSSStyleDeclaration style, String value) {
852 style.setProperty('${_browserPrefix}box-flex-group', value, '');
853 }
854
855 /** Gets the value of "box-lines" */
856 static String getBoxLines(CSSStyleDeclaration style) {
857 return style.getPropertyValue('${_browserPrefix}box-lines');
858 }
859
860 /** Sets the value of "box-lines" */
861 static void setBoxLines(CSSStyleDeclaration style, String value) {
862 style.setProperty('${_browserPrefix}box-lines', value, '');
863 }
864
865 /** Gets the value of "box-ordinal-group" */
866 static String getBoxOrdinalGroup(CSSStyleDeclaration style) {
867 return style.getPropertyValue('${_browserPrefix}box-ordinal-group');
868 }
869
870 /** Sets the value of "box-ordinal-group" */
871 static void setBoxOrdinalGroup(CSSStyleDeclaration style, String value) {
872 style.setProperty('${_browserPrefix}box-ordinal-group', value, '');
873 }
874
875 /** Gets the value of "box-orient" */
876 static String getBoxOrient(CSSStyleDeclaration style) {
877 return style.getPropertyValue('${_browserPrefix}box-orient');
878 }
879
880 /** Sets the value of "box-orient" */
881 static void setBoxOrient(CSSStyleDeclaration style, String value) {
882 style.setProperty('${_browserPrefix}box-orient', value, '');
883 }
884
885 /** Gets the value of "box-pack" */
886 static String getBoxPack(CSSStyleDeclaration style) {
887 return style.getPropertyValue('${_browserPrefix}box-pack');
888 }
889
890 /** Sets the value of "box-pack" */
891 static void setBoxPack(CSSStyleDeclaration style, String value) {
892 style.setProperty('${_browserPrefix}box-pack', value, '');
893 }
894
895 /** Gets the value of "box-reflect" */
896 static String getBoxReflect(CSSStyleDeclaration style) {
897 return style.getPropertyValue('${_browserPrefix}box-reflect');
898 }
899
900 /** Sets the value of "box-reflect" */
901 static void setBoxReflect(CSSStyleDeclaration style, String value) {
902 style.setProperty('${_browserPrefix}box-reflect', value, '');
903 }
904
905 /** Gets the value of "box-shadow" */
906 static String getBoxShadow(CSSStyleDeclaration style) {
907 return style.getPropertyValue('box-shadow');
908 }
909
910 /** Sets the value of "box-shadow" */
911 static void setBoxShadow(CSSStyleDeclaration style, String value) {
912 style.setProperty('box-shadow', value, '');
913 }
914
915 /** Gets the value of "box-sizing" */
916 static String getBoxSizing(CSSStyleDeclaration style) {
917 return style.getPropertyValue('box-sizing');
918 }
919
920 /** Sets the value of "box-sizing" */
921 static void setBoxSizing(CSSStyleDeclaration style, String value) {
922 style.setProperty('box-sizing', value, '');
923 }
924
925 /** Gets the value of "caption-side" */
926 static String getCaptionSide(CSSStyleDeclaration style) {
927 return style.getPropertyValue('caption-side');
928 }
929
930 /** Sets the value of "caption-side" */
931 static void setCaptionSide(CSSStyleDeclaration style, String value) {
932 style.setProperty('caption-side', value, '');
933 }
934
935 /** Gets the value of "clear" */
936 static String getClear(CSSStyleDeclaration style) {
937 return style.getPropertyValue('clear');
938 }
939
940 /** Sets the value of "clear" */
941 static void setClear(CSSStyleDeclaration style, String value) {
942 style.setProperty('clear', value, '');
943 }
944
945 /** Gets the value of "clip" */
946 static String getClip(CSSStyleDeclaration style) {
947 return style.getPropertyValue('clip');
948 }
949
950 /** Sets the value of "clip" */
951 static void setClip(CSSStyleDeclaration style, String value) {
952 style.setProperty('clip', value, '');
953 }
954
955 /** Gets the value of "color" */
956 static String getColor(CSSStyleDeclaration style) {
957 return style.getPropertyValue('color');
958 }
959
960 /** Sets the value of "color" */
961 static void setColor(CSSStyleDeclaration style, String value) {
962 style.setProperty('color', value, '');
963 }
964
965 /** Gets the value of "color-correction" */
966 static String getColorCorrection(CSSStyleDeclaration style) {
967 return style.getPropertyValue('${_browserPrefix}color-correction');
968 }
969
970 /** Sets the value of "color-correction" */
971 static void setColorCorrection(CSSStyleDeclaration style, String value) {
972 style.setProperty('${_browserPrefix}color-correction', value, '');
973 }
974
975 /** Gets the value of "column-break-after" */
976 static String getColumnBreakAfter(CSSStyleDeclaration style) {
977 return style.getPropertyValue('${_browserPrefix}column-break-after');
978 }
979
980 /** Sets the value of "column-break-after" */
981 static void setColumnBreakAfter(CSSStyleDeclaration style, String value) {
982 style.setProperty('${_browserPrefix}column-break-after', value, '');
983 }
984
985 /** Gets the value of "column-break-before" */
986 static String getColumnBreakBefore(CSSStyleDeclaration style) {
987 return style.getPropertyValue('${_browserPrefix}column-break-before');
988 }
989
990 /** Sets the value of "column-break-before" */
991 static void setColumnBreakBefore(CSSStyleDeclaration style, String value) {
992 style.setProperty('${_browserPrefix}column-break-before', value, '');
993 }
994
995 /** Gets the value of "column-break-inside" */
996 static String getColumnBreakInside(CSSStyleDeclaration style) {
997 return style.getPropertyValue('${_browserPrefix}column-break-inside');
998 }
999
1000 /** Sets the value of "column-break-inside" */
1001 static void setColumnBreakInside(CSSStyleDeclaration style, String value) {
1002 style.setProperty('${_browserPrefix}column-break-inside', value, '');
1003 }
1004
1005 /** Gets the value of "column-count" */
1006 static String getColumnCount(CSSStyleDeclaration style) {
1007 return style.getPropertyValue('${_browserPrefix}column-count');
1008 }
1009
1010 /** Sets the value of "column-count" */
1011 static void setColumnCount(CSSStyleDeclaration style, String value) {
1012 style.setProperty('${_browserPrefix}column-count', value, '');
1013 }
1014
1015 /** Gets the value of "column-gap" */
1016 static String getColumnGap(CSSStyleDeclaration style) {
1017 return style.getPropertyValue('${_browserPrefix}column-gap');
1018 }
1019
1020 /** Sets the value of "column-gap" */
1021 static void setColumnGap(CSSStyleDeclaration style, String value) {
1022 style.setProperty('${_browserPrefix}column-gap', value, '');
1023 }
1024
1025 /** Gets the value of "column-rule" */
1026 static String getColumnRule(CSSStyleDeclaration style) {
1027 return style.getPropertyValue('${_browserPrefix}column-rule');
1028 }
1029
1030 /** Sets the value of "column-rule" */
1031 static void setColumnRule(CSSStyleDeclaration style, String value) {
1032 style.setProperty('${_browserPrefix}column-rule', value, '');
1033 }
1034
1035 /** Gets the value of "column-rule-color" */
1036 static String getColumnRuleColor(CSSStyleDeclaration style) {
1037 return style.getPropertyValue('${_browserPrefix}column-rule-color');
1038 }
1039
1040 /** Sets the value of "column-rule-color" */
1041 static void setColumnRuleColor(CSSStyleDeclaration style, String value) {
1042 style.setProperty('${_browserPrefix}column-rule-color', value, '');
1043 }
1044
1045 /** Gets the value of "column-rule-style" */
1046 static String getColumnRuleStyle(CSSStyleDeclaration style) {
1047 return style.getPropertyValue('${_browserPrefix}column-rule-style');
1048 }
1049
1050 /** Sets the value of "column-rule-style" */
1051 static void setColumnRuleStyle(CSSStyleDeclaration style, String value) {
1052 style.setProperty('${_browserPrefix}column-rule-style', value, '');
1053 }
1054
1055 /** Gets the value of "column-rule-width" */
1056 static String getColumnRuleWidth(CSSStyleDeclaration style) {
1057 return style.getPropertyValue('${_browserPrefix}column-rule-width');
1058 }
1059
1060 /** Sets the value of "column-rule-width" */
1061 static void setColumnRuleWidth(CSSStyleDeclaration style, String value) {
1062 style.setProperty('${_browserPrefix}column-rule-width', value, '');
1063 }
1064
1065 /** Gets the value of "column-span" */
1066 static String getColumnSpan(CSSStyleDeclaration style) {
1067 return style.getPropertyValue('${_browserPrefix}column-span');
1068 }
1069
1070 /** Sets the value of "column-span" */
1071 static void setColumnSpan(CSSStyleDeclaration style, String value) {
1072 style.setProperty('${_browserPrefix}column-span', value, '');
1073 }
1074
1075 /** Gets the value of "column-width" */
1076 static String getColumnWidth(CSSStyleDeclaration style) {
1077 return style.getPropertyValue('${_browserPrefix}column-width');
1078 }
1079
1080 /** Sets the value of "column-width" */
1081 static void setColumnWidth(CSSStyleDeclaration style, String value) {
1082 style.setProperty('${_browserPrefix}column-width', value, '');
1083 }
1084
1085 /** Gets the value of "columns" */
1086 static String getColumns(CSSStyleDeclaration style) {
1087 return style.getPropertyValue('${_browserPrefix}columns');
1088 }
1089
1090 /** Sets the value of "columns" */
1091 static void setColumns(CSSStyleDeclaration style, String value) {
1092 style.setProperty('${_browserPrefix}columns', value, '');
1093 }
1094
1095 /** Gets the value of "content" */
1096 static String getContent(CSSStyleDeclaration style) {
1097 return style.getPropertyValue('content');
1098 }
1099
1100 /** Sets the value of "content" */
1101 static void setContent(CSSStyleDeclaration style, String value) {
1102 style.setProperty('content', value, '');
1103 }
1104
1105 /** Gets the value of "content-order" */
1106 static String getContentOrder(CSSStyleDeclaration style) {
1107 return style.getPropertyValue('${_browserPrefix}content-order');
1108 }
1109
1110 /** Sets the value of "content-order" */
1111 static void setContentOrder(CSSStyleDeclaration style, String value) {
1112 style.setProperty('${_browserPrefix}content-order', value, '');
1113 }
1114
1115 /** Gets the value of "counter-increment" */
1116 static String getCounterIncrement(CSSStyleDeclaration style) {
1117 return style.getPropertyValue('counter-increment');
1118 }
1119
1120 /** Sets the value of "counter-increment" */
1121 static void setCounterIncrement(CSSStyleDeclaration style, String value) {
1122 style.setProperty('counter-increment', value, '');
1123 }
1124
1125 /** Gets the value of "counter-reset" */
1126 static String getCounterReset(CSSStyleDeclaration style) {
1127 return style.getPropertyValue('counter-reset');
1128 }
1129
1130 /** Sets the value of "counter-reset" */
1131 static void setCounterReset(CSSStyleDeclaration style, String value) {
1132 style.setProperty('counter-reset', value, '');
1133 }
1134
1135 /** Gets the value of "cursor" */
1136 static String getCursor(CSSStyleDeclaration style) {
1137 return style.getPropertyValue('cursor');
1138 }
1139
1140 /** Sets the value of "cursor" */
1141 static void setCursor(CSSStyleDeclaration style, String value) {
1142 style.setProperty('cursor', value, '');
1143 }
1144
1145 /** Gets the value of "direction" */
1146 static String getDirection(CSSStyleDeclaration style) {
1147 return style.getPropertyValue('direction');
1148 }
1149
1150 /** Sets the value of "direction" */
1151 static void setDirection(CSSStyleDeclaration style, String value) {
1152 style.setProperty('direction', value, '');
1153 }
1154
1155 /** Gets the value of "display" */
1156 static String getDisplay(CSSStyleDeclaration style) {
1157 return style.getPropertyValue('display');
1158 }
1159
1160 /** Sets the value of "display" */
1161 static void setDisplay(CSSStyleDeclaration style, String value) {
1162 style.setProperty('display', value, '');
1163 }
1164
1165 /** Gets the value of "empty-cells" */
1166 static String getEmptyCells(CSSStyleDeclaration style) {
1167 return style.getPropertyValue('empty-cells');
1168 }
1169
1170 /** Sets the value of "empty-cells" */
1171 static void setEmptyCells(CSSStyleDeclaration style, String value) {
1172 style.setProperty('empty-cells', value, '');
1173 }
1174
1175 /** Gets the value of "filter" */
1176 static String getFilter(CSSStyleDeclaration style) {
1177 return style.getPropertyValue('${_browserPrefix}filter');
1178 }
1179
1180 /** Sets the value of "filter" */
1181 static void setFilter(CSSStyleDeclaration style, String value) {
1182 style.setProperty('${_browserPrefix}filter', value, '');
1183 }
1184
1185 /** Gets the value of "flex-align" */
1186 static String getFlexAlign(CSSStyleDeclaration style) {
1187 return style.getPropertyValue('${_browserPrefix}flex-align');
1188 }
1189
1190 /** Sets the value of "flex-align" */
1191 static void setFlexAlign(CSSStyleDeclaration style, String value) {
1192 style.setProperty('${_browserPrefix}flex-align', value, '');
1193 }
1194
1195 /** Gets the value of "flex-flow" */
1196 static String getFlexFlow(CSSStyleDeclaration style) {
1197 return style.getPropertyValue('${_browserPrefix}flex-flow');
1198 }
1199
1200 /** Sets the value of "flex-flow" */
1201 static void setFlexFlow(CSSStyleDeclaration style, String value) {
1202 style.setProperty('${_browserPrefix}flex-flow', value, '');
1203 }
1204
1205 /** Gets the value of "flex-order" */
1206 static String getFlexOrder(CSSStyleDeclaration style) {
1207 return style.getPropertyValue('${_browserPrefix}flex-order');
1208 }
1209
1210 /** Sets the value of "flex-order" */
1211 static void setFlexOrder(CSSStyleDeclaration style, String value) {
1212 style.setProperty('${_browserPrefix}flex-order', value, '');
1213 }
1214
1215 /** Gets the value of "flex-pack" */
1216 static String getFlexPack(CSSStyleDeclaration style) {
1217 return style.getPropertyValue('${_browserPrefix}flex-pack');
1218 }
1219
1220 /** Sets the value of "flex-pack" */
1221 static void setFlexPack(CSSStyleDeclaration style, String value) {
1222 style.setProperty('${_browserPrefix}flex-pack', value, '');
1223 }
1224
1225 /** Gets the value of "float" */
1226 static String getFloat(CSSStyleDeclaration style) {
1227 return style.getPropertyValue('float');
1228 }
1229
1230 /** Sets the value of "float" */
1231 static void setFloat(CSSStyleDeclaration style, String value) {
1232 style.setProperty('float', value, '');
1233 }
1234
1235 /** Gets the value of "flow" */
1236 static String getFlow(CSSStyleDeclaration style) {
1237 return style.getPropertyValue('${_browserPrefix}flow');
1238 }
1239
1240 /** Sets the value of "flow" */
1241 static void setFlow(CSSStyleDeclaration style, String value) {
1242 style.setProperty('${_browserPrefix}flow', value, '');
1243 }
1244
1245 /** Gets the value of "font" */
1246 static String getFont(CSSStyleDeclaration style) {
1247 return style.getPropertyValue('font');
1248 }
1249
1250 /** Sets the value of "font" */
1251 static void setFont(CSSStyleDeclaration style, String value) {
1252 style.setProperty('font', value, '');
1253 }
1254
1255 /** Gets the value of "font-family" */
1256 static String getFontFamily(CSSStyleDeclaration style) {
1257 return style.getPropertyValue('font-family');
1258 }
1259
1260 /** Sets the value of "font-family" */
1261 static void setFontFamily(CSSStyleDeclaration style, String value) {
1262 style.setProperty('font-family', value, '');
1263 }
1264
1265 /** Gets the value of "font-feature-settings" */
1266 static String getFontFeatureSettings(CSSStyleDeclaration style) {
1267 return style.getPropertyValue('${_browserPrefix}font-feature-settings');
1268 }
1269
1270 /** Sets the value of "font-feature-settings" */
1271 static void setFontFeatureSettings(CSSStyleDeclaration style, String value) {
1272 style.setProperty('${_browserPrefix}font-feature-settings', value, '');
1273 }
1274
1275 /** Gets the value of "font-size" */
1276 static String getFontSize(CSSStyleDeclaration style) {
1277 return style.getPropertyValue('font-size');
1278 }
1279
1280 /** Sets the value of "font-size" */
1281 static void setFontSize(CSSStyleDeclaration style, String value) {
1282 style.setProperty('font-size', value, '');
1283 }
1284
1285 /** Gets the value of "font-size-delta" */
1286 static String getFontSizeDelta(CSSStyleDeclaration style) {
1287 return style.getPropertyValue('${_browserPrefix}font-size-delta');
1288 }
1289
1290 /** Sets the value of "font-size-delta" */
1291 static void setFontSizeDelta(CSSStyleDeclaration style, String value) {
1292 style.setProperty('${_browserPrefix}font-size-delta', value, '');
1293 }
1294
1295 /** Gets the value of "font-smoothing" */
1296 static String getFontSmoothing(CSSStyleDeclaration style) {
1297 return style.getPropertyValue('${_browserPrefix}font-smoothing');
1298 }
1299
1300 /** Sets the value of "font-smoothing" */
1301 static void setFontSmoothing(CSSStyleDeclaration style, String value) {
1302 style.setProperty('${_browserPrefix}font-smoothing', value, '');
1303 }
1304
1305 /** Gets the value of "font-stretch" */
1306 static String getFontStretch(CSSStyleDeclaration style) {
1307 return style.getPropertyValue('font-stretch');
1308 }
1309
1310 /** Sets the value of "font-stretch" */
1311 static void setFontStretch(CSSStyleDeclaration style, String value) {
1312 style.setProperty('font-stretch', value, '');
1313 }
1314
1315 /** Gets the value of "font-style" */
1316 static String getFontStyle(CSSStyleDeclaration style) {
1317 return style.getPropertyValue('font-style');
1318 }
1319
1320 /** Sets the value of "font-style" */
1321 static void setFontStyle(CSSStyleDeclaration style, String value) {
1322 style.setProperty('font-style', value, '');
1323 }
1324
1325 /** Gets the value of "font-variant" */
1326 static String getFontVariant(CSSStyleDeclaration style) {
1327 return style.getPropertyValue('font-variant');
1328 }
1329
1330 /** Sets the value of "font-variant" */
1331 static void setFontVariant(CSSStyleDeclaration style, String value) {
1332 style.setProperty('font-variant', value, '');
1333 }
1334
1335 /** Gets the value of "font-weight" */
1336 static String getFontWeight(CSSStyleDeclaration style) {
1337 return style.getPropertyValue('font-weight');
1338 }
1339
1340 /** Sets the value of "font-weight" */
1341 static void setFontWeight(CSSStyleDeclaration style, String value) {
1342 style.setProperty('font-weight', value, '');
1343 }
1344
1345 /** Gets the value of "height" */
1346 static String getHeight(CSSStyleDeclaration style) {
1347 return style.getPropertyValue('height');
1348 }
1349
1350 /** Sets the value of "height" */
1351 static void setHeight(CSSStyleDeclaration style, String value) {
1352 style.setProperty('height', value, '');
1353 }
1354
1355 /** Gets the value of "highlight" */
1356 static String getHighlight(CSSStyleDeclaration style) {
1357 return style.getPropertyValue('${_browserPrefix}highlight');
1358 }
1359
1360 /** Sets the value of "highlight" */
1361 static void setHighlight(CSSStyleDeclaration style, String value) {
1362 style.setProperty('${_browserPrefix}highlight', value, '');
1363 }
1364
1365 /** Gets the value of "hyphenate-character" */
1366 static String getHyphenateCharacter(CSSStyleDeclaration style) {
1367 return style.getPropertyValue('${_browserPrefix}hyphenate-character');
1368 }
1369
1370 /** Sets the value of "hyphenate-character" */
1371 static void setHyphenateCharacter(CSSStyleDeclaration style, String value) {
1372 style.setProperty('${_browserPrefix}hyphenate-character', value, '');
1373 }
1374
1375 /** Gets the value of "hyphenate-limit-after" */
1376 static String getHyphenateLimitAfter(CSSStyleDeclaration style) {
1377 return style.getPropertyValue('${_browserPrefix}hyphenate-limit-after');
1378 }
1379
1380 /** Sets the value of "hyphenate-limit-after" */
1381 static void setHyphenateLimitAfter(CSSStyleDeclaration style, String value) {
1382 style.setProperty('${_browserPrefix}hyphenate-limit-after', value, '');
1383 }
1384
1385 /** Gets the value of "hyphenate-limit-before" */
1386 static String getHyphenateLimitBefore(CSSStyleDeclaration style) {
1387 return style.getPropertyValue('${_browserPrefix}hyphenate-limit-before');
1388 }
1389
1390 /** Sets the value of "hyphenate-limit-before" */
1391 static void setHyphenateLimitBefore(CSSStyleDeclaration style, String value) {
1392 style.setProperty('${_browserPrefix}hyphenate-limit-before', value, '');
1393 }
1394
1395 /** Gets the value of "hyphenate-limit-lines" */
1396 static String getHyphenateLimitLines(CSSStyleDeclaration style) {
1397 return style.getPropertyValue('${_browserPrefix}hyphenate-limit-lines');
1398 }
1399
1400 /** Sets the value of "hyphenate-limit-lines" */
1401 static void setHyphenateLimitLines(CSSStyleDeclaration style, String value) {
1402 style.setProperty('${_browserPrefix}hyphenate-limit-lines', value, '');
1403 }
1404
1405 /** Gets the value of "hyphens" */
1406 static String getHyphens(CSSStyleDeclaration style) {
1407 return style.getPropertyValue('${_browserPrefix}hyphens');
1408 }
1409
1410 /** Sets the value of "hyphens" */
1411 static void setHyphens(CSSStyleDeclaration style, String value) {
1412 style.setProperty('${_browserPrefix}hyphens', value, '');
1413 }
1414
1415 /** Gets the value of "image-rendering" */
1416 static String getImageRendering(CSSStyleDeclaration style) {
1417 return style.getPropertyValue('image-rendering');
1418 }
1419
1420 /** Sets the value of "image-rendering" */
1421 static void setImageRendering(CSSStyleDeclaration style, String value) {
1422 style.setProperty('image-rendering', value, '');
1423 }
1424
1425 /** Gets the value of "left" */
1426 static String getLeft(CSSStyleDeclaration style) {
1427 return style.getPropertyValue('left');
1428 }
1429
1430 /** Sets the value of "left" */
1431 static void setLeft(CSSStyleDeclaration style, String value) {
1432 style.setProperty('left', value, '');
1433 }
1434
1435 /** Gets the value of "letter-spacing" */
1436 static String getLetterSpacing(CSSStyleDeclaration style) {
1437 return style.getPropertyValue('letter-spacing');
1438 }
1439
1440 /** Sets the value of "letter-spacing" */
1441 static void setLetterSpacing(CSSStyleDeclaration style, String value) {
1442 style.setProperty('letter-spacing', value, '');
1443 }
1444
1445 /** Gets the value of "line-box-contain" */
1446 static String getLineBoxContain(CSSStyleDeclaration style) {
1447 return style.getPropertyValue('${_browserPrefix}line-box-contain');
1448 }
1449
1450 /** Sets the value of "line-box-contain" */
1451 static void setLineBoxContain(CSSStyleDeclaration style, String value) {
1452 style.setProperty('${_browserPrefix}line-box-contain', value, '');
1453 }
1454
1455 /** Gets the value of "line-break" */
1456 static String getLineBreak(CSSStyleDeclaration style) {
1457 return style.getPropertyValue('${_browserPrefix}line-break');
1458 }
1459
1460 /** Sets the value of "line-break" */
1461 static void setLineBreak(CSSStyleDeclaration style, String value) {
1462 style.setProperty('${_browserPrefix}line-break', value, '');
1463 }
1464
1465 /** Gets the value of "line-clamp" */
1466 static String getLineClamp(CSSStyleDeclaration style) {
1467 return style.getPropertyValue('${_browserPrefix}line-clamp');
1468 }
1469
1470 /** Sets the value of "line-clamp" */
1471 static void setLineClamp(CSSStyleDeclaration style, String value) {
1472 style.setProperty('${_browserPrefix}line-clamp', value, '');
1473 }
1474
1475 /** Gets the value of "line-height" */
1476 static String getLineHeight(CSSStyleDeclaration style) {
1477 return style.getPropertyValue('line-height');
1478 }
1479
1480 /** Sets the value of "line-height" */
1481 static void setLineHeight(CSSStyleDeclaration style, String value) {
1482 style.setProperty('line-height', value, '');
1483 }
1484
1485 /** Gets the value of "list-style" */
1486 static String getListStyle(CSSStyleDeclaration style) {
1487 return style.getPropertyValue('list-style');
1488 }
1489
1490 /** Sets the value of "list-style" */
1491 static void setListStyle(CSSStyleDeclaration style, String value) {
1492 style.setProperty('list-style', value, '');
1493 }
1494
1495 /** Gets the value of "list-style-image" */
1496 static String getListStyleImage(CSSStyleDeclaration style) {
1497 return style.getPropertyValue('list-style-image');
1498 }
1499
1500 /** Sets the value of "list-style-image" */
1501 static void setListStyleImage(CSSStyleDeclaration style, String value) {
1502 style.setProperty('list-style-image', value, '');
1503 }
1504
1505 /** Gets the value of "list-style-position" */
1506 static String getListStylePosition(CSSStyleDeclaration style) {
1507 return style.getPropertyValue('list-style-position');
1508 }
1509
1510 /** Sets the value of "list-style-position" */
1511 static void setListStylePosition(CSSStyleDeclaration style, String value) {
1512 style.setProperty('list-style-position', value, '');
1513 }
1514
1515 /** Gets the value of "list-style-type" */
1516 static String getListStyleType(CSSStyleDeclaration style) {
1517 return style.getPropertyValue('list-style-type');
1518 }
1519
1520 /** Sets the value of "list-style-type" */
1521 static void setListStyleType(CSSStyleDeclaration style, String value) {
1522 style.setProperty('list-style-type', value, '');
1523 }
1524
1525 /** Gets the value of "locale" */
1526 static String getLocale(CSSStyleDeclaration style) {
1527 return style.getPropertyValue('${_browserPrefix}locale');
1528 }
1529
1530 /** Sets the value of "locale" */
1531 static void setLocale(CSSStyleDeclaration style, String value) {
1532 style.setProperty('${_browserPrefix}locale', value, '');
1533 }
1534
1535 /** Gets the value of "logical-height" */
1536 static String getLogicalHeight(CSSStyleDeclaration style) {
1537 return style.getPropertyValue('${_browserPrefix}logical-height');
1538 }
1539
1540 /** Sets the value of "logical-height" */
1541 static void setLogicalHeight(CSSStyleDeclaration style, String value) {
1542 style.setProperty('${_browserPrefix}logical-height', value, '');
1543 }
1544
1545 /** Gets the value of "logical-width" */
1546 static String getLogicalWidth(CSSStyleDeclaration style) {
1547 return style.getPropertyValue('${_browserPrefix}logical-width');
1548 }
1549
1550 /** Sets the value of "logical-width" */
1551 static void setLogicalWidth(CSSStyleDeclaration style, String value) {
1552 style.setProperty('${_browserPrefix}logical-width', value, '');
1553 }
1554
1555 /** Gets the value of "margin" */
1556 static String getMargin(CSSStyleDeclaration style) {
1557 return style.getPropertyValue('margin');
1558 }
1559
1560 /** Sets the value of "margin" */
1561 static void setMargin(CSSStyleDeclaration style, String value) {
1562 style.setProperty('margin', value, '');
1563 }
1564
1565 /** Gets the value of "margin-after" */
1566 static String getMarginAfter(CSSStyleDeclaration style) {
1567 return style.getPropertyValue('${_browserPrefix}margin-after');
1568 }
1569
1570 /** Sets the value of "margin-after" */
1571 static void setMarginAfter(CSSStyleDeclaration style, String value) {
1572 style.setProperty('${_browserPrefix}margin-after', value, '');
1573 }
1574
1575 /** Gets the value of "margin-after-collapse" */
1576 static String getMarginAfterCollapse(CSSStyleDeclaration style) {
1577 return style.getPropertyValue('${_browserPrefix}margin-after-collapse');
1578 }
1579
1580 /** Sets the value of "margin-after-collapse" */
1581 static void setMarginAfterCollapse(CSSStyleDeclaration style, String value) {
1582 style.setProperty('${_browserPrefix}margin-after-collapse', value, '');
1583 }
1584
1585 /** Gets the value of "margin-before" */
1586 static String getMarginBefore(CSSStyleDeclaration style) {
1587 return style.getPropertyValue('${_browserPrefix}margin-before');
1588 }
1589
1590 /** Sets the value of "margin-before" */
1591 static void setMarginBefore(CSSStyleDeclaration style, String value) {
1592 style.setProperty('${_browserPrefix}margin-before', value, '');
1593 }
1594
1595 /** Gets the value of "margin-before-collapse" */
1596 static String getMarginBeforeCollapse(CSSStyleDeclaration style) {
1597 return style.getPropertyValue('${_browserPrefix}margin-before-collapse');
1598 }
1599
1600 /** Sets the value of "margin-before-collapse" */
1601 static void setMarginBeforeCollapse(CSSStyleDeclaration style, String value) {
1602 style.setProperty('${_browserPrefix}margin-before-collapse', value, '');
1603 }
1604
1605 /** Gets the value of "margin-bottom" */
1606 static String getMarginBottom(CSSStyleDeclaration style) {
1607 return style.getPropertyValue('margin-bottom');
1608 }
1609
1610 /** Sets the value of "margin-bottom" */
1611 static void setMarginBottom(CSSStyleDeclaration style, String value) {
1612 style.setProperty('margin-bottom', value, '');
1613 }
1614
1615 /** Gets the value of "margin-bottom-collapse" */
1616 static String getMarginBottomCollapse(CSSStyleDeclaration style) {
1617 return style.getPropertyValue('${_browserPrefix}margin-bottom-collapse');
1618 }
1619
1620 /** Sets the value of "margin-bottom-collapse" */
1621 static void setMarginBottomCollapse(CSSStyleDeclaration style, String value) {
1622 style.setProperty('${_browserPrefix}margin-bottom-collapse', value, '');
1623 }
1624
1625 /** Gets the value of "margin-collapse" */
1626 static String getMarginCollapse(CSSStyleDeclaration style) {
1627 return style.getPropertyValue('${_browserPrefix}margin-collapse');
1628 }
1629
1630 /** Sets the value of "margin-collapse" */
1631 static void setMarginCollapse(CSSStyleDeclaration style, String value) {
1632 style.setProperty('${_browserPrefix}margin-collapse', value, '');
1633 }
1634
1635 /** Gets the value of "margin-end" */
1636 static String getMarginEnd(CSSStyleDeclaration style) {
1637 return style.getPropertyValue('${_browserPrefix}margin-end');
1638 }
1639
1640 /** Sets the value of "margin-end" */
1641 static void setMarginEnd(CSSStyleDeclaration style, String value) {
1642 style.setProperty('${_browserPrefix}margin-end', value, '');
1643 }
1644
1645 /** Gets the value of "margin-left" */
1646 static String getMarginLeft(CSSStyleDeclaration style) {
1647 return style.getPropertyValue('margin-left');
1648 }
1649
1650 /** Sets the value of "margin-left" */
1651 static void setMarginLeft(CSSStyleDeclaration style, String value) {
1652 style.setProperty('margin-left', value, '');
1653 }
1654
1655 /** Gets the value of "margin-right" */
1656 static String getMarginRight(CSSStyleDeclaration style) {
1657 return style.getPropertyValue('margin-right');
1658 }
1659
1660 /** Sets the value of "margin-right" */
1661 static void setMarginRight(CSSStyleDeclaration style, String value) {
1662 style.setProperty('margin-right', value, '');
1663 }
1664
1665 /** Gets the value of "margin-start" */
1666 static String getMarginStart(CSSStyleDeclaration style) {
1667 return style.getPropertyValue('${_browserPrefix}margin-start');
1668 }
1669
1670 /** Sets the value of "margin-start" */
1671 static void setMarginStart(CSSStyleDeclaration style, String value) {
1672 style.setProperty('${_browserPrefix}margin-start', value, '');
1673 }
1674
1675 /** Gets the value of "margin-top" */
1676 static String getMarginTop(CSSStyleDeclaration style) {
1677 return style.getPropertyValue('margin-top');
1678 }
1679
1680 /** Sets the value of "margin-top" */
1681 static void setMarginTop(CSSStyleDeclaration style, String value) {
1682 style.setProperty('margin-top', value, '');
1683 }
1684
1685 /** Gets the value of "margin-top-collapse" */
1686 static String getMarginTopCollapse(CSSStyleDeclaration style) {
1687 return style.getPropertyValue('${_browserPrefix}margin-top-collapse');
1688 }
1689
1690 /** Sets the value of "margin-top-collapse" */
1691 static void setMarginTopCollapse(CSSStyleDeclaration style, String value) {
1692 style.setProperty('${_browserPrefix}margin-top-collapse', value, '');
1693 }
1694
1695 /** Gets the value of "marquee" */
1696 static String getMarquee(CSSStyleDeclaration style) {
1697 return style.getPropertyValue('${_browserPrefix}marquee');
1698 }
1699
1700 /** Sets the value of "marquee" */
1701 static void setMarquee(CSSStyleDeclaration style, String value) {
1702 style.setProperty('${_browserPrefix}marquee', value, '');
1703 }
1704
1705 /** Gets the value of "marquee-direction" */
1706 static String getMarqueeDirection(CSSStyleDeclaration style) {
1707 return style.getPropertyValue('${_browserPrefix}marquee-direction');
1708 }
1709
1710 /** Sets the value of "marquee-direction" */
1711 static void setMarqueeDirection(CSSStyleDeclaration style, String value) {
1712 style.setProperty('${_browserPrefix}marquee-direction', value, '');
1713 }
1714
1715 /** Gets the value of "marquee-increment" */
1716 static String getMarqueeIncrement(CSSStyleDeclaration style) {
1717 return style.getPropertyValue('${_browserPrefix}marquee-increment');
1718 }
1719
1720 /** Sets the value of "marquee-increment" */
1721 static void setMarqueeIncrement(CSSStyleDeclaration style, String value) {
1722 style.setProperty('${_browserPrefix}marquee-increment', value, '');
1723 }
1724
1725 /** Gets the value of "marquee-repetition" */
1726 static String getMarqueeRepetition(CSSStyleDeclaration style) {
1727 return style.getPropertyValue('${_browserPrefix}marquee-repetition');
1728 }
1729
1730 /** Sets the value of "marquee-repetition" */
1731 static void setMarqueeRepetition(CSSStyleDeclaration style, String value) {
1732 style.setProperty('${_browserPrefix}marquee-repetition', value, '');
1733 }
1734
1735 /** Gets the value of "marquee-speed" */
1736 static String getMarqueeSpeed(CSSStyleDeclaration style) {
1737 return style.getPropertyValue('${_browserPrefix}marquee-speed');
1738 }
1739
1740 /** Sets the value of "marquee-speed" */
1741 static void setMarqueeSpeed(CSSStyleDeclaration style, String value) {
1742 style.setProperty('${_browserPrefix}marquee-speed', value, '');
1743 }
1744
1745 /** Gets the value of "marquee-style" */
1746 static String getMarqueeStyle(CSSStyleDeclaration style) {
1747 return style.getPropertyValue('${_browserPrefix}marquee-style');
1748 }
1749
1750 /** Sets the value of "marquee-style" */
1751 static void setMarqueeStyle(CSSStyleDeclaration style, String value) {
1752 style.setProperty('${_browserPrefix}marquee-style', value, '');
1753 }
1754
1755 /** Gets the value of "mask" */
1756 static String getMask(CSSStyleDeclaration style) {
1757 return style.getPropertyValue('${_browserPrefix}mask');
1758 }
1759
1760 /** Sets the value of "mask" */
1761 static void setMask(CSSStyleDeclaration style, String value) {
1762 style.setProperty('${_browserPrefix}mask', value, '');
1763 }
1764
1765 /** Gets the value of "mask-attachment" */
1766 static String getMaskAttachment(CSSStyleDeclaration style) {
1767 return style.getPropertyValue('${_browserPrefix}mask-attachment');
1768 }
1769
1770 /** Sets the value of "mask-attachment" */
1771 static void setMaskAttachment(CSSStyleDeclaration style, String value) {
1772 style.setProperty('${_browserPrefix}mask-attachment', value, '');
1773 }
1774
1775 /** Gets the value of "mask-box-image" */
1776 static String getMaskBoxImage(CSSStyleDeclaration style) {
1777 return style.getPropertyValue('${_browserPrefix}mask-box-image');
1778 }
1779
1780 /** Sets the value of "mask-box-image" */
1781 static void setMaskBoxImage(CSSStyleDeclaration style, String value) {
1782 style.setProperty('${_browserPrefix}mask-box-image', value, '');
1783 }
1784
1785 /** Gets the value of "mask-box-image-outset" */
1786 static String getMaskBoxImageOutset(CSSStyleDeclaration style) {
1787 return style.getPropertyValue('${_browserPrefix}mask-box-image-outset');
1788 }
1789
1790 /** Sets the value of "mask-box-image-outset" */
1791 static void setMaskBoxImageOutset(CSSStyleDeclaration style, String value) {
1792 style.setProperty('${_browserPrefix}mask-box-image-outset', value, '');
1793 }
1794
1795 /** Gets the value of "mask-box-image-repeat" */
1796 static String getMaskBoxImageRepeat(CSSStyleDeclaration style) {
1797 return style.getPropertyValue('${_browserPrefix}mask-box-image-repeat');
1798 }
1799
1800 /** Sets the value of "mask-box-image-repeat" */
1801 static void setMaskBoxImageRepeat(CSSStyleDeclaration style, String value) {
1802 style.setProperty('${_browserPrefix}mask-box-image-repeat', value, '');
1803 }
1804
1805 /** Gets the value of "mask-box-image-slice" */
1806 static String getMaskBoxImageSlice(CSSStyleDeclaration style) {
1807 return style.getPropertyValue('${_browserPrefix}mask-box-image-slice');
1808 }
1809
1810 /** Sets the value of "mask-box-image-slice" */
1811 static void setMaskBoxImageSlice(CSSStyleDeclaration style, String value) {
1812 style.setProperty('${_browserPrefix}mask-box-image-slice', value, '');
1813 }
1814
1815 /** Gets the value of "mask-box-image-source" */
1816 static String getMaskBoxImageSource(CSSStyleDeclaration style) {
1817 return style.getPropertyValue('${_browserPrefix}mask-box-image-source');
1818 }
1819
1820 /** Sets the value of "mask-box-image-source" */
1821 static void setMaskBoxImageSource(CSSStyleDeclaration style, String value) {
1822 style.setProperty('${_browserPrefix}mask-box-image-source', value, '');
1823 }
1824
1825 /** Gets the value of "mask-box-image-width" */
1826 static String getMaskBoxImageWidth(CSSStyleDeclaration style) {
1827 return style.getPropertyValue('${_browserPrefix}mask-box-image-width');
1828 }
1829
1830 /** Sets the value of "mask-box-image-width" */
1831 static void setMaskBoxImageWidth(CSSStyleDeclaration style, String value) {
1832 style.setProperty('${_browserPrefix}mask-box-image-width', value, '');
1833 }
1834
1835 /** Gets the value of "mask-clip" */
1836 static String getMaskClip(CSSStyleDeclaration style) {
1837 return style.getPropertyValue('${_browserPrefix}mask-clip');
1838 }
1839
1840 /** Sets the value of "mask-clip" */
1841 static void setMaskClip(CSSStyleDeclaration style, String value) {
1842 style.setProperty('${_browserPrefix}mask-clip', value, '');
1843 }
1844
1845 /** Gets the value of "mask-composite" */
1846 static String getMaskComposite(CSSStyleDeclaration style) {
1847 return style.getPropertyValue('${_browserPrefix}mask-composite');
1848 }
1849
1850 /** Sets the value of "mask-composite" */
1851 static void setMaskComposite(CSSStyleDeclaration style, String value) {
1852 style.setProperty('${_browserPrefix}mask-composite', value, '');
1853 }
1854
1855 /** Gets the value of "mask-image" */
1856 static String getMaskImage(CSSStyleDeclaration style) {
1857 return style.getPropertyValue('${_browserPrefix}mask-image');
1858 }
1859
1860 /** Sets the value of "mask-image" */
1861 static void setMaskImage(CSSStyleDeclaration style, String value) {
1862 style.setProperty('${_browserPrefix}mask-image', value, '');
1863 }
1864
1865 /** Gets the value of "mask-origin" */
1866 static String getMaskOrigin(CSSStyleDeclaration style) {
1867 return style.getPropertyValue('${_browserPrefix}mask-origin');
1868 }
1869
1870 /** Sets the value of "mask-origin" */
1871 static void setMaskOrigin(CSSStyleDeclaration style, String value) {
1872 style.setProperty('${_browserPrefix}mask-origin', value, '');
1873 }
1874
1875 /** Gets the value of "mask-position" */
1876 static String getMaskPosition(CSSStyleDeclaration style) {
1877 return style.getPropertyValue('${_browserPrefix}mask-position');
1878 }
1879
1880 /** Sets the value of "mask-position" */
1881 static void setMaskPosition(CSSStyleDeclaration style, String value) {
1882 style.setProperty('${_browserPrefix}mask-position', value, '');
1883 }
1884
1885 /** Gets the value of "mask-position-x" */
1886 static String getMaskPositionX(CSSStyleDeclaration style) {
1887 return style.getPropertyValue('${_browserPrefix}mask-position-x');
1888 }
1889
1890 /** Sets the value of "mask-position-x" */
1891 static void setMaskPositionX(CSSStyleDeclaration style, String value) {
1892 style.setProperty('${_browserPrefix}mask-position-x', value, '');
1893 }
1894
1895 /** Gets the value of "mask-position-y" */
1896 static String getMaskPositionY(CSSStyleDeclaration style) {
1897 return style.getPropertyValue('${_browserPrefix}mask-position-y');
1898 }
1899
1900 /** Sets the value of "mask-position-y" */
1901 static void setMaskPositionY(CSSStyleDeclaration style, String value) {
1902 style.setProperty('${_browserPrefix}mask-position-y', value, '');
1903 }
1904
1905 /** Gets the value of "mask-repeat" */
1906 static String getMaskRepeat(CSSStyleDeclaration style) {
1907 return style.getPropertyValue('${_browserPrefix}mask-repeat');
1908 }
1909
1910 /** Sets the value of "mask-repeat" */
1911 static void setMaskRepeat(CSSStyleDeclaration style, String value) {
1912 style.setProperty('${_browserPrefix}mask-repeat', value, '');
1913 }
1914
1915 /** Gets the value of "mask-repeat-x" */
1916 static String getMaskRepeatX(CSSStyleDeclaration style) {
1917 return style.getPropertyValue('${_browserPrefix}mask-repeat-x');
1918 }
1919
1920 /** Sets the value of "mask-repeat-x" */
1921 static void setMaskRepeatX(CSSStyleDeclaration style, String value) {
1922 style.setProperty('${_browserPrefix}mask-repeat-x', value, '');
1923 }
1924
1925 /** Gets the value of "mask-repeat-y" */
1926 static String getMaskRepeatY(CSSStyleDeclaration style) {
1927 return style.getPropertyValue('${_browserPrefix}mask-repeat-y');
1928 }
1929
1930 /** Sets the value of "mask-repeat-y" */
1931 static void setMaskRepeatY(CSSStyleDeclaration style, String value) {
1932 style.setProperty('${_browserPrefix}mask-repeat-y', value, '');
1933 }
1934
1935 /** Gets the value of "mask-size" */
1936 static String getMaskSize(CSSStyleDeclaration style) {
1937 return style.getPropertyValue('${_browserPrefix}mask-size');
1938 }
1939
1940 /** Sets the value of "mask-size" */
1941 static void setMaskSize(CSSStyleDeclaration style, String value) {
1942 style.setProperty('${_browserPrefix}mask-size', value, '');
1943 }
1944
1945 /** Gets the value of "match-nearest-mail-blockquote-color" */
1946 static String getMatchNearestMailBlockquoteColor(CSSStyleDeclaration style) {
1947 return style.getPropertyValue('${_browserPrefix}match-nearest-mail-blockquot e-color');
1948 }
1949
1950 /** Sets the value of "match-nearest-mail-blockquote-color" */
1951 static void setMatchNearestMailBlockquoteColor(CSSStyleDeclaration style, Stri ng value) {
1952 style.setProperty('${_browserPrefix}match-nearest-mail-blockquote-color', va lue, '');
1953 }
1954
1955 /** Gets the value of "max-height" */
1956 static String getMaxHeight(CSSStyleDeclaration style) {
1957 return style.getPropertyValue('max-height');
1958 }
1959
1960 /** Sets the value of "max-height" */
1961 static void setMaxHeight(CSSStyleDeclaration style, String value) {
1962 style.setProperty('max-height', value, '');
1963 }
1964
1965 /** Gets the value of "max-logical-height" */
1966 static String getMaxLogicalHeight(CSSStyleDeclaration style) {
1967 return style.getPropertyValue('${_browserPrefix}max-logical-height');
1968 }
1969
1970 /** Sets the value of "max-logical-height" */
1971 static void setMaxLogicalHeight(CSSStyleDeclaration style, String value) {
1972 style.setProperty('${_browserPrefix}max-logical-height', value, '');
1973 }
1974
1975 /** Gets the value of "max-logical-width" */
1976 static String getMaxLogicalWidth(CSSStyleDeclaration style) {
1977 return style.getPropertyValue('${_browserPrefix}max-logical-width');
1978 }
1979
1980 /** Sets the value of "max-logical-width" */
1981 static void setMaxLogicalWidth(CSSStyleDeclaration style, String value) {
1982 style.setProperty('${_browserPrefix}max-logical-width', value, '');
1983 }
1984
1985 /** Gets the value of "max-width" */
1986 static String getMaxWidth(CSSStyleDeclaration style) {
1987 return style.getPropertyValue('max-width');
1988 }
1989
1990 /** Sets the value of "max-width" */
1991 static void setMaxWidth(CSSStyleDeclaration style, String value) {
1992 style.setProperty('max-width', value, '');
1993 }
1994
1995 /** Gets the value of "min-height" */
1996 static String getMinHeight(CSSStyleDeclaration style) {
1997 return style.getPropertyValue('min-height');
1998 }
1999
2000 /** Sets the value of "min-height" */
2001 static void setMinHeight(CSSStyleDeclaration style, String value) {
2002 style.setProperty('min-height', value, '');
2003 }
2004
2005 /** Gets the value of "min-logical-height" */
2006 static String getMinLogicalHeight(CSSStyleDeclaration style) {
2007 return style.getPropertyValue('${_browserPrefix}min-logical-height');
2008 }
2009
2010 /** Sets the value of "min-logical-height" */
2011 static void setMinLogicalHeight(CSSStyleDeclaration style, String value) {
2012 style.setProperty('${_browserPrefix}min-logical-height', value, '');
2013 }
2014
2015 /** Gets the value of "min-logical-width" */
2016 static String getMinLogicalWidth(CSSStyleDeclaration style) {
2017 return style.getPropertyValue('${_browserPrefix}min-logical-width');
2018 }
2019
2020 /** Sets the value of "min-logical-width" */
2021 static void setMinLogicalWidth(CSSStyleDeclaration style, String value) {
2022 style.setProperty('${_browserPrefix}min-logical-width', value, '');
2023 }
2024
2025 /** Gets the value of "min-width" */
2026 static String getMinWidth(CSSStyleDeclaration style) {
2027 return style.getPropertyValue('min-width');
2028 }
2029
2030 /** Sets the value of "min-width" */
2031 static void setMinWidth(CSSStyleDeclaration style, String value) {
2032 style.setProperty('min-width', value, '');
2033 }
2034
2035 /** Gets the value of "nbsp-mode" */
2036 static String getNbspMode(CSSStyleDeclaration style) {
2037 return style.getPropertyValue('${_browserPrefix}nbsp-mode');
2038 }
2039
2040 /** Sets the value of "nbsp-mode" */
2041 static void setNbspMode(CSSStyleDeclaration style, String value) {
2042 style.setProperty('${_browserPrefix}nbsp-mode', value, '');
2043 }
2044
2045 /** Gets the value of "opacity" */
2046 static String getOpacity(CSSStyleDeclaration style) {
2047 return style.getPropertyValue('opacity');
2048 }
2049
2050 /** Sets the value of "opacity" */
2051 static void setOpacity(CSSStyleDeclaration style, String value) {
2052 style.setProperty('opacity', value, '');
2053 }
2054
2055 /** Gets the value of "orphans" */
2056 static String getOrphans(CSSStyleDeclaration style) {
2057 return style.getPropertyValue('orphans');
2058 }
2059
2060 /** Sets the value of "orphans" */
2061 static void setOrphans(CSSStyleDeclaration style, String value) {
2062 style.setProperty('orphans', value, '');
2063 }
2064
2065 /** Gets the value of "outline" */
2066 static String getOutline(CSSStyleDeclaration style) {
2067 return style.getPropertyValue('outline');
2068 }
2069
2070 /** Sets the value of "outline" */
2071 static void setOutline(CSSStyleDeclaration style, String value) {
2072 style.setProperty('outline', value, '');
2073 }
2074
2075 /** Gets the value of "outline-color" */
2076 static String getOutlineColor(CSSStyleDeclaration style) {
2077 return style.getPropertyValue('outline-color');
2078 }
2079
2080 /** Sets the value of "outline-color" */
2081 static void setOutlineColor(CSSStyleDeclaration style, String value) {
2082 style.setProperty('outline-color', value, '');
2083 }
2084
2085 /** Gets the value of "outline-offset" */
2086 static String getOutlineOffset(CSSStyleDeclaration style) {
2087 return style.getPropertyValue('outline-offset');
2088 }
2089
2090 /** Sets the value of "outline-offset" */
2091 static void setOutlineOffset(CSSStyleDeclaration style, String value) {
2092 style.setProperty('outline-offset', value, '');
2093 }
2094
2095 /** Gets the value of "outline-style" */
2096 static String getOutlineStyle(CSSStyleDeclaration style) {
2097 return style.getPropertyValue('outline-style');
2098 }
2099
2100 /** Sets the value of "outline-style" */
2101 static void setOutlineStyle(CSSStyleDeclaration style, String value) {
2102 style.setProperty('outline-style', value, '');
2103 }
2104
2105 /** Gets the value of "outline-width" */
2106 static String getOutlineWidth(CSSStyleDeclaration style) {
2107 return style.getPropertyValue('outline-width');
2108 }
2109
2110 /** Sets the value of "outline-width" */
2111 static void setOutlineWidth(CSSStyleDeclaration style, String value) {
2112 style.setProperty('outline-width', value, '');
2113 }
2114
2115 /** Gets the value of "overflow" */
2116 static String getOverflow(CSSStyleDeclaration style) {
2117 return style.getPropertyValue('overflow');
2118 }
2119
2120 /** Sets the value of "overflow" */
2121 static void setOverflow(CSSStyleDeclaration style, String value) {
2122 style.setProperty('overflow', value, '');
2123 }
2124
2125 /** Gets the value of "overflow-x" */
2126 static String getOverflowX(CSSStyleDeclaration style) {
2127 return style.getPropertyValue('overflow-x');
2128 }
2129
2130 /** Sets the value of "overflow-x" */
2131 static void setOverflowX(CSSStyleDeclaration style, String value) {
2132 style.setProperty('overflow-x', value, '');
2133 }
2134
2135 /** Gets the value of "overflow-y" */
2136 static String getOverflowY(CSSStyleDeclaration style) {
2137 return style.getPropertyValue('overflow-y');
2138 }
2139
2140 /** Sets the value of "overflow-y" */
2141 static void setOverflowY(CSSStyleDeclaration style, String value) {
2142 style.setProperty('overflow-y', value, '');
2143 }
2144
2145 /** Gets the value of "padding" */
2146 static String getPadding(CSSStyleDeclaration style) {
2147 return style.getPropertyValue('padding');
2148 }
2149
2150 /** Sets the value of "padding" */
2151 static void setPadding(CSSStyleDeclaration style, String value) {
2152 style.setProperty('padding', value, '');
2153 }
2154
2155 /** Gets the value of "padding-after" */
2156 static String getPaddingAfter(CSSStyleDeclaration style) {
2157 return style.getPropertyValue('${_browserPrefix}padding-after');
2158 }
2159
2160 /** Sets the value of "padding-after" */
2161 static void setPaddingAfter(CSSStyleDeclaration style, String value) {
2162 style.setProperty('${_browserPrefix}padding-after', value, '');
2163 }
2164
2165 /** Gets the value of "padding-before" */
2166 static String getPaddingBefore(CSSStyleDeclaration style) {
2167 return style.getPropertyValue('${_browserPrefix}padding-before');
2168 }
2169
2170 /** Sets the value of "padding-before" */
2171 static void setPaddingBefore(CSSStyleDeclaration style, String value) {
2172 style.setProperty('${_browserPrefix}padding-before', value, '');
2173 }
2174
2175 /** Gets the value of "padding-bottom" */
2176 static String getPaddingBottom(CSSStyleDeclaration style) {
2177 return style.getPropertyValue('padding-bottom');
2178 }
2179
2180 /** Sets the value of "padding-bottom" */
2181 static void setPaddingBottom(CSSStyleDeclaration style, String value) {
2182 style.setProperty('padding-bottom', value, '');
2183 }
2184
2185 /** Gets the value of "padding-end" */
2186 static String getPaddingEnd(CSSStyleDeclaration style) {
2187 return style.getPropertyValue('${_browserPrefix}padding-end');
2188 }
2189
2190 /** Sets the value of "padding-end" */
2191 static void setPaddingEnd(CSSStyleDeclaration style, String value) {
2192 style.setProperty('${_browserPrefix}padding-end', value, '');
2193 }
2194
2195 /** Gets the value of "padding-left" */
2196 static String getPaddingLeft(CSSStyleDeclaration style) {
2197 return style.getPropertyValue('padding-left');
2198 }
2199
2200 /** Sets the value of "padding-left" */
2201 static void setPaddingLeft(CSSStyleDeclaration style, String value) {
2202 style.setProperty('padding-left', value, '');
2203 }
2204
2205 /** Gets the value of "padding-right" */
2206 static String getPaddingRight(CSSStyleDeclaration style) {
2207 return style.getPropertyValue('padding-right');
2208 }
2209
2210 /** Sets the value of "padding-right" */
2211 static void setPaddingRight(CSSStyleDeclaration style, String value) {
2212 style.setProperty('padding-right', value, '');
2213 }
2214
2215 /** Gets the value of "padding-start" */
2216 static String getPaddingStart(CSSStyleDeclaration style) {
2217 return style.getPropertyValue('${_browserPrefix}padding-start');
2218 }
2219
2220 /** Sets the value of "padding-start" */
2221 static void setPaddingStart(CSSStyleDeclaration style, String value) {
2222 style.setProperty('${_browserPrefix}padding-start', value, '');
2223 }
2224
2225 /** Gets the value of "padding-top" */
2226 static String getPaddingTop(CSSStyleDeclaration style) {
2227 return style.getPropertyValue('padding-top');
2228 }
2229
2230 /** Sets the value of "padding-top" */
2231 static void setPaddingTop(CSSStyleDeclaration style, String value) {
2232 style.setProperty('padding-top', value, '');
2233 }
2234
2235 /** Gets the value of "page" */
2236 static String getPage(CSSStyleDeclaration style) {
2237 return style.getPropertyValue('page');
2238 }
2239
2240 /** Sets the value of "page" */
2241 static void setPage(CSSStyleDeclaration style, String value) {
2242 style.setProperty('page', value, '');
2243 }
2244
2245 /** Gets the value of "page-break-after" */
2246 static String getPageBreakAfter(CSSStyleDeclaration style) {
2247 return style.getPropertyValue('page-break-after');
2248 }
2249
2250 /** Sets the value of "page-break-after" */
2251 static void setPageBreakAfter(CSSStyleDeclaration style, String value) {
2252 style.setProperty('page-break-after', value, '');
2253 }
2254
2255 /** Gets the value of "page-break-before" */
2256 static String getPageBreakBefore(CSSStyleDeclaration style) {
2257 return style.getPropertyValue('page-break-before');
2258 }
2259
2260 /** Sets the value of "page-break-before" */
2261 static void setPageBreakBefore(CSSStyleDeclaration style, String value) {
2262 style.setProperty('page-break-before', value, '');
2263 }
2264
2265 /** Gets the value of "page-break-inside" */
2266 static String getPageBreakInside(CSSStyleDeclaration style) {
2267 return style.getPropertyValue('page-break-inside');
2268 }
2269
2270 /** Sets the value of "page-break-inside" */
2271 static void setPageBreakInside(CSSStyleDeclaration style, String value) {
2272 style.setProperty('page-break-inside', value, '');
2273 }
2274
2275 /** Gets the value of "perspective" */
2276 static String getPerspective(CSSStyleDeclaration style) {
2277 return style.getPropertyValue('${_browserPrefix}perspective');
2278 }
2279
2280 /** Sets the value of "perspective" */
2281 static void setPerspective(CSSStyleDeclaration style, String value) {
2282 style.setProperty('${_browserPrefix}perspective', value, '');
2283 }
2284
2285 /** Gets the value of "perspective-origin" */
2286 static String getPerspectiveOrigin(CSSStyleDeclaration style) {
2287 return style.getPropertyValue('${_browserPrefix}perspective-origin');
2288 }
2289
2290 /** Sets the value of "perspective-origin" */
2291 static void setPerspectiveOrigin(CSSStyleDeclaration style, String value) {
2292 style.setProperty('${_browserPrefix}perspective-origin', value, '');
2293 }
2294
2295 /** Gets the value of "perspective-origin-x" */
2296 static String getPerspectiveOriginX(CSSStyleDeclaration style) {
2297 return style.getPropertyValue('${_browserPrefix}perspective-origin-x');
2298 }
2299
2300 /** Sets the value of "perspective-origin-x" */
2301 static void setPerspectiveOriginX(CSSStyleDeclaration style, String value) {
2302 style.setProperty('${_browserPrefix}perspective-origin-x', value, '');
2303 }
2304
2305 /** Gets the value of "perspective-origin-y" */
2306 static String getPerspectiveOriginY(CSSStyleDeclaration style) {
2307 return style.getPropertyValue('${_browserPrefix}perspective-origin-y');
2308 }
2309
2310 /** Sets the value of "perspective-origin-y" */
2311 static void setPerspectiveOriginY(CSSStyleDeclaration style, String value) {
2312 style.setProperty('${_browserPrefix}perspective-origin-y', value, '');
2313 }
2314
2315 /** Gets the value of "pointer-events" */
2316 static String getPointerEvents(CSSStyleDeclaration style) {
2317 return style.getPropertyValue('pointer-events');
2318 }
2319
2320 /** Sets the value of "pointer-events" */
2321 static void setPointerEvents(CSSStyleDeclaration style, String value) {
2322 style.setProperty('pointer-events', value, '');
2323 }
2324
2325 /** Gets the value of "position" */
2326 static String getPosition(CSSStyleDeclaration style) {
2327 return style.getPropertyValue('position');
2328 }
2329
2330 /** Sets the value of "position" */
2331 static void setPosition(CSSStyleDeclaration style, String value) {
2332 style.setProperty('position', value, '');
2333 }
2334
2335 /** Gets the value of "quotes" */
2336 static String getQuotes(CSSStyleDeclaration style) {
2337 return style.getPropertyValue('quotes');
2338 }
2339
2340 /** Sets the value of "quotes" */
2341 static void setQuotes(CSSStyleDeclaration style, String value) {
2342 style.setProperty('quotes', value, '');
2343 }
2344
2345 /** Gets the value of "region-break-after" */
2346 static String getRegionBreakAfter(CSSStyleDeclaration style) {
2347 return style.getPropertyValue('${_browserPrefix}region-break-after');
2348 }
2349
2350 /** Sets the value of "region-break-after" */
2351 static void setRegionBreakAfter(CSSStyleDeclaration style, String value) {
2352 style.setProperty('${_browserPrefix}region-break-after', value, '');
2353 }
2354
2355 /** Gets the value of "region-break-before" */
2356 static String getRegionBreakBefore(CSSStyleDeclaration style) {
2357 return style.getPropertyValue('${_browserPrefix}region-break-before');
2358 }
2359
2360 /** Sets the value of "region-break-before" */
2361 static void setRegionBreakBefore(CSSStyleDeclaration style, String value) {
2362 style.setProperty('${_browserPrefix}region-break-before', value, '');
2363 }
2364
2365 /** Gets the value of "region-break-inside" */
2366 static String getRegionBreakInside(CSSStyleDeclaration style) {
2367 return style.getPropertyValue('${_browserPrefix}region-break-inside');
2368 }
2369
2370 /** Sets the value of "region-break-inside" */
2371 static void setRegionBreakInside(CSSStyleDeclaration style, String value) {
2372 style.setProperty('${_browserPrefix}region-break-inside', value, '');
2373 }
2374
2375 /** Gets the value of "region-overflow" */
2376 static String getRegionOverflow(CSSStyleDeclaration style) {
2377 return style.getPropertyValue('${_browserPrefix}region-overflow');
2378 }
2379
2380 /** Sets the value of "region-overflow" */
2381 static void setRegionOverflow(CSSStyleDeclaration style, String value) {
2382 style.setProperty('${_browserPrefix}region-overflow', value, '');
2383 }
2384
2385 /** Gets the value of "resize" */
2386 static String getResize(CSSStyleDeclaration style) {
2387 return style.getPropertyValue('resize');
2388 }
2389
2390 /** Sets the value of "resize" */
2391 static void setResize(CSSStyleDeclaration style, String value) {
2392 style.setProperty('resize', value, '');
2393 }
2394
2395 /** Gets the value of "right" */
2396 static String getRight(CSSStyleDeclaration style) {
2397 return style.getPropertyValue('right');
2398 }
2399
2400 /** Sets the value of "right" */
2401 static void setRight(CSSStyleDeclaration style, String value) {
2402 style.setProperty('right', value, '');
2403 }
2404
2405 /** Gets the value of "rtl-ordering" */
2406 static String getRtlOrdering(CSSStyleDeclaration style) {
2407 return style.getPropertyValue('${_browserPrefix}rtl-ordering');
2408 }
2409
2410 /** Sets the value of "rtl-ordering" */
2411 static void setRtlOrdering(CSSStyleDeclaration style, String value) {
2412 style.setProperty('${_browserPrefix}rtl-ordering', value, '');
2413 }
2414
2415 /** Gets the value of "size" */
2416 static String getSize(CSSStyleDeclaration style) {
2417 return style.getPropertyValue('size');
2418 }
2419
2420 /** Sets the value of "size" */
2421 static void setSize(CSSStyleDeclaration style, String value) {
2422 style.setProperty('size', value, '');
2423 }
2424
2425 /** Gets the value of "speak" */
2426 static String getSpeak(CSSStyleDeclaration style) {
2427 return style.getPropertyValue('speak');
2428 }
2429
2430 /** Sets the value of "speak" */
2431 static void setSpeak(CSSStyleDeclaration style, String value) {
2432 style.setProperty('speak', value, '');
2433 }
2434
2435 /** Gets the value of "src" */
2436 static String getSrc(CSSStyleDeclaration style) {
2437 return style.getPropertyValue('src');
2438 }
2439
2440 /** Sets the value of "src" */
2441 static void setSrc(CSSStyleDeclaration style, String value) {
2442 style.setProperty('src', value, '');
2443 }
2444
2445 /** Gets the value of "table-layout" */
2446 static String getTableLayout(CSSStyleDeclaration style) {
2447 return style.getPropertyValue('table-layout');
2448 }
2449
2450 /** Sets the value of "table-layout" */
2451 static void setTableLayout(CSSStyleDeclaration style, String value) {
2452 style.setProperty('table-layout', value, '');
2453 }
2454
2455 /** Gets the value of "text-align" */
2456 static String getTextAlign(CSSStyleDeclaration style) {
2457 return style.getPropertyValue('text-align');
2458 }
2459
2460 /** Sets the value of "text-align" */
2461 static void setTextAlign(CSSStyleDeclaration style, String value) {
2462 style.setProperty('text-align', value, '');
2463 }
2464
2465 /** Gets the value of "text-combine" */
2466 static String getTextCombine(CSSStyleDeclaration style) {
2467 return style.getPropertyValue('${_browserPrefix}text-combine');
2468 }
2469
2470 /** Sets the value of "text-combine" */
2471 static void setTextCombine(CSSStyleDeclaration style, String value) {
2472 style.setProperty('${_browserPrefix}text-combine', value, '');
2473 }
2474
2475 /** Gets the value of "text-decoration" */
2476 static String getTextDecoration(CSSStyleDeclaration style) {
2477 return style.getPropertyValue('text-decoration');
2478 }
2479
2480 /** Sets the value of "text-decoration" */
2481 static void setTextDecoration(CSSStyleDeclaration style, String value) {
2482 style.setProperty('text-decoration', value, '');
2483 }
2484
2485 /** Gets the value of "text-decorations-in-effect" */
2486 static String getTextDecorationsInEffect(CSSStyleDeclaration style) {
2487 return style.getPropertyValue('${_browserPrefix}text-decorations-in-effect') ;
2488 }
2489
2490 /** Sets the value of "text-decorations-in-effect" */
2491 static void setTextDecorationsInEffect(CSSStyleDeclaration style, String value ) {
2492 style.setProperty('${_browserPrefix}text-decorations-in-effect', value, '');
2493 }
2494
2495 /** Gets the value of "text-emphasis" */
2496 static String getTextEmphasis(CSSStyleDeclaration style) {
2497 return style.getPropertyValue('${_browserPrefix}text-emphasis');
2498 }
2499
2500 /** Sets the value of "text-emphasis" */
2501 static void setTextEmphasis(CSSStyleDeclaration style, String value) {
2502 style.setProperty('${_browserPrefix}text-emphasis', value, '');
2503 }
2504
2505 /** Gets the value of "text-emphasis-color" */
2506 static String getTextEmphasisColor(CSSStyleDeclaration style) {
2507 return style.getPropertyValue('${_browserPrefix}text-emphasis-color');
2508 }
2509
2510 /** Sets the value of "text-emphasis-color" */
2511 static void setTextEmphasisColor(CSSStyleDeclaration style, String value) {
2512 style.setProperty('${_browserPrefix}text-emphasis-color', value, '');
2513 }
2514
2515 /** Gets the value of "text-emphasis-position" */
2516 static String getTextEmphasisPosition(CSSStyleDeclaration style) {
2517 return style.getPropertyValue('${_browserPrefix}text-emphasis-position');
2518 }
2519
2520 /** Sets the value of "text-emphasis-position" */
2521 static void setTextEmphasisPosition(CSSStyleDeclaration style, String value) {
2522 style.setProperty('${_browserPrefix}text-emphasis-position', value, '');
2523 }
2524
2525 /** Gets the value of "text-emphasis-style" */
2526 static String getTextEmphasisStyle(CSSStyleDeclaration style) {
2527 return style.getPropertyValue('${_browserPrefix}text-emphasis-style');
2528 }
2529
2530 /** Sets the value of "text-emphasis-style" */
2531 static void setTextEmphasisStyle(CSSStyleDeclaration style, String value) {
2532 style.setProperty('${_browserPrefix}text-emphasis-style', value, '');
2533 }
2534
2535 /** Gets the value of "text-fill-color" */
2536 static String getTextFillColor(CSSStyleDeclaration style) {
2537 return style.getPropertyValue('${_browserPrefix}text-fill-color');
2538 }
2539
2540 /** Sets the value of "text-fill-color" */
2541 static void setTextFillColor(CSSStyleDeclaration style, String value) {
2542 style.setProperty('${_browserPrefix}text-fill-color', value, '');
2543 }
2544
2545 /** Gets the value of "text-indent" */
2546 static String getTextIndent(CSSStyleDeclaration style) {
2547 return style.getPropertyValue('text-indent');
2548 }
2549
2550 /** Sets the value of "text-indent" */
2551 static void setTextIndent(CSSStyleDeclaration style, String value) {
2552 style.setProperty('text-indent', value, '');
2553 }
2554
2555 /** Gets the value of "text-line-through" */
2556 static String getTextLineThrough(CSSStyleDeclaration style) {
2557 return style.getPropertyValue('text-line-through');
2558 }
2559
2560 /** Sets the value of "text-line-through" */
2561 static void setTextLineThrough(CSSStyleDeclaration style, String value) {
2562 style.setProperty('text-line-through', value, '');
2563 }
2564
2565 /** Gets the value of "text-line-through-color" */
2566 static String getTextLineThroughColor(CSSStyleDeclaration style) {
2567 return style.getPropertyValue('text-line-through-color');
2568 }
2569
2570 /** Sets the value of "text-line-through-color" */
2571 static void setTextLineThroughColor(CSSStyleDeclaration style, String value) {
2572 style.setProperty('text-line-through-color', value, '');
2573 }
2574
2575 /** Gets the value of "text-line-through-mode" */
2576 static String getTextLineThroughMode(CSSStyleDeclaration style) {
2577 return style.getPropertyValue('text-line-through-mode');
2578 }
2579
2580 /** Sets the value of "text-line-through-mode" */
2581 static void setTextLineThroughMode(CSSStyleDeclaration style, String value) {
2582 style.setProperty('text-line-through-mode', value, '');
2583 }
2584
2585 /** Gets the value of "text-line-through-style" */
2586 static String getTextLineThroughStyle(CSSStyleDeclaration style) {
2587 return style.getPropertyValue('text-line-through-style');
2588 }
2589
2590 /** Sets the value of "text-line-through-style" */
2591 static void setTextLineThroughStyle(CSSStyleDeclaration style, String value) {
2592 style.setProperty('text-line-through-style', value, '');
2593 }
2594
2595 /** Gets the value of "text-line-through-width" */
2596 static String getTextLineThroughWidth(CSSStyleDeclaration style) {
2597 return style.getPropertyValue('text-line-through-width');
2598 }
2599
2600 /** Sets the value of "text-line-through-width" */
2601 static void setTextLineThroughWidth(CSSStyleDeclaration style, String value) {
2602 style.setProperty('text-line-through-width', value, '');
2603 }
2604
2605 /** Gets the value of "text-orientation" */
2606 static String getTextOrientation(CSSStyleDeclaration style) {
2607 return style.getPropertyValue('${_browserPrefix}text-orientation');
2608 }
2609
2610 /** Sets the value of "text-orientation" */
2611 static void setTextOrientation(CSSStyleDeclaration style, String value) {
2612 style.setProperty('${_browserPrefix}text-orientation', value, '');
2613 }
2614
2615 /** Gets the value of "text-overflow" */
2616 static String getTextOverflow(CSSStyleDeclaration style) {
2617 return style.getPropertyValue('text-overflow');
2618 }
2619
2620 /** Sets the value of "text-overflow" */
2621 static void setTextOverflow(CSSStyleDeclaration style, String value) {
2622 style.setProperty('text-overflow', value, '');
2623 }
2624
2625 /** Gets the value of "text-overline" */
2626 static String getTextOverline(CSSStyleDeclaration style) {
2627 return style.getPropertyValue('text-overline');
2628 }
2629
2630 /** Sets the value of "text-overline" */
2631 static void setTextOverline(CSSStyleDeclaration style, String value) {
2632 style.setProperty('text-overline', value, '');
2633 }
2634
2635 /** Gets the value of "text-overline-color" */
2636 static String getTextOverlineColor(CSSStyleDeclaration style) {
2637 return style.getPropertyValue('text-overline-color');
2638 }
2639
2640 /** Sets the value of "text-overline-color" */
2641 static void setTextOverlineColor(CSSStyleDeclaration style, String value) {
2642 style.setProperty('text-overline-color', value, '');
2643 }
2644
2645 /** Gets the value of "text-overline-mode" */
2646 static String getTextOverlineMode(CSSStyleDeclaration style) {
2647 return style.getPropertyValue('text-overline-mode');
2648 }
2649
2650 /** Sets the value of "text-overline-mode" */
2651 static void setTextOverlineMode(CSSStyleDeclaration style, String value) {
2652 style.setProperty('text-overline-mode', value, '');
2653 }
2654
2655 /** Gets the value of "text-overline-style" */
2656 static String getTextOverlineStyle(CSSStyleDeclaration style) {
2657 return style.getPropertyValue('text-overline-style');
2658 }
2659
2660 /** Sets the value of "text-overline-style" */
2661 static void setTextOverlineStyle(CSSStyleDeclaration style, String value) {
2662 style.setProperty('text-overline-style', value, '');
2663 }
2664
2665 /** Gets the value of "text-overline-width" */
2666 static String getTextOverlineWidth(CSSStyleDeclaration style) {
2667 return style.getPropertyValue('text-overline-width');
2668 }
2669
2670 /** Sets the value of "text-overline-width" */
2671 static void setTextOverlineWidth(CSSStyleDeclaration style, String value) {
2672 style.setProperty('text-overline-width', value, '');
2673 }
2674
2675 /** Gets the value of "text-rendering" */
2676 static String getTextRendering(CSSStyleDeclaration style) {
2677 return style.getPropertyValue('text-rendering');
2678 }
2679
2680 /** Sets the value of "text-rendering" */
2681 static void setTextRendering(CSSStyleDeclaration style, String value) {
2682 style.setProperty('text-rendering', value, '');
2683 }
2684
2685 /** Gets the value of "text-security" */
2686 static String getTextSecurity(CSSStyleDeclaration style) {
2687 return style.getPropertyValue('${_browserPrefix}text-security');
2688 }
2689
2690 /** Sets the value of "text-security" */
2691 static void setTextSecurity(CSSStyleDeclaration style, String value) {
2692 style.setProperty('${_browserPrefix}text-security', value, '');
2693 }
2694
2695 /** Gets the value of "text-shadow" */
2696 static String getTextShadow(CSSStyleDeclaration style) {
2697 return style.getPropertyValue('text-shadow');
2698 }
2699
2700 /** Sets the value of "text-shadow" */
2701 static void setTextShadow(CSSStyleDeclaration style, String value) {
2702 style.setProperty('text-shadow', value, '');
2703 }
2704
2705 /** Gets the value of "text-size-adjust" */
2706 static String getTextSizeAdjust(CSSStyleDeclaration style) {
2707 return style.getPropertyValue('${_browserPrefix}text-size-adjust');
2708 }
2709
2710 /** Sets the value of "text-size-adjust" */
2711 static void setTextSizeAdjust(CSSStyleDeclaration style, String value) {
2712 style.setProperty('${_browserPrefix}text-size-adjust', value, '');
2713 }
2714
2715 /** Gets the value of "text-stroke" */
2716 static String getTextStroke(CSSStyleDeclaration style) {
2717 return style.getPropertyValue('${_browserPrefix}text-stroke');
2718 }
2719
2720 /** Sets the value of "text-stroke" */
2721 static void setTextStroke(CSSStyleDeclaration style, String value) {
2722 style.setProperty('${_browserPrefix}text-stroke', value, '');
2723 }
2724
2725 /** Gets the value of "text-stroke-color" */
2726 static String getTextStrokeColor(CSSStyleDeclaration style) {
2727 return style.getPropertyValue('${_browserPrefix}text-stroke-color');
2728 }
2729
2730 /** Sets the value of "text-stroke-color" */
2731 static void setTextStrokeColor(CSSStyleDeclaration style, String value) {
2732 style.setProperty('${_browserPrefix}text-stroke-color', value, '');
2733 }
2734
2735 /** Gets the value of "text-stroke-width" */
2736 static String getTextStrokeWidth(CSSStyleDeclaration style) {
2737 return style.getPropertyValue('${_browserPrefix}text-stroke-width');
2738 }
2739
2740 /** Sets the value of "text-stroke-width" */
2741 static void setTextStrokeWidth(CSSStyleDeclaration style, String value) {
2742 style.setProperty('${_browserPrefix}text-stroke-width', value, '');
2743 }
2744
2745 /** Gets the value of "text-transform" */
2746 static String getTextTransform(CSSStyleDeclaration style) {
2747 return style.getPropertyValue('text-transform');
2748 }
2749
2750 /** Sets the value of "text-transform" */
2751 static void setTextTransform(CSSStyleDeclaration style, String value) {
2752 style.setProperty('text-transform', value, '');
2753 }
2754
2755 /** Gets the value of "text-underline" */
2756 static String getTextUnderline(CSSStyleDeclaration style) {
2757 return style.getPropertyValue('text-underline');
2758 }
2759
2760 /** Sets the value of "text-underline" */
2761 static void setTextUnderline(CSSStyleDeclaration style, String value) {
2762 style.setProperty('text-underline', value, '');
2763 }
2764
2765 /** Gets the value of "text-underline-color" */
2766 static String getTextUnderlineColor(CSSStyleDeclaration style) {
2767 return style.getPropertyValue('text-underline-color');
2768 }
2769
2770 /** Sets the value of "text-underline-color" */
2771 static void setTextUnderlineColor(CSSStyleDeclaration style, String value) {
2772 style.setProperty('text-underline-color', value, '');
2773 }
2774
2775 /** Gets the value of "text-underline-mode" */
2776 static String getTextUnderlineMode(CSSStyleDeclaration style) {
2777 return style.getPropertyValue('text-underline-mode');
2778 }
2779
2780 /** Sets the value of "text-underline-mode" */
2781 static void setTextUnderlineMode(CSSStyleDeclaration style, String value) {
2782 style.setProperty('text-underline-mode', value, '');
2783 }
2784
2785 /** Gets the value of "text-underline-style" */
2786 static String getTextUnderlineStyle(CSSStyleDeclaration style) {
2787 return style.getPropertyValue('text-underline-style');
2788 }
2789
2790 /** Sets the value of "text-underline-style" */
2791 static void setTextUnderlineStyle(CSSStyleDeclaration style, String value) {
2792 style.setProperty('text-underline-style', value, '');
2793 }
2794
2795 /** Gets the value of "text-underline-width" */
2796 static String getTextUnderlineWidth(CSSStyleDeclaration style) {
2797 return style.getPropertyValue('text-underline-width');
2798 }
2799
2800 /** Sets the value of "text-underline-width" */
2801 static void setTextUnderlineWidth(CSSStyleDeclaration style, String value) {
2802 style.setProperty('text-underline-width', value, '');
2803 }
2804
2805 /** Gets the value of "top" */
2806 static String getTop(CSSStyleDeclaration style) {
2807 return style.getPropertyValue('top');
2808 }
2809
2810 /** Sets the value of "top" */
2811 static void setTop(CSSStyleDeclaration style, String value) {
2812 style.setProperty('top', value, '');
2813 }
2814
2815 /** Gets the value of "transform" */
2816 static String getTransform(CSSStyleDeclaration style) {
2817 return style.getPropertyValue('${_browserPrefix}transform');
2818 }
2819
2820 /** Sets the value of "transform" */
2821 static void setTransform(CSSStyleDeclaration style, String value) {
2822 style.setProperty('${_browserPrefix}transform', value, '');
2823 }
2824
2825 /** Gets the value of "transform-origin" */
2826 static String getTransformOrigin(CSSStyleDeclaration style) {
2827 return style.getPropertyValue('${_browserPrefix}transform-origin');
2828 }
2829
2830 /** Sets the value of "transform-origin" */
2831 static void setTransformOrigin(CSSStyleDeclaration style, String value) {
2832 style.setProperty('${_browserPrefix}transform-origin', value, '');
2833 }
2834
2835 /** Gets the value of "transform-origin-x" */
2836 static String getTransformOriginX(CSSStyleDeclaration style) {
2837 return style.getPropertyValue('${_browserPrefix}transform-origin-x');
2838 }
2839
2840 /** Sets the value of "transform-origin-x" */
2841 static void setTransformOriginX(CSSStyleDeclaration style, String value) {
2842 style.setProperty('${_browserPrefix}transform-origin-x', value, '');
2843 }
2844
2845 /** Gets the value of "transform-origin-y" */
2846 static String getTransformOriginY(CSSStyleDeclaration style) {
2847 return style.getPropertyValue('${_browserPrefix}transform-origin-y');
2848 }
2849
2850 /** Sets the value of "transform-origin-y" */
2851 static void setTransformOriginY(CSSStyleDeclaration style, String value) {
2852 style.setProperty('${_browserPrefix}transform-origin-y', value, '');
2853 }
2854
2855 /** Gets the value of "transform-origin-z" */
2856 static String getTransformOriginZ(CSSStyleDeclaration style) {
2857 return style.getPropertyValue('${_browserPrefix}transform-origin-z');
2858 }
2859
2860 /** Sets the value of "transform-origin-z" */
2861 static void setTransformOriginZ(CSSStyleDeclaration style, String value) {
2862 style.setProperty('${_browserPrefix}transform-origin-z', value, '');
2863 }
2864
2865 /** Gets the value of "transform-style" */
2866 static String getTransformStyle(CSSStyleDeclaration style) {
2867 return style.getPropertyValue('${_browserPrefix}transform-style');
2868 }
2869
2870 /** Sets the value of "transform-style" */
2871 static void setTransformStyle(CSSStyleDeclaration style, String value) {
2872 style.setProperty('${_browserPrefix}transform-style', value, '');
2873 }
2874
2875 /** Gets the value of "transition" */
2876 static String getTransition(CSSStyleDeclaration style) {
2877 return style.getPropertyValue('${_browserPrefix}transition');
2878 }
2879
2880 /** Sets the value of "transition" */
2881 static void setTransition(CSSStyleDeclaration style, String value) {
2882 style.setProperty('${_browserPrefix}transition', value, '');
2883 }
2884
2885 /** Gets the value of "transition-delay" */
2886 static String getTransitionDelay(CSSStyleDeclaration style) {
2887 return style.getPropertyValue('${_browserPrefix}transition-delay');
2888 }
2889
2890 /** Sets the value of "transition-delay" */
2891 static void setTransitionDelay(CSSStyleDeclaration style, String value) {
2892 style.setProperty('${_browserPrefix}transition-delay', value, '');
2893 }
2894
2895 /** Gets the value of "transition-duration" */
2896 static String getTransitionDuration(CSSStyleDeclaration style) {
2897 return style.getPropertyValue('${_browserPrefix}transition-duration');
2898 }
2899
2900 /** Sets the value of "transition-duration" */
2901 static void setTransitionDuration(CSSStyleDeclaration style, String value) {
2902 style.setProperty('${_browserPrefix}transition-duration', value, '');
2903 }
2904
2905 /** Gets the value of "transition-property" */
2906 static String getTransitionProperty(CSSStyleDeclaration style) {
2907 return style.getPropertyValue('${_browserPrefix}transition-property');
2908 }
2909
2910 /** Sets the value of "transition-property" */
2911 static void setTransitionProperty(CSSStyleDeclaration style, String value) {
2912 style.setProperty('${_browserPrefix}transition-property', value, '');
2913 }
2914
2915 /** Gets the value of "transition-timing-function" */
2916 static String getTransitionTimingFunction(CSSStyleDeclaration style) {
2917 return style.getPropertyValue('${_browserPrefix}transition-timing-function') ;
2918 }
2919
2920 /** Sets the value of "transition-timing-function" */
2921 static void setTransitionTimingFunction(CSSStyleDeclaration style, String valu e) {
2922 style.setProperty('${_browserPrefix}transition-timing-function', value, '');
2923 }
2924
2925 /** Gets the value of "unicode-bidi" */
2926 static String getUnicodeBidi(CSSStyleDeclaration style) {
2927 return style.getPropertyValue('unicode-bidi');
2928 }
2929
2930 /** Sets the value of "unicode-bidi" */
2931 static void setUnicodeBidi(CSSStyleDeclaration style, String value) {
2932 style.setProperty('unicode-bidi', value, '');
2933 }
2934
2935 /** Gets the value of "unicode-range" */
2936 static String getUnicodeRange(CSSStyleDeclaration style) {
2937 return style.getPropertyValue('unicode-range');
2938 }
2939
2940 /** Sets the value of "unicode-range" */
2941 static void setUnicodeRange(CSSStyleDeclaration style, String value) {
2942 style.setProperty('unicode-range', value, '');
2943 }
2944
2945 /** Gets the value of "user-drag" */
2946 static String getUserDrag(CSSStyleDeclaration style) {
2947 return style.getPropertyValue('${_browserPrefix}user-drag');
2948 }
2949
2950 /** Sets the value of "user-drag" */
2951 static void setUserDrag(CSSStyleDeclaration style, String value) {
2952 style.setProperty('${_browserPrefix}user-drag', value, '');
2953 }
2954
2955 /** Gets the value of "user-modify" */
2956 static String getUserModify(CSSStyleDeclaration style) {
2957 return style.getPropertyValue('${_browserPrefix}user-modify');
2958 }
2959
2960 /** Sets the value of "user-modify" */
2961 static void setUserModify(CSSStyleDeclaration style, String value) {
2962 style.setProperty('${_browserPrefix}user-modify', value, '');
2963 }
2964
2965 /** Gets the value of "user-select" */
2966 static String getUserSelect(CSSStyleDeclaration style) {
2967 return style.getPropertyValue('${_browserPrefix}user-select');
2968 }
2969
2970 /** Sets the value of "user-select" */
2971 static void setUserSelect(CSSStyleDeclaration style, String value) {
2972 style.setProperty('${_browserPrefix}user-select', value, '');
2973 }
2974
2975 /** Gets the value of "vertical-align" */
2976 static String getVerticalAlign(CSSStyleDeclaration style) {
2977 return style.getPropertyValue('vertical-align');
2978 }
2979
2980 /** Sets the value of "vertical-align" */
2981 static void setVerticalAlign(CSSStyleDeclaration style, String value) {
2982 style.setProperty('vertical-align', value, '');
2983 }
2984
2985 /** Gets the value of "visibility" */
2986 static String getVisibility(CSSStyleDeclaration style) {
2987 return style.getPropertyValue('visibility');
2988 }
2989
2990 /** Sets the value of "visibility" */
2991 static void setVisibility(CSSStyleDeclaration style, String value) {
2992 style.setProperty('visibility', value, '');
2993 }
2994
2995 /** Gets the value of "white-space" */
2996 static String getWhiteSpace(CSSStyleDeclaration style) {
2997 return style.getPropertyValue('white-space');
2998 }
2999
3000 /** Sets the value of "white-space" */
3001 static void setWhiteSpace(CSSStyleDeclaration style, String value) {
3002 style.setProperty('white-space', value, '');
3003 }
3004
3005 /** Gets the value of "widows" */
3006 static String getWidows(CSSStyleDeclaration style) {
3007 return style.getPropertyValue('widows');
3008 }
3009
3010 /** Sets the value of "widows" */
3011 static void setWidows(CSSStyleDeclaration style, String value) {
3012 style.setProperty('widows', value, '');
3013 }
3014
3015 /** Gets the value of "width" */
3016 static String getWidth(CSSStyleDeclaration style) {
3017 return style.getPropertyValue('width');
3018 }
3019
3020 /** Sets the value of "width" */
3021 static void setWidth(CSSStyleDeclaration style, String value) {
3022 style.setProperty('width', value, '');
3023 }
3024
3025 /** Gets the value of "word-break" */
3026 static String getWordBreak(CSSStyleDeclaration style) {
3027 return style.getPropertyValue('word-break');
3028 }
3029
3030 /** Sets the value of "word-break" */
3031 static void setWordBreak(CSSStyleDeclaration style, String value) {
3032 style.setProperty('word-break', value, '');
3033 }
3034
3035 /** Gets the value of "word-spacing" */
3036 static String getWordSpacing(CSSStyleDeclaration style) {
3037 return style.getPropertyValue('word-spacing');
3038 }
3039
3040 /** Sets the value of "word-spacing" */
3041 static void setWordSpacing(CSSStyleDeclaration style, String value) {
3042 style.setProperty('word-spacing', value, '');
3043 }
3044
3045 /** Gets the value of "word-wrap" */
3046 static String getWordWrap(CSSStyleDeclaration style) {
3047 return style.getPropertyValue('word-wrap');
3048 }
3049
3050 /** Sets the value of "word-wrap" */
3051 static void setWordWrap(CSSStyleDeclaration style, String value) {
3052 style.setProperty('word-wrap', value, '');
3053 }
3054
3055 /** Gets the value of "wrap-shape" */
3056 static String getWrapShape(CSSStyleDeclaration style) {
3057 return style.getPropertyValue('${_browserPrefix}wrap-shape');
3058 }
3059
3060 /** Sets the value of "wrap-shape" */
3061 static void setWrapShape(CSSStyleDeclaration style, String value) {
3062 style.setProperty('${_browserPrefix}wrap-shape', value, '');
3063 }
3064
3065 /** Gets the value of "writing-mode" */
3066 static String getWritingMode(CSSStyleDeclaration style) {
3067 return style.getPropertyValue('${_browserPrefix}writing-mode');
3068 }
3069
3070 /** Sets the value of "writing-mode" */
3071 static void setWritingMode(CSSStyleDeclaration style, String value) {
3072 style.setProperty('${_browserPrefix}writing-mode', value, '');
3073 }
3074
3075 /** Gets the value of "z-index" */
3076 static String getZIndex(CSSStyleDeclaration style) {
3077 return style.getPropertyValue('z-index');
3078 }
3079
3080 /** Sets the value of "z-index" */
3081 static void setZIndex(CSSStyleDeclaration style, String value) {
3082 style.setProperty('z-index', value, '');
3083 }
3084
3085 /** Gets the value of "zoom" */
3086 static String getZoom(CSSStyleDeclaration style) {
3087 return style.getPropertyValue('zoom');
3088 }
3089
3090 /** Sets the value of "zoom" */
3091 static void setZoom(CSSStyleDeclaration style, String value) {
3092 style.setProperty('zoom', value, '');
3093 }
3094
3095 /** Gets the value of "animation" */
3096 String get animation() {
3097 return getAnimation(raw);
3098 }
3099
3100 /** Sets the value of "animation" */
3101 void set animation(String value) {
3102 setAnimation(raw, value);
3103 }
3104
3105 /** Gets the value of "animation-delay" */
3106 String get animationDelay() {
3107 return getAnimationDelay(raw);
3108 }
3109
3110 /** Sets the value of "animation-delay" */
3111 void set animationDelay(String value) {
3112 setAnimationDelay(raw, value);
3113 }
3114
3115 /** Gets the value of "animation-direction" */
3116 String get animationDirection() {
3117 return getAnimationDirection(raw);
3118 }
3119
3120 /** Sets the value of "animation-direction" */
3121 void set animationDirection(String value) {
3122 setAnimationDirection(raw, value);
3123 }
3124
3125 /** Gets the value of "animation-duration" */
3126 String get animationDuration() {
3127 return getAnimationDuration(raw);
3128 }
3129
3130 /** Sets the value of "animation-duration" */
3131 void set animationDuration(String value) {
3132 setAnimationDuration(raw, value);
3133 }
3134
3135 /** Gets the value of "animation-fill-mode" */
3136 String get animationFillMode() {
3137 return getAnimationFillMode(raw);
3138 }
3139
3140 /** Sets the value of "animation-fill-mode" */
3141 void set animationFillMode(String value) {
3142 setAnimationFillMode(raw, value);
3143 }
3144
3145 /** Gets the value of "animation-iteration-count" */
3146 String get animationIterationCount() {
3147 return getAnimationIterationCount(raw);
3148 }
3149
3150 /** Sets the value of "animation-iteration-count" */
3151 void set animationIterationCount(String value) {
3152 setAnimationIterationCount(raw, value);
3153 }
3154
3155 /** Gets the value of "animation-name" */
3156 String get animationName() {
3157 return getAnimationName(raw);
3158 }
3159
3160 /** Sets the value of "animation-name" */
3161 void set animationName(String value) {
3162 setAnimationName(raw, value);
3163 }
3164
3165 /** Gets the value of "animation-play-state" */
3166 String get animationPlayState() {
3167 return getAnimationPlayState(raw);
3168 }
3169
3170 /** Sets the value of "animation-play-state" */
3171 void set animationPlayState(String value) {
3172 setAnimationPlayState(raw, value);
3173 }
3174
3175 /** Gets the value of "animation-timing-function" */
3176 String get animationTimingFunction() {
3177 return getAnimationTimingFunction(raw);
3178 }
3179
3180 /** Sets the value of "animation-timing-function" */
3181 void set animationTimingFunction(String value) {
3182 setAnimationTimingFunction(raw, value);
3183 }
3184
3185 /** Gets the value of "appearance" */
3186 String get appearance() {
3187 return getAppearance(raw);
3188 }
3189
3190 /** Sets the value of "appearance" */
3191 void set appearance(String value) {
3192 setAppearance(raw, value);
3193 }
3194
3195 /** Gets the value of "backface-visibility" */
3196 String get backfaceVisibility() {
3197 return getBackfaceVisibility(raw);
3198 }
3199
3200 /** Sets the value of "backface-visibility" */
3201 void set backfaceVisibility(String value) {
3202 setBackfaceVisibility(raw, value);
3203 }
3204
3205 /** Gets the value of "background" */
3206 String get background() {
3207 return getBackground(raw);
3208 }
3209
3210 /** Sets the value of "background" */
3211 void set background(String value) {
3212 setBackground(raw, value);
3213 }
3214
3215 /** Gets the value of "background-attachment" */
3216 String get backgroundAttachment() {
3217 return getBackgroundAttachment(raw);
3218 }
3219
3220 /** Sets the value of "background-attachment" */
3221 void set backgroundAttachment(String value) {
3222 setBackgroundAttachment(raw, value);
3223 }
3224
3225 /** Gets the value of "background-clip" */
3226 String get backgroundClip() {
3227 return getBackgroundClip(raw);
3228 }
3229
3230 /** Sets the value of "background-clip" */
3231 void set backgroundClip(String value) {
3232 setBackgroundClip(raw, value);
3233 }
3234
3235 /** Gets the value of "background-color" */
3236 String get backgroundColor() {
3237 return getBackgroundColor(raw);
3238 }
3239
3240 /** Sets the value of "background-color" */
3241 void set backgroundColor(String value) {
3242 setBackgroundColor(raw, value);
3243 }
3244
3245 /** Gets the value of "background-composite" */
3246 String get backgroundComposite() {
3247 return getBackgroundComposite(raw);
3248 }
3249
3250 /** Sets the value of "background-composite" */
3251 void set backgroundComposite(String value) {
3252 setBackgroundComposite(raw, value);
3253 }
3254
3255 /** Gets the value of "background-image" */
3256 String get backgroundImage() {
3257 return getBackgroundImage(raw);
3258 }
3259
3260 /** Sets the value of "background-image" */
3261 void set backgroundImage(String value) {
3262 setBackgroundImage(raw, value);
3263 }
3264
3265 /** Gets the value of "background-origin" */
3266 String get backgroundOrigin() {
3267 return getBackgroundOrigin(raw);
3268 }
3269
3270 /** Sets the value of "background-origin" */
3271 void set backgroundOrigin(String value) {
3272 setBackgroundOrigin(raw, value);
3273 }
3274
3275 /** Gets the value of "background-position" */
3276 String get backgroundPosition() {
3277 return getBackgroundPosition(raw);
3278 }
3279
3280 /** Sets the value of "background-position" */
3281 void set backgroundPosition(String value) {
3282 setBackgroundPosition(raw, value);
3283 }
3284
3285 /** Gets the value of "background-position-x" */
3286 String get backgroundPositionX() {
3287 return getBackgroundPositionX(raw);
3288 }
3289
3290 /** Sets the value of "background-position-x" */
3291 void set backgroundPositionX(String value) {
3292 setBackgroundPositionX(raw, value);
3293 }
3294
3295 /** Gets the value of "background-position-y" */
3296 String get backgroundPositionY() {
3297 return getBackgroundPositionY(raw);
3298 }
3299
3300 /** Sets the value of "background-position-y" */
3301 void set backgroundPositionY(String value) {
3302 setBackgroundPositionY(raw, value);
3303 }
3304
3305 /** Gets the value of "background-repeat" */
3306 String get backgroundRepeat() {
3307 return getBackgroundRepeat(raw);
3308 }
3309
3310 /** Sets the value of "background-repeat" */
3311 void set backgroundRepeat(String value) {
3312 setBackgroundRepeat(raw, value);
3313 }
3314
3315 /** Gets the value of "background-repeat-x" */
3316 String get backgroundRepeatX() {
3317 return getBackgroundRepeatX(raw);
3318 }
3319
3320 /** Sets the value of "background-repeat-x" */
3321 void set backgroundRepeatX(String value) {
3322 setBackgroundRepeatX(raw, value);
3323 }
3324
3325 /** Gets the value of "background-repeat-y" */
3326 String get backgroundRepeatY() {
3327 return getBackgroundRepeatY(raw);
3328 }
3329
3330 /** Sets the value of "background-repeat-y" */
3331 void set backgroundRepeatY(String value) {
3332 setBackgroundRepeatY(raw, value);
3333 }
3334
3335 /** Gets the value of "background-size" */
3336 String get backgroundSize() {
3337 return getBackgroundSize(raw);
3338 }
3339
3340 /** Sets the value of "background-size" */
3341 void set backgroundSize(String value) {
3342 setBackgroundSize(raw, value);
3343 }
3344
3345 /** Gets the value of "border" */
3346 String get border() {
3347 return getBorder(raw);
3348 }
3349
3350 /** Sets the value of "border" */
3351 void set border(String value) {
3352 setBorder(raw, value);
3353 }
3354
3355 /** Gets the value of "border-after" */
3356 String get borderAfter() {
3357 return getBorderAfter(raw);
3358 }
3359
3360 /** Sets the value of "border-after" */
3361 void set borderAfter(String value) {
3362 setBorderAfter(raw, value);
3363 }
3364
3365 /** Gets the value of "border-after-color" */
3366 String get borderAfterColor() {
3367 return getBorderAfterColor(raw);
3368 }
3369
3370 /** Sets the value of "border-after-color" */
3371 void set borderAfterColor(String value) {
3372 setBorderAfterColor(raw, value);
3373 }
3374
3375 /** Gets the value of "border-after-style" */
3376 String get borderAfterStyle() {
3377 return getBorderAfterStyle(raw);
3378 }
3379
3380 /** Sets the value of "border-after-style" */
3381 void set borderAfterStyle(String value) {
3382 setBorderAfterStyle(raw, value);
3383 }
3384
3385 /** Gets the value of "border-after-width" */
3386 String get borderAfterWidth() {
3387 return getBorderAfterWidth(raw);
3388 }
3389
3390 /** Sets the value of "border-after-width" */
3391 void set borderAfterWidth(String value) {
3392 setBorderAfterWidth(raw, value);
3393 }
3394
3395 /** Gets the value of "border-before" */
3396 String get borderBefore() {
3397 return getBorderBefore(raw);
3398 }
3399
3400 /** Sets the value of "border-before" */
3401 void set borderBefore(String value) {
3402 setBorderBefore(raw, value);
3403 }
3404
3405 /** Gets the value of "border-before-color" */
3406 String get borderBeforeColor() {
3407 return getBorderBeforeColor(raw);
3408 }
3409
3410 /** Sets the value of "border-before-color" */
3411 void set borderBeforeColor(String value) {
3412 setBorderBeforeColor(raw, value);
3413 }
3414
3415 /** Gets the value of "border-before-style" */
3416 String get borderBeforeStyle() {
3417 return getBorderBeforeStyle(raw);
3418 }
3419
3420 /** Sets the value of "border-before-style" */
3421 void set borderBeforeStyle(String value) {
3422 setBorderBeforeStyle(raw, value);
3423 }
3424
3425 /** Gets the value of "border-before-width" */
3426 String get borderBeforeWidth() {
3427 return getBorderBeforeWidth(raw);
3428 }
3429
3430 /** Sets the value of "border-before-width" */
3431 void set borderBeforeWidth(String value) {
3432 setBorderBeforeWidth(raw, value);
3433 }
3434
3435 /** Gets the value of "border-bottom" */
3436 String get borderBottom() {
3437 return getBorderBottom(raw);
3438 }
3439
3440 /** Sets the value of "border-bottom" */
3441 void set borderBottom(String value) {
3442 setBorderBottom(raw, value);
3443 }
3444
3445 /** Gets the value of "border-bottom-color" */
3446 String get borderBottomColor() {
3447 return getBorderBottomColor(raw);
3448 }
3449
3450 /** Sets the value of "border-bottom-color" */
3451 void set borderBottomColor(String value) {
3452 setBorderBottomColor(raw, value);
3453 }
3454
3455 /** Gets the value of "border-bottom-left-radius" */
3456 String get borderBottomLeftRadius() {
3457 return getBorderBottomLeftRadius(raw);
3458 }
3459
3460 /** Sets the value of "border-bottom-left-radius" */
3461 void set borderBottomLeftRadius(String value) {
3462 setBorderBottomLeftRadius(raw, value);
3463 }
3464
3465 /** Gets the value of "border-bottom-right-radius" */
3466 String get borderBottomRightRadius() {
3467 return getBorderBottomRightRadius(raw);
3468 }
3469
3470 /** Sets the value of "border-bottom-right-radius" */
3471 void set borderBottomRightRadius(String value) {
3472 setBorderBottomRightRadius(raw, value);
3473 }
3474
3475 /** Gets the value of "border-bottom-style" */
3476 String get borderBottomStyle() {
3477 return getBorderBottomStyle(raw);
3478 }
3479
3480 /** Sets the value of "border-bottom-style" */
3481 void set borderBottomStyle(String value) {
3482 setBorderBottomStyle(raw, value);
3483 }
3484
3485 /** Gets the value of "border-bottom-width" */
3486 String get borderBottomWidth() {
3487 return getBorderBottomWidth(raw);
3488 }
3489
3490 /** Sets the value of "border-bottom-width" */
3491 void set borderBottomWidth(String value) {
3492 setBorderBottomWidth(raw, value);
3493 }
3494
3495 /** Gets the value of "border-collapse" */
3496 String get borderCollapse() {
3497 return getBorderCollapse(raw);
3498 }
3499
3500 /** Sets the value of "border-collapse" */
3501 void set borderCollapse(String value) {
3502 setBorderCollapse(raw, value);
3503 }
3504
3505 /** Gets the value of "border-color" */
3506 String get borderColor() {
3507 return getBorderColor(raw);
3508 }
3509
3510 /** Sets the value of "border-color" */
3511 void set borderColor(String value) {
3512 setBorderColor(raw, value);
3513 }
3514
3515 /** Gets the value of "border-end" */
3516 String get borderEnd() {
3517 return getBorderEnd(raw);
3518 }
3519
3520 /** Sets the value of "border-end" */
3521 void set borderEnd(String value) {
3522 setBorderEnd(raw, value);
3523 }
3524
3525 /** Gets the value of "border-end-color" */
3526 String get borderEndColor() {
3527 return getBorderEndColor(raw);
3528 }
3529
3530 /** Sets the value of "border-end-color" */
3531 void set borderEndColor(String value) {
3532 setBorderEndColor(raw, value);
3533 }
3534
3535 /** Gets the value of "border-end-style" */
3536 String get borderEndStyle() {
3537 return getBorderEndStyle(raw);
3538 }
3539
3540 /** Sets the value of "border-end-style" */
3541 void set borderEndStyle(String value) {
3542 setBorderEndStyle(raw, value);
3543 }
3544
3545 /** Gets the value of "border-end-width" */
3546 String get borderEndWidth() {
3547 return getBorderEndWidth(raw);
3548 }
3549
3550 /** Sets the value of "border-end-width" */
3551 void set borderEndWidth(String value) {
3552 setBorderEndWidth(raw, value);
3553 }
3554
3555 /** Gets the value of "border-fit" */
3556 String get borderFit() {
3557 return getBorderFit(raw);
3558 }
3559
3560 /** Sets the value of "border-fit" */
3561 void set borderFit(String value) {
3562 setBorderFit(raw, value);
3563 }
3564
3565 /** Gets the value of "border-horizontal-spacing" */
3566 String get borderHorizontalSpacing() {
3567 return getBorderHorizontalSpacing(raw);
3568 }
3569
3570 /** Sets the value of "border-horizontal-spacing" */
3571 void set borderHorizontalSpacing(String value) {
3572 setBorderHorizontalSpacing(raw, value);
3573 }
3574
3575 /** Gets the value of "border-image" */
3576 String get borderImage() {
3577 return getBorderImage(raw);
3578 }
3579
3580 /** Sets the value of "border-image" */
3581 void set borderImage(String value) {
3582 setBorderImage(raw, value);
3583 }
3584
3585 /** Gets the value of "border-image-outset" */
3586 String get borderImageOutset() {
3587 return getBorderImageOutset(raw);
3588 }
3589
3590 /** Sets the value of "border-image-outset" */
3591 void set borderImageOutset(String value) {
3592 setBorderImageOutset(raw, value);
3593 }
3594
3595 /** Gets the value of "border-image-repeat" */
3596 String get borderImageRepeat() {
3597 return getBorderImageRepeat(raw);
3598 }
3599
3600 /** Sets the value of "border-image-repeat" */
3601 void set borderImageRepeat(String value) {
3602 setBorderImageRepeat(raw, value);
3603 }
3604
3605 /** Gets the value of "border-image-slice" */
3606 String get borderImageSlice() {
3607 return getBorderImageSlice(raw);
3608 }
3609
3610 /** Sets the value of "border-image-slice" */
3611 void set borderImageSlice(String value) {
3612 setBorderImageSlice(raw, value);
3613 }
3614
3615 /** Gets the value of "border-image-source" */
3616 String get borderImageSource() {
3617 return getBorderImageSource(raw);
3618 }
3619
3620 /** Sets the value of "border-image-source" */
3621 void set borderImageSource(String value) {
3622 setBorderImageSource(raw, value);
3623 }
3624
3625 /** Gets the value of "border-image-width" */
3626 String get borderImageWidth() {
3627 return getBorderImageWidth(raw);
3628 }
3629
3630 /** Sets the value of "border-image-width" */
3631 void set borderImageWidth(String value) {
3632 setBorderImageWidth(raw, value);
3633 }
3634
3635 /** Gets the value of "border-left" */
3636 String get borderLeft() {
3637 return getBorderLeft(raw);
3638 }
3639
3640 /** Sets the value of "border-left" */
3641 void set borderLeft(String value) {
3642 setBorderLeft(raw, value);
3643 }
3644
3645 /** Gets the value of "border-left-color" */
3646 String get borderLeftColor() {
3647 return getBorderLeftColor(raw);
3648 }
3649
3650 /** Sets the value of "border-left-color" */
3651 void set borderLeftColor(String value) {
3652 setBorderLeftColor(raw, value);
3653 }
3654
3655 /** Gets the value of "border-left-style" */
3656 String get borderLeftStyle() {
3657 return getBorderLeftStyle(raw);
3658 }
3659
3660 /** Sets the value of "border-left-style" */
3661 void set borderLeftStyle(String value) {
3662 setBorderLeftStyle(raw, value);
3663 }
3664
3665 /** Gets the value of "border-left-width" */
3666 String get borderLeftWidth() {
3667 return getBorderLeftWidth(raw);
3668 }
3669
3670 /** Sets the value of "border-left-width" */
3671 void set borderLeftWidth(String value) {
3672 setBorderLeftWidth(raw, value);
3673 }
3674
3675 /** Gets the value of "border-radius" */
3676 String get borderRadius() {
3677 return getBorderRadius(raw);
3678 }
3679
3680 /** Sets the value of "border-radius" */
3681 void set borderRadius(String value) {
3682 setBorderRadius(raw, value);
3683 }
3684
3685 /** Gets the value of "border-right" */
3686 String get borderRight() {
3687 return getBorderRight(raw);
3688 }
3689
3690 /** Sets the value of "border-right" */
3691 void set borderRight(String value) {
3692 setBorderRight(raw, value);
3693 }
3694
3695 /** Gets the value of "border-right-color" */
3696 String get borderRightColor() {
3697 return getBorderRightColor(raw);
3698 }
3699
3700 /** Sets the value of "border-right-color" */
3701 void set borderRightColor(String value) {
3702 setBorderRightColor(raw, value);
3703 }
3704
3705 /** Gets the value of "border-right-style" */
3706 String get borderRightStyle() {
3707 return getBorderRightStyle(raw);
3708 }
3709
3710 /** Sets the value of "border-right-style" */
3711 void set borderRightStyle(String value) {
3712 setBorderRightStyle(raw, value);
3713 }
3714
3715 /** Gets the value of "border-right-width" */
3716 String get borderRightWidth() {
3717 return getBorderRightWidth(raw);
3718 }
3719
3720 /** Sets the value of "border-right-width" */
3721 void set borderRightWidth(String value) {
3722 setBorderRightWidth(raw, value);
3723 }
3724
3725 /** Gets the value of "border-spacing" */
3726 String get borderSpacing() {
3727 return getBorderSpacing(raw);
3728 }
3729
3730 /** Sets the value of "border-spacing" */
3731 void set borderSpacing(String value) {
3732 setBorderSpacing(raw, value);
3733 }
3734
3735 /** Gets the value of "border-start" */
3736 String get borderStart() {
3737 return getBorderStart(raw);
3738 }
3739
3740 /** Sets the value of "border-start" */
3741 void set borderStart(String value) {
3742 setBorderStart(raw, value);
3743 }
3744
3745 /** Gets the value of "border-start-color" */
3746 String get borderStartColor() {
3747 return getBorderStartColor(raw);
3748 }
3749
3750 /** Sets the value of "border-start-color" */
3751 void set borderStartColor(String value) {
3752 setBorderStartColor(raw, value);
3753 }
3754
3755 /** Gets the value of "border-start-style" */
3756 String get borderStartStyle() {
3757 return getBorderStartStyle(raw);
3758 }
3759
3760 /** Sets the value of "border-start-style" */
3761 void set borderStartStyle(String value) {
3762 setBorderStartStyle(raw, value);
3763 }
3764
3765 /** Gets the value of "border-start-width" */
3766 String get borderStartWidth() {
3767 return getBorderStartWidth(raw);
3768 }
3769
3770 /** Sets the value of "border-start-width" */
3771 void set borderStartWidth(String value) {
3772 setBorderStartWidth(raw, value);
3773 }
3774
3775 /** Gets the value of "border-style" */
3776 String get borderStyle() {
3777 return getBorderStyle(raw);
3778 }
3779
3780 /** Sets the value of "border-style" */
3781 void set borderStyle(String value) {
3782 setBorderStyle(raw, value);
3783 }
3784
3785 /** Gets the value of "border-top" */
3786 String get borderTop() {
3787 return getBorderTop(raw);
3788 }
3789
3790 /** Sets the value of "border-top" */
3791 void set borderTop(String value) {
3792 setBorderTop(raw, value);
3793 }
3794
3795 /** Gets the value of "border-top-color" */
3796 String get borderTopColor() {
3797 return getBorderTopColor(raw);
3798 }
3799
3800 /** Sets the value of "border-top-color" */
3801 void set borderTopColor(String value) {
3802 setBorderTopColor(raw, value);
3803 }
3804
3805 /** Gets the value of "border-top-left-radius" */
3806 String get borderTopLeftRadius() {
3807 return getBorderTopLeftRadius(raw);
3808 }
3809
3810 /** Sets the value of "border-top-left-radius" */
3811 void set borderTopLeftRadius(String value) {
3812 setBorderTopLeftRadius(raw, value);
3813 }
3814
3815 /** Gets the value of "border-top-right-radius" */
3816 String get borderTopRightRadius() {
3817 return getBorderTopRightRadius(raw);
3818 }
3819
3820 /** Sets the value of "border-top-right-radius" */
3821 void set borderTopRightRadius(String value) {
3822 setBorderTopRightRadius(raw, value);
3823 }
3824
3825 /** Gets the value of "border-top-style" */
3826 String get borderTopStyle() {
3827 return getBorderTopStyle(raw);
3828 }
3829
3830 /** Sets the value of "border-top-style" */
3831 void set borderTopStyle(String value) {
3832 setBorderTopStyle(raw, value);
3833 }
3834
3835 /** Gets the value of "border-top-width" */
3836 String get borderTopWidth() {
3837 return getBorderTopWidth(raw);
3838 }
3839
3840 /** Sets the value of "border-top-width" */
3841 void set borderTopWidth(String value) {
3842 setBorderTopWidth(raw, value);
3843 }
3844
3845 /** Gets the value of "border-vertical-spacing" */
3846 String get borderVerticalSpacing() {
3847 return getBorderVerticalSpacing(raw);
3848 }
3849
3850 /** Sets the value of "border-vertical-spacing" */
3851 void set borderVerticalSpacing(String value) {
3852 setBorderVerticalSpacing(raw, value);
3853 }
3854
3855 /** Gets the value of "border-width" */
3856 String get borderWidth() {
3857 return getBorderWidth(raw);
3858 }
3859
3860 /** Sets the value of "border-width" */
3861 void set borderWidth(String value) {
3862 setBorderWidth(raw, value);
3863 }
3864
3865 /** Gets the value of "bottom" */
3866 String get bottom() {
3867 return getBottom(raw);
3868 }
3869
3870 /** Sets the value of "bottom" */
3871 void set bottom(String value) {
3872 setBottom(raw, value);
3873 }
3874
3875 /** Gets the value of "box-align" */
3876 String get boxAlign() {
3877 return getBoxAlign(raw);
3878 }
3879
3880 /** Sets the value of "box-align" */
3881 void set boxAlign(String value) {
3882 setBoxAlign(raw, value);
3883 }
3884
3885 /** Gets the value of "box-direction" */
3886 String get boxDirection() {
3887 return getBoxDirection(raw);
3888 }
3889
3890 /** Sets the value of "box-direction" */
3891 void set boxDirection(String value) {
3892 setBoxDirection(raw, value);
3893 }
3894
3895 /** Gets the value of "box-flex" */
3896 String get boxFlex() {
3897 return getBoxFlex(raw);
3898 }
3899
3900 /** Sets the value of "box-flex" */
3901 void set boxFlex(String value) {
3902 setBoxFlex(raw, value);
3903 }
3904
3905 /** Gets the value of "box-flex-group" */
3906 String get boxFlexGroup() {
3907 return getBoxFlexGroup(raw);
3908 }
3909
3910 /** Sets the value of "box-flex-group" */
3911 void set boxFlexGroup(String value) {
3912 setBoxFlexGroup(raw, value);
3913 }
3914
3915 /** Gets the value of "box-lines" */
3916 String get boxLines() {
3917 return getBoxLines(raw);
3918 }
3919
3920 /** Sets the value of "box-lines" */
3921 void set boxLines(String value) {
3922 setBoxLines(raw, value);
3923 }
3924
3925 /** Gets the value of "box-ordinal-group" */
3926 String get boxOrdinalGroup() {
3927 return getBoxOrdinalGroup(raw);
3928 }
3929
3930 /** Sets the value of "box-ordinal-group" */
3931 void set boxOrdinalGroup(String value) {
3932 setBoxOrdinalGroup(raw, value);
3933 }
3934
3935 /** Gets the value of "box-orient" */
3936 String get boxOrient() {
3937 return getBoxOrient(raw);
3938 }
3939
3940 /** Sets the value of "box-orient" */
3941 void set boxOrient(String value) {
3942 setBoxOrient(raw, value);
3943 }
3944
3945 /** Gets the value of "box-pack" */
3946 String get boxPack() {
3947 return getBoxPack(raw);
3948 }
3949
3950 /** Sets the value of "box-pack" */
3951 void set boxPack(String value) {
3952 setBoxPack(raw, value);
3953 }
3954
3955 /** Gets the value of "box-reflect" */
3956 String get boxReflect() {
3957 return getBoxReflect(raw);
3958 }
3959
3960 /** Sets the value of "box-reflect" */
3961 void set boxReflect(String value) {
3962 setBoxReflect(raw, value);
3963 }
3964
3965 /** Gets the value of "box-shadow" */
3966 String get boxShadow() {
3967 return getBoxShadow(raw);
3968 }
3969
3970 /** Sets the value of "box-shadow" */
3971 void set boxShadow(String value) {
3972 setBoxShadow(raw, value);
3973 }
3974
3975 /** Gets the value of "box-sizing" */
3976 String get boxSizing() {
3977 return getBoxSizing(raw);
3978 }
3979
3980 /** Sets the value of "box-sizing" */
3981 void set boxSizing(String value) {
3982 setBoxSizing(raw, value);
3983 }
3984
3985 /** Gets the value of "caption-side" */
3986 String get captionSide() {
3987 return getCaptionSide(raw);
3988 }
3989
3990 /** Sets the value of "caption-side" */
3991 void set captionSide(String value) {
3992 setCaptionSide(raw, value);
3993 }
3994
3995 /** Gets the value of "clear" */
3996 String get clear() {
3997 return getClear(raw);
3998 }
3999
4000 /** Sets the value of "clear" */
4001 void set clear(String value) {
4002 setClear(raw, value);
4003 }
4004
4005 /** Gets the value of "clip" */
4006 String get clip() {
4007 return getClip(raw);
4008 }
4009
4010 /** Sets the value of "clip" */
4011 void set clip(String value) {
4012 setClip(raw, value);
4013 }
4014
4015 /** Gets the value of "color" */
4016 String get color() {
4017 return getColor(raw);
4018 }
4019
4020 /** Sets the value of "color" */
4021 void set color(String value) {
4022 setColor(raw, value);
4023 }
4024
4025 /** Gets the value of "color-correction" */
4026 String get colorCorrection() {
4027 return getColorCorrection(raw);
4028 }
4029
4030 /** Sets the value of "color-correction" */
4031 void set colorCorrection(String value) {
4032 setColorCorrection(raw, value);
4033 }
4034
4035 /** Gets the value of "column-break-after" */
4036 String get columnBreakAfter() {
4037 return getColumnBreakAfter(raw);
4038 }
4039
4040 /** Sets the value of "column-break-after" */
4041 void set columnBreakAfter(String value) {
4042 setColumnBreakAfter(raw, value);
4043 }
4044
4045 /** Gets the value of "column-break-before" */
4046 String get columnBreakBefore() {
4047 return getColumnBreakBefore(raw);
4048 }
4049
4050 /** Sets the value of "column-break-before" */
4051 void set columnBreakBefore(String value) {
4052 setColumnBreakBefore(raw, value);
4053 }
4054
4055 /** Gets the value of "column-break-inside" */
4056 String get columnBreakInside() {
4057 return getColumnBreakInside(raw);
4058 }
4059
4060 /** Sets the value of "column-break-inside" */
4061 void set columnBreakInside(String value) {
4062 setColumnBreakInside(raw, value);
4063 }
4064
4065 /** Gets the value of "column-count" */
4066 String get columnCount() {
4067 return getColumnCount(raw);
4068 }
4069
4070 /** Sets the value of "column-count" */
4071 void set columnCount(String value) {
4072 setColumnCount(raw, value);
4073 }
4074
4075 /** Gets the value of "column-gap" */
4076 String get columnGap() {
4077 return getColumnGap(raw);
4078 }
4079
4080 /** Sets the value of "column-gap" */
4081 void set columnGap(String value) {
4082 setColumnGap(raw, value);
4083 }
4084
4085 /** Gets the value of "column-rule" */
4086 String get columnRule() {
4087 return getColumnRule(raw);
4088 }
4089
4090 /** Sets the value of "column-rule" */
4091 void set columnRule(String value) {
4092 setColumnRule(raw, value);
4093 }
4094
4095 /** Gets the value of "column-rule-color" */
4096 String get columnRuleColor() {
4097 return getColumnRuleColor(raw);
4098 }
4099
4100 /** Sets the value of "column-rule-color" */
4101 void set columnRuleColor(String value) {
4102 setColumnRuleColor(raw, value);
4103 }
4104
4105 /** Gets the value of "column-rule-style" */
4106 String get columnRuleStyle() {
4107 return getColumnRuleStyle(raw);
4108 }
4109
4110 /** Sets the value of "column-rule-style" */
4111 void set columnRuleStyle(String value) {
4112 setColumnRuleStyle(raw, value);
4113 }
4114
4115 /** Gets the value of "column-rule-width" */
4116 String get columnRuleWidth() {
4117 return getColumnRuleWidth(raw);
4118 }
4119
4120 /** Sets the value of "column-rule-width" */
4121 void set columnRuleWidth(String value) {
4122 setColumnRuleWidth(raw, value);
4123 }
4124
4125 /** Gets the value of "column-span" */
4126 String get columnSpan() {
4127 return getColumnSpan(raw);
4128 }
4129
4130 /** Sets the value of "column-span" */
4131 void set columnSpan(String value) {
4132 setColumnSpan(raw, value);
4133 }
4134
4135 /** Gets the value of "column-width" */
4136 String get columnWidth() {
4137 return getColumnWidth(raw);
4138 }
4139
4140 /** Sets the value of "column-width" */
4141 void set columnWidth(String value) {
4142 setColumnWidth(raw, value);
4143 }
4144
4145 /** Gets the value of "columns" */
4146 String get columns() {
4147 return getColumns(raw);
4148 }
4149
4150 /** Sets the value of "columns" */
4151 void set columns(String value) {
4152 setColumns(raw, value);
4153 }
4154
4155 /** Gets the value of "content" */
4156 String get content() {
4157 return getContent(raw);
4158 }
4159
4160 /** Sets the value of "content" */
4161 void set content(String value) {
4162 setContent(raw, value);
4163 }
4164
4165 /** Gets the value of "content-order" */
4166 String get contentOrder() {
4167 return getContentOrder(raw);
4168 }
4169
4170 /** Sets the value of "content-order" */
4171 void set contentOrder(String value) {
4172 setContentOrder(raw, value);
4173 }
4174
4175 /** Gets the value of "counter-increment" */
4176 String get counterIncrement() {
4177 return getCounterIncrement(raw);
4178 }
4179
4180 /** Sets the value of "counter-increment" */
4181 void set counterIncrement(String value) {
4182 setCounterIncrement(raw, value);
4183 }
4184
4185 /** Gets the value of "counter-reset" */
4186 String get counterReset() {
4187 return getCounterReset(raw);
4188 }
4189
4190 /** Sets the value of "counter-reset" */
4191 void set counterReset(String value) {
4192 setCounterReset(raw, value);
4193 }
4194
4195 /** Gets the value of "cursor" */
4196 String get cursor() {
4197 return getCursor(raw);
4198 }
4199
4200 /** Sets the value of "cursor" */
4201 void set cursor(String value) {
4202 setCursor(raw, value);
4203 }
4204
4205 /** Gets the value of "direction" */
4206 String get direction() {
4207 return getDirection(raw);
4208 }
4209
4210 /** Sets the value of "direction" */
4211 void set direction(String value) {
4212 setDirection(raw, value);
4213 }
4214
4215 /** Gets the value of "display" */
4216 String get display() {
4217 return getDisplay(raw);
4218 }
4219
4220 /** Sets the value of "display" */
4221 void set display(String value) {
4222 setDisplay(raw, value);
4223 }
4224
4225 /** Gets the value of "empty-cells" */
4226 String get emptyCells() {
4227 return getEmptyCells(raw);
4228 }
4229
4230 /** Sets the value of "empty-cells" */
4231 void set emptyCells(String value) {
4232 setEmptyCells(raw, value);
4233 }
4234
4235 /** Gets the value of "filter" */
4236 String get filter() {
4237 return getFilter(raw);
4238 }
4239
4240 /** Sets the value of "filter" */
4241 void set filter(String value) {
4242 setFilter(raw, value);
4243 }
4244
4245 /** Gets the value of "flex-align" */
4246 String get flexAlign() {
4247 return getFlexAlign(raw);
4248 }
4249
4250 /** Sets the value of "flex-align" */
4251 void set flexAlign(String value) {
4252 setFlexAlign(raw, value);
4253 }
4254
4255 /** Gets the value of "flex-flow" */
4256 String get flexFlow() {
4257 return getFlexFlow(raw);
4258 }
4259
4260 /** Sets the value of "flex-flow" */
4261 void set flexFlow(String value) {
4262 setFlexFlow(raw, value);
4263 }
4264
4265 /** Gets the value of "flex-order" */
4266 String get flexOrder() {
4267 return getFlexOrder(raw);
4268 }
4269
4270 /** Sets the value of "flex-order" */
4271 void set flexOrder(String value) {
4272 setFlexOrder(raw, value);
4273 }
4274
4275 /** Gets the value of "flex-pack" */
4276 String get flexPack() {
4277 return getFlexPack(raw);
4278 }
4279
4280 /** Sets the value of "flex-pack" */
4281 void set flexPack(String value) {
4282 setFlexPack(raw, value);
4283 }
4284
4285 /** Gets the value of "float" */
4286 String get float() {
4287 return getFloat(raw);
4288 }
4289
4290 /** Sets the value of "float" */
4291 void set float(String value) {
4292 setFloat(raw, value);
4293 }
4294
4295 /** Gets the value of "flow" */
4296 String get flow() {
4297 return getFlow(raw);
4298 }
4299
4300 /** Sets the value of "flow" */
4301 void set flow(String value) {
4302 setFlow(raw, value);
4303 }
4304
4305 /** Gets the value of "font" */
4306 String get font() {
4307 return getFont(raw);
4308 }
4309
4310 /** Sets the value of "font" */
4311 void set font(String value) {
4312 setFont(raw, value);
4313 }
4314
4315 /** Gets the value of "font-family" */
4316 String get fontFamily() {
4317 return getFontFamily(raw);
4318 }
4319
4320 /** Sets the value of "font-family" */
4321 void set fontFamily(String value) {
4322 setFontFamily(raw, value);
4323 }
4324
4325 /** Gets the value of "font-feature-settings" */
4326 String get fontFeatureSettings() {
4327 return getFontFeatureSettings(raw);
4328 }
4329
4330 /** Sets the value of "font-feature-settings" */
4331 void set fontFeatureSettings(String value) {
4332 setFontFeatureSettings(raw, value);
4333 }
4334
4335 /** Gets the value of "font-size" */
4336 String get fontSize() {
4337 return getFontSize(raw);
4338 }
4339
4340 /** Sets the value of "font-size" */
4341 void set fontSize(String value) {
4342 setFontSize(raw, value);
4343 }
4344
4345 /** Gets the value of "font-size-delta" */
4346 String get fontSizeDelta() {
4347 return getFontSizeDelta(raw);
4348 }
4349
4350 /** Sets the value of "font-size-delta" */
4351 void set fontSizeDelta(String value) {
4352 setFontSizeDelta(raw, value);
4353 }
4354
4355 /** Gets the value of "font-smoothing" */
4356 String get fontSmoothing() {
4357 return getFontSmoothing(raw);
4358 }
4359
4360 /** Sets the value of "font-smoothing" */
4361 void set fontSmoothing(String value) {
4362 setFontSmoothing(raw, value);
4363 }
4364
4365 /** Gets the value of "font-stretch" */
4366 String get fontStretch() {
4367 return getFontStretch(raw);
4368 }
4369
4370 /** Sets the value of "font-stretch" */
4371 void set fontStretch(String value) {
4372 setFontStretch(raw, value);
4373 }
4374
4375 /** Gets the value of "font-style" */
4376 String get fontStyle() {
4377 return getFontStyle(raw);
4378 }
4379
4380 /** Sets the value of "font-style" */
4381 void set fontStyle(String value) {
4382 setFontStyle(raw, value);
4383 }
4384
4385 /** Gets the value of "font-variant" */
4386 String get fontVariant() {
4387 return getFontVariant(raw);
4388 }
4389
4390 /** Sets the value of "font-variant" */
4391 void set fontVariant(String value) {
4392 setFontVariant(raw, value);
4393 }
4394
4395 /** Gets the value of "font-weight" */
4396 String get fontWeight() {
4397 return getFontWeight(raw);
4398 }
4399
4400 /** Sets the value of "font-weight" */
4401 void set fontWeight(String value) {
4402 setFontWeight(raw, value);
4403 }
4404
4405 /** Gets the value of "height" */
4406 String get height() {
4407 return getHeight(raw);
4408 }
4409
4410 /** Sets the value of "height" */
4411 void set height(String value) {
4412 setHeight(raw, value);
4413 }
4414
4415 /** Gets the value of "highlight" */
4416 String get highlight() {
4417 return getHighlight(raw);
4418 }
4419
4420 /** Sets the value of "highlight" */
4421 void set highlight(String value) {
4422 setHighlight(raw, value);
4423 }
4424
4425 /** Gets the value of "hyphenate-character" */
4426 String get hyphenateCharacter() {
4427 return getHyphenateCharacter(raw);
4428 }
4429
4430 /** Sets the value of "hyphenate-character" */
4431 void set hyphenateCharacter(String value) {
4432 setHyphenateCharacter(raw, value);
4433 }
4434
4435 /** Gets the value of "hyphenate-limit-after" */
4436 String get hyphenateLimitAfter() {
4437 return getHyphenateLimitAfter(raw);
4438 }
4439
4440 /** Sets the value of "hyphenate-limit-after" */
4441 void set hyphenateLimitAfter(String value) {
4442 setHyphenateLimitAfter(raw, value);
4443 }
4444
4445 /** Gets the value of "hyphenate-limit-before" */
4446 String get hyphenateLimitBefore() {
4447 return getHyphenateLimitBefore(raw);
4448 }
4449
4450 /** Sets the value of "hyphenate-limit-before" */
4451 void set hyphenateLimitBefore(String value) {
4452 setHyphenateLimitBefore(raw, value);
4453 }
4454
4455 /** Gets the value of "hyphenate-limit-lines" */
4456 String get hyphenateLimitLines() {
4457 return getHyphenateLimitLines(raw);
4458 }
4459
4460 /** Sets the value of "hyphenate-limit-lines" */
4461 void set hyphenateLimitLines(String value) {
4462 setHyphenateLimitLines(raw, value);
4463 }
4464
4465 /** Gets the value of "hyphens" */
4466 String get hyphens() {
4467 return getHyphens(raw);
4468 }
4469
4470 /** Sets the value of "hyphens" */
4471 void set hyphens(String value) {
4472 setHyphens(raw, value);
4473 }
4474
4475 /** Gets the value of "image-rendering" */
4476 String get imageRendering() {
4477 return getImageRendering(raw);
4478 }
4479
4480 /** Sets the value of "image-rendering" */
4481 void set imageRendering(String value) {
4482 setImageRendering(raw, value);
4483 }
4484
4485 /** Gets the value of "left" */
4486 String get left() {
4487 return getLeft(raw);
4488 }
4489
4490 /** Sets the value of "left" */
4491 void set left(String value) {
4492 setLeft(raw, value);
4493 }
4494
4495 /** Gets the value of "letter-spacing" */
4496 String get letterSpacing() {
4497 return getLetterSpacing(raw);
4498 }
4499
4500 /** Sets the value of "letter-spacing" */
4501 void set letterSpacing(String value) {
4502 setLetterSpacing(raw, value);
4503 }
4504
4505 /** Gets the value of "line-box-contain" */
4506 String get lineBoxContain() {
4507 return getLineBoxContain(raw);
4508 }
4509
4510 /** Sets the value of "line-box-contain" */
4511 void set lineBoxContain(String value) {
4512 setLineBoxContain(raw, value);
4513 }
4514
4515 /** Gets the value of "line-break" */
4516 String get lineBreak() {
4517 return getLineBreak(raw);
4518 }
4519
4520 /** Sets the value of "line-break" */
4521 void set lineBreak(String value) {
4522 setLineBreak(raw, value);
4523 }
4524
4525 /** Gets the value of "line-clamp" */
4526 String get lineClamp() {
4527 return getLineClamp(raw);
4528 }
4529
4530 /** Sets the value of "line-clamp" */
4531 void set lineClamp(String value) {
4532 setLineClamp(raw, value);
4533 }
4534
4535 /** Gets the value of "line-height" */
4536 String get lineHeight() {
4537 return getLineHeight(raw);
4538 }
4539
4540 /** Sets the value of "line-height" */
4541 void set lineHeight(String value) {
4542 setLineHeight(raw, value);
4543 }
4544
4545 /** Gets the value of "list-style" */
4546 String get listStyle() {
4547 return getListStyle(raw);
4548 }
4549
4550 /** Sets the value of "list-style" */
4551 void set listStyle(String value) {
4552 setListStyle(raw, value);
4553 }
4554
4555 /** Gets the value of "list-style-image" */
4556 String get listStyleImage() {
4557 return getListStyleImage(raw);
4558 }
4559
4560 /** Sets the value of "list-style-image" */
4561 void set listStyleImage(String value) {
4562 setListStyleImage(raw, value);
4563 }
4564
4565 /** Gets the value of "list-style-position" */
4566 String get listStylePosition() {
4567 return getListStylePosition(raw);
4568 }
4569
4570 /** Sets the value of "list-style-position" */
4571 void set listStylePosition(String value) {
4572 setListStylePosition(raw, value);
4573 }
4574
4575 /** Gets the value of "list-style-type" */
4576 String get listStyleType() {
4577 return getListStyleType(raw);
4578 }
4579
4580 /** Sets the value of "list-style-type" */
4581 void set listStyleType(String value) {
4582 setListStyleType(raw, value);
4583 }
4584
4585 /** Gets the value of "locale" */
4586 String get locale() {
4587 return getLocale(raw);
4588 }
4589
4590 /** Sets the value of "locale" */
4591 void set locale(String value) {
4592 setLocale(raw, value);
4593 }
4594
4595 /** Gets the value of "logical-height" */
4596 String get logicalHeight() {
4597 return getLogicalHeight(raw);
4598 }
4599
4600 /** Sets the value of "logical-height" */
4601 void set logicalHeight(String value) {
4602 setLogicalHeight(raw, value);
4603 }
4604
4605 /** Gets the value of "logical-width" */
4606 String get logicalWidth() {
4607 return getLogicalWidth(raw);
4608 }
4609
4610 /** Sets the value of "logical-width" */
4611 void set logicalWidth(String value) {
4612 setLogicalWidth(raw, value);
4613 }
4614
4615 /** Gets the value of "margin" */
4616 String get margin() {
4617 return getMargin(raw);
4618 }
4619
4620 /** Sets the value of "margin" */
4621 void set margin(String value) {
4622 setMargin(raw, value);
4623 }
4624
4625 /** Gets the value of "margin-after" */
4626 String get marginAfter() {
4627 return getMarginAfter(raw);
4628 }
4629
4630 /** Sets the value of "margin-after" */
4631 void set marginAfter(String value) {
4632 setMarginAfter(raw, value);
4633 }
4634
4635 /** Gets the value of "margin-after-collapse" */
4636 String get marginAfterCollapse() {
4637 return getMarginAfterCollapse(raw);
4638 }
4639
4640 /** Sets the value of "margin-after-collapse" */
4641 void set marginAfterCollapse(String value) {
4642 setMarginAfterCollapse(raw, value);
4643 }
4644
4645 /** Gets the value of "margin-before" */
4646 String get marginBefore() {
4647 return getMarginBefore(raw);
4648 }
4649
4650 /** Sets the value of "margin-before" */
4651 void set marginBefore(String value) {
4652 setMarginBefore(raw, value);
4653 }
4654
4655 /** Gets the value of "margin-before-collapse" */
4656 String get marginBeforeCollapse() {
4657 return getMarginBeforeCollapse(raw);
4658 }
4659
4660 /** Sets the value of "margin-before-collapse" */
4661 void set marginBeforeCollapse(String value) {
4662 setMarginBeforeCollapse(raw, value);
4663 }
4664
4665 /** Gets the value of "margin-bottom" */
4666 String get marginBottom() {
4667 return getMarginBottom(raw);
4668 }
4669
4670 /** Sets the value of "margin-bottom" */
4671 void set marginBottom(String value) {
4672 setMarginBottom(raw, value);
4673 }
4674
4675 /** Gets the value of "margin-bottom-collapse" */
4676 String get marginBottomCollapse() {
4677 return getMarginBottomCollapse(raw);
4678 }
4679
4680 /** Sets the value of "margin-bottom-collapse" */
4681 void set marginBottomCollapse(String value) {
4682 setMarginBottomCollapse(raw, value);
4683 }
4684
4685 /** Gets the value of "margin-collapse" */
4686 String get marginCollapse() {
4687 return getMarginCollapse(raw);
4688 }
4689
4690 /** Sets the value of "margin-collapse" */
4691 void set marginCollapse(String value) {
4692 setMarginCollapse(raw, value);
4693 }
4694
4695 /** Gets the value of "margin-end" */
4696 String get marginEnd() {
4697 return getMarginEnd(raw);
4698 }
4699
4700 /** Sets the value of "margin-end" */
4701 void set marginEnd(String value) {
4702 setMarginEnd(raw, value);
4703 }
4704
4705 /** Gets the value of "margin-left" */
4706 String get marginLeft() {
4707 return getMarginLeft(raw);
4708 }
4709
4710 /** Sets the value of "margin-left" */
4711 void set marginLeft(String value) {
4712 setMarginLeft(raw, value);
4713 }
4714
4715 /** Gets the value of "margin-right" */
4716 String get marginRight() {
4717 return getMarginRight(raw);
4718 }
4719
4720 /** Sets the value of "margin-right" */
4721 void set marginRight(String value) {
4722 setMarginRight(raw, value);
4723 }
4724
4725 /** Gets the value of "margin-start" */
4726 String get marginStart() {
4727 return getMarginStart(raw);
4728 }
4729
4730 /** Sets the value of "margin-start" */
4731 void set marginStart(String value) {
4732 setMarginStart(raw, value);
4733 }
4734
4735 /** Gets the value of "margin-top" */
4736 String get marginTop() {
4737 return getMarginTop(raw);
4738 }
4739
4740 /** Sets the value of "margin-top" */
4741 void set marginTop(String value) {
4742 setMarginTop(raw, value);
4743 }
4744
4745 /** Gets the value of "margin-top-collapse" */
4746 String get marginTopCollapse() {
4747 return getMarginTopCollapse(raw);
4748 }
4749
4750 /** Sets the value of "margin-top-collapse" */
4751 void set marginTopCollapse(String value) {
4752 setMarginTopCollapse(raw, value);
4753 }
4754
4755 /** Gets the value of "marquee" */
4756 String get marquee() {
4757 return getMarquee(raw);
4758 }
4759
4760 /** Sets the value of "marquee" */
4761 void set marquee(String value) {
4762 setMarquee(raw, value);
4763 }
4764
4765 /** Gets the value of "marquee-direction" */
4766 String get marqueeDirection() {
4767 return getMarqueeDirection(raw);
4768 }
4769
4770 /** Sets the value of "marquee-direction" */
4771 void set marqueeDirection(String value) {
4772 setMarqueeDirection(raw, value);
4773 }
4774
4775 /** Gets the value of "marquee-increment" */
4776 String get marqueeIncrement() {
4777 return getMarqueeIncrement(raw);
4778 }
4779
4780 /** Sets the value of "marquee-increment" */
4781 void set marqueeIncrement(String value) {
4782 setMarqueeIncrement(raw, value);
4783 }
4784
4785 /** Gets the value of "marquee-repetition" */
4786 String get marqueeRepetition() {
4787 return getMarqueeRepetition(raw);
4788 }
4789
4790 /** Sets the value of "marquee-repetition" */
4791 void set marqueeRepetition(String value) {
4792 setMarqueeRepetition(raw, value);
4793 }
4794
4795 /** Gets the value of "marquee-speed" */
4796 String get marqueeSpeed() {
4797 return getMarqueeSpeed(raw);
4798 }
4799
4800 /** Sets the value of "marquee-speed" */
4801 void set marqueeSpeed(String value) {
4802 setMarqueeSpeed(raw, value);
4803 }
4804
4805 /** Gets the value of "marquee-style" */
4806 String get marqueeStyle() {
4807 return getMarqueeStyle(raw);
4808 }
4809
4810 /** Sets the value of "marquee-style" */
4811 void set marqueeStyle(String value) {
4812 setMarqueeStyle(raw, value);
4813 }
4814
4815 /** Gets the value of "mask" */
4816 String get mask() {
4817 return getMask(raw);
4818 }
4819
4820 /** Sets the value of "mask" */
4821 void set mask(String value) {
4822 setMask(raw, value);
4823 }
4824
4825 /** Gets the value of "mask-attachment" */
4826 String get maskAttachment() {
4827 return getMaskAttachment(raw);
4828 }
4829
4830 /** Sets the value of "mask-attachment" */
4831 void set maskAttachment(String value) {
4832 setMaskAttachment(raw, value);
4833 }
4834
4835 /** Gets the value of "mask-box-image" */
4836 String get maskBoxImage() {
4837 return getMaskBoxImage(raw);
4838 }
4839
4840 /** Sets the value of "mask-box-image" */
4841 void set maskBoxImage(String value) {
4842 setMaskBoxImage(raw, value);
4843 }
4844
4845 /** Gets the value of "mask-box-image-outset" */
4846 String get maskBoxImageOutset() {
4847 return getMaskBoxImageOutset(raw);
4848 }
4849
4850 /** Sets the value of "mask-box-image-outset" */
4851 void set maskBoxImageOutset(String value) {
4852 setMaskBoxImageOutset(raw, value);
4853 }
4854
4855 /** Gets the value of "mask-box-image-repeat" */
4856 String get maskBoxImageRepeat() {
4857 return getMaskBoxImageRepeat(raw);
4858 }
4859
4860 /** Sets the value of "mask-box-image-repeat" */
4861 void set maskBoxImageRepeat(String value) {
4862 setMaskBoxImageRepeat(raw, value);
4863 }
4864
4865 /** Gets the value of "mask-box-image-slice" */
4866 String get maskBoxImageSlice() {
4867 return getMaskBoxImageSlice(raw);
4868 }
4869
4870 /** Sets the value of "mask-box-image-slice" */
4871 void set maskBoxImageSlice(String value) {
4872 setMaskBoxImageSlice(raw, value);
4873 }
4874
4875 /** Gets the value of "mask-box-image-source" */
4876 String get maskBoxImageSource() {
4877 return getMaskBoxImageSource(raw);
4878 }
4879
4880 /** Sets the value of "mask-box-image-source" */
4881 void set maskBoxImageSource(String value) {
4882 setMaskBoxImageSource(raw, value);
4883 }
4884
4885 /** Gets the value of "mask-box-image-width" */
4886 String get maskBoxImageWidth() {
4887 return getMaskBoxImageWidth(raw);
4888 }
4889
4890 /** Sets the value of "mask-box-image-width" */
4891 void set maskBoxImageWidth(String value) {
4892 setMaskBoxImageWidth(raw, value);
4893 }
4894
4895 /** Gets the value of "mask-clip" */
4896 String get maskClip() {
4897 return getMaskClip(raw);
4898 }
4899
4900 /** Sets the value of "mask-clip" */
4901 void set maskClip(String value) {
4902 setMaskClip(raw, value);
4903 }
4904
4905 /** Gets the value of "mask-composite" */
4906 String get maskComposite() {
4907 return getMaskComposite(raw);
4908 }
4909
4910 /** Sets the value of "mask-composite" */
4911 void set maskComposite(String value) {
4912 setMaskComposite(raw, value);
4913 }
4914
4915 /** Gets the value of "mask-image" */
4916 String get maskImage() {
4917 return getMaskImage(raw);
4918 }
4919
4920 /** Sets the value of "mask-image" */
4921 void set maskImage(String value) {
4922 setMaskImage(raw, value);
4923 }
4924
4925 /** Gets the value of "mask-origin" */
4926 String get maskOrigin() {
4927 return getMaskOrigin(raw);
4928 }
4929
4930 /** Sets the value of "mask-origin" */
4931 void set maskOrigin(String value) {
4932 setMaskOrigin(raw, value);
4933 }
4934
4935 /** Gets the value of "mask-position" */
4936 String get maskPosition() {
4937 return getMaskPosition(raw);
4938 }
4939
4940 /** Sets the value of "mask-position" */
4941 void set maskPosition(String value) {
4942 setMaskPosition(raw, value);
4943 }
4944
4945 /** Gets the value of "mask-position-x" */
4946 String get maskPositionX() {
4947 return getMaskPositionX(raw);
4948 }
4949
4950 /** Sets the value of "mask-position-x" */
4951 void set maskPositionX(String value) {
4952 setMaskPositionX(raw, value);
4953 }
4954
4955 /** Gets the value of "mask-position-y" */
4956 String get maskPositionY() {
4957 return getMaskPositionY(raw);
4958 }
4959
4960 /** Sets the value of "mask-position-y" */
4961 void set maskPositionY(String value) {
4962 setMaskPositionY(raw, value);
4963 }
4964
4965 /** Gets the value of "mask-repeat" */
4966 String get maskRepeat() {
4967 return getMaskRepeat(raw);
4968 }
4969
4970 /** Sets the value of "mask-repeat" */
4971 void set maskRepeat(String value) {
4972 setMaskRepeat(raw, value);
4973 }
4974
4975 /** Gets the value of "mask-repeat-x" */
4976 String get maskRepeatX() {
4977 return getMaskRepeatX(raw);
4978 }
4979
4980 /** Sets the value of "mask-repeat-x" */
4981 void set maskRepeatX(String value) {
4982 setMaskRepeatX(raw, value);
4983 }
4984
4985 /** Gets the value of "mask-repeat-y" */
4986 String get maskRepeatY() {
4987 return getMaskRepeatY(raw);
4988 }
4989
4990 /** Sets the value of "mask-repeat-y" */
4991 void set maskRepeatY(String value) {
4992 setMaskRepeatY(raw, value);
4993 }
4994
4995 /** Gets the value of "mask-size" */
4996 String get maskSize() {
4997 return getMaskSize(raw);
4998 }
4999
5000 /** Sets the value of "mask-size" */
5001 void set maskSize(String value) {
5002 setMaskSize(raw, value);
5003 }
5004
5005 /** Gets the value of "match-nearest-mail-blockquote-color" */
5006 String get matchNearestMailBlockquoteColor() {
5007 return getMatchNearestMailBlockquoteColor(raw);
5008 }
5009
5010 /** Sets the value of "match-nearest-mail-blockquote-color" */
5011 void set matchNearestMailBlockquoteColor(String value) {
5012 setMatchNearestMailBlockquoteColor(raw, value);
5013 }
5014
5015 /** Gets the value of "max-height" */
5016 String get maxHeight() {
5017 return getMaxHeight(raw);
5018 }
5019
5020 /** Sets the value of "max-height" */
5021 void set maxHeight(String value) {
5022 setMaxHeight(raw, value);
5023 }
5024
5025 /** Gets the value of "max-logical-height" */
5026 String get maxLogicalHeight() {
5027 return getMaxLogicalHeight(raw);
5028 }
5029
5030 /** Sets the value of "max-logical-height" */
5031 void set maxLogicalHeight(String value) {
5032 setMaxLogicalHeight(raw, value);
5033 }
5034
5035 /** Gets the value of "max-logical-width" */
5036 String get maxLogicalWidth() {
5037 return getMaxLogicalWidth(raw);
5038 }
5039
5040 /** Sets the value of "max-logical-width" */
5041 void set maxLogicalWidth(String value) {
5042 setMaxLogicalWidth(raw, value);
5043 }
5044
5045 /** Gets the value of "max-width" */
5046 String get maxWidth() {
5047 return getMaxWidth(raw);
5048 }
5049
5050 /** Sets the value of "max-width" */
5051 void set maxWidth(String value) {
5052 setMaxWidth(raw, value);
5053 }
5054
5055 /** Gets the value of "min-height" */
5056 String get minHeight() {
5057 return getMinHeight(raw);
5058 }
5059
5060 /** Sets the value of "min-height" */
5061 void set minHeight(String value) {
5062 setMinHeight(raw, value);
5063 }
5064
5065 /** Gets the value of "min-logical-height" */
5066 String get minLogicalHeight() {
5067 return getMinLogicalHeight(raw);
5068 }
5069
5070 /** Sets the value of "min-logical-height" */
5071 void set minLogicalHeight(String value) {
5072 setMinLogicalHeight(raw, value);
5073 }
5074
5075 /** Gets the value of "min-logical-width" */
5076 String get minLogicalWidth() {
5077 return getMinLogicalWidth(raw);
5078 }
5079
5080 /** Sets the value of "min-logical-width" */
5081 void set minLogicalWidth(String value) {
5082 setMinLogicalWidth(raw, value);
5083 }
5084
5085 /** Gets the value of "min-width" */
5086 String get minWidth() {
5087 return getMinWidth(raw);
5088 }
5089
5090 /** Sets the value of "min-width" */
5091 void set minWidth(String value) {
5092 setMinWidth(raw, value);
5093 }
5094
5095 /** Gets the value of "nbsp-mode" */
5096 String get nbspMode() {
5097 return getNbspMode(raw);
5098 }
5099
5100 /** Sets the value of "nbsp-mode" */
5101 void set nbspMode(String value) {
5102 setNbspMode(raw, value);
5103 }
5104
5105 /** Gets the value of "opacity" */
5106 String get opacity() {
5107 return getOpacity(raw);
5108 }
5109
5110 /** Sets the value of "opacity" */
5111 void set opacity(String value) {
5112 setOpacity(raw, value);
5113 }
5114
5115 /** Gets the value of "orphans" */
5116 String get orphans() {
5117 return getOrphans(raw);
5118 }
5119
5120 /** Sets the value of "orphans" */
5121 void set orphans(String value) {
5122 setOrphans(raw, value);
5123 }
5124
5125 /** Gets the value of "outline" */
5126 String get outline() {
5127 return getOutline(raw);
5128 }
5129
5130 /** Sets the value of "outline" */
5131 void set outline(String value) {
5132 setOutline(raw, value);
5133 }
5134
5135 /** Gets the value of "outline-color" */
5136 String get outlineColor() {
5137 return getOutlineColor(raw);
5138 }
5139
5140 /** Sets the value of "outline-color" */
5141 void set outlineColor(String value) {
5142 setOutlineColor(raw, value);
5143 }
5144
5145 /** Gets the value of "outline-offset" */
5146 String get outlineOffset() {
5147 return getOutlineOffset(raw);
5148 }
5149
5150 /** Sets the value of "outline-offset" */
5151 void set outlineOffset(String value) {
5152 setOutlineOffset(raw, value);
5153 }
5154
5155 /** Gets the value of "outline-style" */
5156 String get outlineStyle() {
5157 return getOutlineStyle(raw);
5158 }
5159
5160 /** Sets the value of "outline-style" */
5161 void set outlineStyle(String value) {
5162 setOutlineStyle(raw, value);
5163 }
5164
5165 /** Gets the value of "outline-width" */
5166 String get outlineWidth() {
5167 return getOutlineWidth(raw);
5168 }
5169
5170 /** Sets the value of "outline-width" */
5171 void set outlineWidth(String value) {
5172 setOutlineWidth(raw, value);
5173 }
5174
5175 /** Gets the value of "overflow" */
5176 String get overflow() {
5177 return getOverflow(raw);
5178 }
5179
5180 /** Sets the value of "overflow" */
5181 void set overflow(String value) {
5182 setOverflow(raw, value);
5183 }
5184
5185 /** Gets the value of "overflow-x" */
5186 String get overflowX() {
5187 return getOverflowX(raw);
5188 }
5189
5190 /** Sets the value of "overflow-x" */
5191 void set overflowX(String value) {
5192 setOverflowX(raw, value);
5193 }
5194
5195 /** Gets the value of "overflow-y" */
5196 String get overflowY() {
5197 return getOverflowY(raw);
5198 }
5199
5200 /** Sets the value of "overflow-y" */
5201 void set overflowY(String value) {
5202 setOverflowY(raw, value);
5203 }
5204
5205 /** Gets the value of "padding" */
5206 String get padding() {
5207 return getPadding(raw);
5208 }
5209
5210 /** Sets the value of "padding" */
5211 void set padding(String value) {
5212 setPadding(raw, value);
5213 }
5214
5215 /** Gets the value of "padding-after" */
5216 String get paddingAfter() {
5217 return getPaddingAfter(raw);
5218 }
5219
5220 /** Sets the value of "padding-after" */
5221 void set paddingAfter(String value) {
5222 setPaddingAfter(raw, value);
5223 }
5224
5225 /** Gets the value of "padding-before" */
5226 String get paddingBefore() {
5227 return getPaddingBefore(raw);
5228 }
5229
5230 /** Sets the value of "padding-before" */
5231 void set paddingBefore(String value) {
5232 setPaddingBefore(raw, value);
5233 }
5234
5235 /** Gets the value of "padding-bottom" */
5236 String get paddingBottom() {
5237 return getPaddingBottom(raw);
5238 }
5239
5240 /** Sets the value of "padding-bottom" */
5241 void set paddingBottom(String value) {
5242 setPaddingBottom(raw, value);
5243 }
5244
5245 /** Gets the value of "padding-end" */
5246 String get paddingEnd() {
5247 return getPaddingEnd(raw);
5248 }
5249
5250 /** Sets the value of "padding-end" */
5251 void set paddingEnd(String value) {
5252 setPaddingEnd(raw, value);
5253 }
5254
5255 /** Gets the value of "padding-left" */
5256 String get paddingLeft() {
5257 return getPaddingLeft(raw);
5258 }
5259
5260 /** Sets the value of "padding-left" */
5261 void set paddingLeft(String value) {
5262 setPaddingLeft(raw, value);
5263 }
5264
5265 /** Gets the value of "padding-right" */
5266 String get paddingRight() {
5267 return getPaddingRight(raw);
5268 }
5269
5270 /** Sets the value of "padding-right" */
5271 void set paddingRight(String value) {
5272 setPaddingRight(raw, value);
5273 }
5274
5275 /** Gets the value of "padding-start" */
5276 String get paddingStart() {
5277 return getPaddingStart(raw);
5278 }
5279
5280 /** Sets the value of "padding-start" */
5281 void set paddingStart(String value) {
5282 setPaddingStart(raw, value);
5283 }
5284
5285 /** Gets the value of "padding-top" */
5286 String get paddingTop() {
5287 return getPaddingTop(raw);
5288 }
5289
5290 /** Sets the value of "padding-top" */
5291 void set paddingTop(String value) {
5292 setPaddingTop(raw, value);
5293 }
5294
5295 /** Gets the value of "page" */
5296 String get page() {
5297 return getPage(raw);
5298 }
5299
5300 /** Sets the value of "page" */
5301 void set page(String value) {
5302 setPage(raw, value);
5303 }
5304
5305 /** Gets the value of "page-break-after" */
5306 String get pageBreakAfter() {
5307 return getPageBreakAfter(raw);
5308 }
5309
5310 /** Sets the value of "page-break-after" */
5311 void set pageBreakAfter(String value) {
5312 setPageBreakAfter(raw, value);
5313 }
5314
5315 /** Gets the value of "page-break-before" */
5316 String get pageBreakBefore() {
5317 return getPageBreakBefore(raw);
5318 }
5319
5320 /** Sets the value of "page-break-before" */
5321 void set pageBreakBefore(String value) {
5322 setPageBreakBefore(raw, value);
5323 }
5324
5325 /** Gets the value of "page-break-inside" */
5326 String get pageBreakInside() {
5327 return getPageBreakInside(raw);
5328 }
5329
5330 /** Sets the value of "page-break-inside" */
5331 void set pageBreakInside(String value) {
5332 setPageBreakInside(raw, value);
5333 }
5334
5335 /** Gets the value of "perspective" */
5336 String get perspective() {
5337 return getPerspective(raw);
5338 }
5339
5340 /** Sets the value of "perspective" */
5341 void set perspective(String value) {
5342 setPerspective(raw, value);
5343 }
5344
5345 /** Gets the value of "perspective-origin" */
5346 String get perspectiveOrigin() {
5347 return getPerspectiveOrigin(raw);
5348 }
5349
5350 /** Sets the value of "perspective-origin" */
5351 void set perspectiveOrigin(String value) {
5352 setPerspectiveOrigin(raw, value);
5353 }
5354
5355 /** Gets the value of "perspective-origin-x" */
5356 String get perspectiveOriginX() {
5357 return getPerspectiveOriginX(raw);
5358 }
5359
5360 /** Sets the value of "perspective-origin-x" */
5361 void set perspectiveOriginX(String value) {
5362 setPerspectiveOriginX(raw, value);
5363 }
5364
5365 /** Gets the value of "perspective-origin-y" */
5366 String get perspectiveOriginY() {
5367 return getPerspectiveOriginY(raw);
5368 }
5369
5370 /** Sets the value of "perspective-origin-y" */
5371 void set perspectiveOriginY(String value) {
5372 setPerspectiveOriginY(raw, value);
5373 }
5374
5375 /** Gets the value of "pointer-events" */
5376 String get pointerEvents() {
5377 return getPointerEvents(raw);
5378 }
5379
5380 /** Sets the value of "pointer-events" */
5381 void set pointerEvents(String value) {
5382 setPointerEvents(raw, value);
5383 }
5384
5385 /** Gets the value of "position" */
5386 String get position() {
5387 return getPosition(raw);
5388 }
5389
5390 /** Sets the value of "position" */
5391 void set position(String value) {
5392 setPosition(raw, value);
5393 }
5394
5395 /** Gets the value of "quotes" */
5396 String get quotes() {
5397 return getQuotes(raw);
5398 }
5399
5400 /** Sets the value of "quotes" */
5401 void set quotes(String value) {
5402 setQuotes(raw, value);
5403 }
5404
5405 /** Gets the value of "region-break-after" */
5406 String get regionBreakAfter() {
5407 return getRegionBreakAfter(raw);
5408 }
5409
5410 /** Sets the value of "region-break-after" */
5411 void set regionBreakAfter(String value) {
5412 setRegionBreakAfter(raw, value);
5413 }
5414
5415 /** Gets the value of "region-break-before" */
5416 String get regionBreakBefore() {
5417 return getRegionBreakBefore(raw);
5418 }
5419
5420 /** Sets the value of "region-break-before" */
5421 void set regionBreakBefore(String value) {
5422 setRegionBreakBefore(raw, value);
5423 }
5424
5425 /** Gets the value of "region-break-inside" */
5426 String get regionBreakInside() {
5427 return getRegionBreakInside(raw);
5428 }
5429
5430 /** Sets the value of "region-break-inside" */
5431 void set regionBreakInside(String value) {
5432 setRegionBreakInside(raw, value);
5433 }
5434
5435 /** Gets the value of "region-overflow" */
5436 String get regionOverflow() {
5437 return getRegionOverflow(raw);
5438 }
5439
5440 /** Sets the value of "region-overflow" */
5441 void set regionOverflow(String value) {
5442 setRegionOverflow(raw, value);
5443 }
5444
5445 /** Gets the value of "resize" */
5446 String get resize() {
5447 return getResize(raw);
5448 }
5449
5450 /** Sets the value of "resize" */
5451 void set resize(String value) {
5452 setResize(raw, value);
5453 }
5454
5455 /** Gets the value of "right" */
5456 String get right() {
5457 return getRight(raw);
5458 }
5459
5460 /** Sets the value of "right" */
5461 void set right(String value) {
5462 setRight(raw, value);
5463 }
5464
5465 /** Gets the value of "rtl-ordering" */
5466 String get rtlOrdering() {
5467 return getRtlOrdering(raw);
5468 }
5469
5470 /** Sets the value of "rtl-ordering" */
5471 void set rtlOrdering(String value) {
5472 setRtlOrdering(raw, value);
5473 }
5474
5475 /** Gets the value of "size" */
5476 String get size() {
5477 return getSize(raw);
5478 }
5479
5480 /** Sets the value of "size" */
5481 void set size(String value) {
5482 setSize(raw, value);
5483 }
5484
5485 /** Gets the value of "speak" */
5486 String get speak() {
5487 return getSpeak(raw);
5488 }
5489
5490 /** Sets the value of "speak" */
5491 void set speak(String value) {
5492 setSpeak(raw, value);
5493 }
5494
5495 /** Gets the value of "src" */
5496 String get src() {
5497 return getSrc(raw);
5498 }
5499
5500 /** Sets the value of "src" */
5501 void set src(String value) {
5502 setSrc(raw, value);
5503 }
5504
5505 /** Gets the value of "table-layout" */
5506 String get tableLayout() {
5507 return getTableLayout(raw);
5508 }
5509
5510 /** Sets the value of "table-layout" */
5511 void set tableLayout(String value) {
5512 setTableLayout(raw, value);
5513 }
5514
5515 /** Gets the value of "text-align" */
5516 String get textAlign() {
5517 return getTextAlign(raw);
5518 }
5519
5520 /** Sets the value of "text-align" */
5521 void set textAlign(String value) {
5522 setTextAlign(raw, value);
5523 }
5524
5525 /** Gets the value of "text-combine" */
5526 String get textCombine() {
5527 return getTextCombine(raw);
5528 }
5529
5530 /** Sets the value of "text-combine" */
5531 void set textCombine(String value) {
5532 setTextCombine(raw, value);
5533 }
5534
5535 /** Gets the value of "text-decoration" */
5536 String get textDecoration() {
5537 return getTextDecoration(raw);
5538 }
5539
5540 /** Sets the value of "text-decoration" */
5541 void set textDecoration(String value) {
5542 setTextDecoration(raw, value);
5543 }
5544
5545 /** Gets the value of "text-decorations-in-effect" */
5546 String get textDecorationsInEffect() {
5547 return getTextDecorationsInEffect(raw);
5548 }
5549
5550 /** Sets the value of "text-decorations-in-effect" */
5551 void set textDecorationsInEffect(String value) {
5552 setTextDecorationsInEffect(raw, value);
5553 }
5554
5555 /** Gets the value of "text-emphasis" */
5556 String get textEmphasis() {
5557 return getTextEmphasis(raw);
5558 }
5559
5560 /** Sets the value of "text-emphasis" */
5561 void set textEmphasis(String value) {
5562 setTextEmphasis(raw, value);
5563 }
5564
5565 /** Gets the value of "text-emphasis-color" */
5566 String get textEmphasisColor() {
5567 return getTextEmphasisColor(raw);
5568 }
5569
5570 /** Sets the value of "text-emphasis-color" */
5571 void set textEmphasisColor(String value) {
5572 setTextEmphasisColor(raw, value);
5573 }
5574
5575 /** Gets the value of "text-emphasis-position" */
5576 String get textEmphasisPosition() {
5577 return getTextEmphasisPosition(raw);
5578 }
5579
5580 /** Sets the value of "text-emphasis-position" */
5581 void set textEmphasisPosition(String value) {
5582 setTextEmphasisPosition(raw, value);
5583 }
5584
5585 /** Gets the value of "text-emphasis-style" */
5586 String get textEmphasisStyle() {
5587 return getTextEmphasisStyle(raw);
5588 }
5589
5590 /** Sets the value of "text-emphasis-style" */
5591 void set textEmphasisStyle(String value) {
5592 setTextEmphasisStyle(raw, value);
5593 }
5594
5595 /** Gets the value of "text-fill-color" */
5596 String get textFillColor() {
5597 return getTextFillColor(raw);
5598 }
5599
5600 /** Sets the value of "text-fill-color" */
5601 void set textFillColor(String value) {
5602 setTextFillColor(raw, value);
5603 }
5604
5605 /** Gets the value of "text-indent" */
5606 String get textIndent() {
5607 return getTextIndent(raw);
5608 }
5609
5610 /** Sets the value of "text-indent" */
5611 void set textIndent(String value) {
5612 setTextIndent(raw, value);
5613 }
5614
5615 /** Gets the value of "text-line-through" */
5616 String get textLineThrough() {
5617 return getTextLineThrough(raw);
5618 }
5619
5620 /** Sets the value of "text-line-through" */
5621 void set textLineThrough(String value) {
5622 setTextLineThrough(raw, value);
5623 }
5624
5625 /** Gets the value of "text-line-through-color" */
5626 String get textLineThroughColor() {
5627 return getTextLineThroughColor(raw);
5628 }
5629
5630 /** Sets the value of "text-line-through-color" */
5631 void set textLineThroughColor(String value) {
5632 setTextLineThroughColor(raw, value);
5633 }
5634
5635 /** Gets the value of "text-line-through-mode" */
5636 String get textLineThroughMode() {
5637 return getTextLineThroughMode(raw);
5638 }
5639
5640 /** Sets the value of "text-line-through-mode" */
5641 void set textLineThroughMode(String value) {
5642 setTextLineThroughMode(raw, value);
5643 }
5644
5645 /** Gets the value of "text-line-through-style" */
5646 String get textLineThroughStyle() {
5647 return getTextLineThroughStyle(raw);
5648 }
5649
5650 /** Sets the value of "text-line-through-style" */
5651 void set textLineThroughStyle(String value) {
5652 setTextLineThroughStyle(raw, value);
5653 }
5654
5655 /** Gets the value of "text-line-through-width" */
5656 String get textLineThroughWidth() {
5657 return getTextLineThroughWidth(raw);
5658 }
5659
5660 /** Sets the value of "text-line-through-width" */
5661 void set textLineThroughWidth(String value) {
5662 setTextLineThroughWidth(raw, value);
5663 }
5664
5665 /** Gets the value of "text-orientation" */
5666 String get textOrientation() {
5667 return getTextOrientation(raw);
5668 }
5669
5670 /** Sets the value of "text-orientation" */
5671 void set textOrientation(String value) {
5672 setTextOrientation(raw, value);
5673 }
5674
5675 /** Gets the value of "text-overflow" */
5676 String get textOverflow() {
5677 return getTextOverflow(raw);
5678 }
5679
5680 /** Sets the value of "text-overflow" */
5681 void set textOverflow(String value) {
5682 setTextOverflow(raw, value);
5683 }
5684
5685 /** Gets the value of "text-overline" */
5686 String get textOverline() {
5687 return getTextOverline(raw);
5688 }
5689
5690 /** Sets the value of "text-overline" */
5691 void set textOverline(String value) {
5692 setTextOverline(raw, value);
5693 }
5694
5695 /** Gets the value of "text-overline-color" */
5696 String get textOverlineColor() {
5697 return getTextOverlineColor(raw);
5698 }
5699
5700 /** Sets the value of "text-overline-color" */
5701 void set textOverlineColor(String value) {
5702 setTextOverlineColor(raw, value);
5703 }
5704
5705 /** Gets the value of "text-overline-mode" */
5706 String get textOverlineMode() {
5707 return getTextOverlineMode(raw);
5708 }
5709
5710 /** Sets the value of "text-overline-mode" */
5711 void set textOverlineMode(String value) {
5712 setTextOverlineMode(raw, value);
5713 }
5714
5715 /** Gets the value of "text-overline-style" */
5716 String get textOverlineStyle() {
5717 return getTextOverlineStyle(raw);
5718 }
5719
5720 /** Sets the value of "text-overline-style" */
5721 void set textOverlineStyle(String value) {
5722 setTextOverlineStyle(raw, value);
5723 }
5724
5725 /** Gets the value of "text-overline-width" */
5726 String get textOverlineWidth() {
5727 return getTextOverlineWidth(raw);
5728 }
5729
5730 /** Sets the value of "text-overline-width" */
5731 void set textOverlineWidth(String value) {
5732 setTextOverlineWidth(raw, value);
5733 }
5734
5735 /** Gets the value of "text-rendering" */
5736 String get textRendering() {
5737 return getTextRendering(raw);
5738 }
5739
5740 /** Sets the value of "text-rendering" */
5741 void set textRendering(String value) {
5742 setTextRendering(raw, value);
5743 }
5744
5745 /** Gets the value of "text-security" */
5746 String get textSecurity() {
5747 return getTextSecurity(raw);
5748 }
5749
5750 /** Sets the value of "text-security" */
5751 void set textSecurity(String value) {
5752 setTextSecurity(raw, value);
5753 }
5754
5755 /** Gets the value of "text-shadow" */
5756 String get textShadow() {
5757 return getTextShadow(raw);
5758 }
5759
5760 /** Sets the value of "text-shadow" */
5761 void set textShadow(String value) {
5762 setTextShadow(raw, value);
5763 }
5764
5765 /** Gets the value of "text-size-adjust" */
5766 String get textSizeAdjust() {
5767 return getTextSizeAdjust(raw);
5768 }
5769
5770 /** Sets the value of "text-size-adjust" */
5771 void set textSizeAdjust(String value) {
5772 setTextSizeAdjust(raw, value);
5773 }
5774
5775 /** Gets the value of "text-stroke" */
5776 String get textStroke() {
5777 return getTextStroke(raw);
5778 }
5779
5780 /** Sets the value of "text-stroke" */
5781 void set textStroke(String value) {
5782 setTextStroke(raw, value);
5783 }
5784
5785 /** Gets the value of "text-stroke-color" */
5786 String get textStrokeColor() {
5787 return getTextStrokeColor(raw);
5788 }
5789
5790 /** Sets the value of "text-stroke-color" */
5791 void set textStrokeColor(String value) {
5792 setTextStrokeColor(raw, value);
5793 }
5794
5795 /** Gets the value of "text-stroke-width" */
5796 String get textStrokeWidth() {
5797 return getTextStrokeWidth(raw);
5798 }
5799
5800 /** Sets the value of "text-stroke-width" */
5801 void set textStrokeWidth(String value) {
5802 setTextStrokeWidth(raw, value);
5803 }
5804
5805 /** Gets the value of "text-transform" */
5806 String get textTransform() {
5807 return getTextTransform(raw);
5808 }
5809
5810 /** Sets the value of "text-transform" */
5811 void set textTransform(String value) {
5812 setTextTransform(raw, value);
5813 }
5814
5815 /** Gets the value of "text-underline" */
5816 String get textUnderline() {
5817 return getTextUnderline(raw);
5818 }
5819
5820 /** Sets the value of "text-underline" */
5821 void set textUnderline(String value) {
5822 setTextUnderline(raw, value);
5823 }
5824
5825 /** Gets the value of "text-underline-color" */
5826 String get textUnderlineColor() {
5827 return getTextUnderlineColor(raw);
5828 }
5829
5830 /** Sets the value of "text-underline-color" */
5831 void set textUnderlineColor(String value) {
5832 setTextUnderlineColor(raw, value);
5833 }
5834
5835 /** Gets the value of "text-underline-mode" */
5836 String get textUnderlineMode() {
5837 return getTextUnderlineMode(raw);
5838 }
5839
5840 /** Sets the value of "text-underline-mode" */
5841 void set textUnderlineMode(String value) {
5842 setTextUnderlineMode(raw, value);
5843 }
5844
5845 /** Gets the value of "text-underline-style" */
5846 String get textUnderlineStyle() {
5847 return getTextUnderlineStyle(raw);
5848 }
5849
5850 /** Sets the value of "text-underline-style" */
5851 void set textUnderlineStyle(String value) {
5852 setTextUnderlineStyle(raw, value);
5853 }
5854
5855 /** Gets the value of "text-underline-width" */
5856 String get textUnderlineWidth() {
5857 return getTextUnderlineWidth(raw);
5858 }
5859
5860 /** Sets the value of "text-underline-width" */
5861 void set textUnderlineWidth(String value) {
5862 setTextUnderlineWidth(raw, value);
5863 }
5864
5865 /** Gets the value of "top" */
5866 String get top() {
5867 return getTop(raw);
5868 }
5869
5870 /** Sets the value of "top" */
5871 void set top(String value) {
5872 setTop(raw, value);
5873 }
5874
5875 /** Gets the value of "transform" */
5876 String get transform() {
5877 return getTransform(raw);
5878 }
5879
5880 /** Sets the value of "transform" */
5881 void set transform(String value) {
5882 setTransform(raw, value);
5883 }
5884
5885 /** Gets the value of "transform-origin" */
5886 String get transformOrigin() {
5887 return getTransformOrigin(raw);
5888 }
5889
5890 /** Sets the value of "transform-origin" */
5891 void set transformOrigin(String value) {
5892 setTransformOrigin(raw, value);
5893 }
5894
5895 /** Gets the value of "transform-origin-x" */
5896 String get transformOriginX() {
5897 return getTransformOriginX(raw);
5898 }
5899
5900 /** Sets the value of "transform-origin-x" */
5901 void set transformOriginX(String value) {
5902 setTransformOriginX(raw, value);
5903 }
5904
5905 /** Gets the value of "transform-origin-y" */
5906 String get transformOriginY() {
5907 return getTransformOriginY(raw);
5908 }
5909
5910 /** Sets the value of "transform-origin-y" */
5911 void set transformOriginY(String value) {
5912 setTransformOriginY(raw, value);
5913 }
5914
5915 /** Gets the value of "transform-origin-z" */
5916 String get transformOriginZ() {
5917 return getTransformOriginZ(raw);
5918 }
5919
5920 /** Sets the value of "transform-origin-z" */
5921 void set transformOriginZ(String value) {
5922 setTransformOriginZ(raw, value);
5923 }
5924
5925 /** Gets the value of "transform-style" */
5926 String get transformStyle() {
5927 return getTransformStyle(raw);
5928 }
5929
5930 /** Sets the value of "transform-style" */
5931 void set transformStyle(String value) {
5932 setTransformStyle(raw, value);
5933 }
5934
5935 /** Gets the value of "transition" */
5936 String get transition() {
5937 return getTransition(raw);
5938 }
5939
5940 /** Sets the value of "transition" */
5941 void set transition(String value) {
5942 setTransition(raw, value);
5943 }
5944
5945 /** Gets the value of "transition-delay" */
5946 String get transitionDelay() {
5947 return getTransitionDelay(raw);
5948 }
5949
5950 /** Sets the value of "transition-delay" */
5951 void set transitionDelay(String value) {
5952 setTransitionDelay(raw, value);
5953 }
5954
5955 /** Gets the value of "transition-duration" */
5956 String get transitionDuration() {
5957 return getTransitionDuration(raw);
5958 }
5959
5960 /** Sets the value of "transition-duration" */
5961 void set transitionDuration(String value) {
5962 setTransitionDuration(raw, value);
5963 }
5964
5965 /** Gets the value of "transition-property" */
5966 String get transitionProperty() {
5967 return getTransitionProperty(raw);
5968 }
5969
5970 /** Sets the value of "transition-property" */
5971 void set transitionProperty(String value) {
5972 setTransitionProperty(raw, value);
5973 }
5974
5975 /** Gets the value of "transition-timing-function" */
5976 String get transitionTimingFunction() {
5977 return getTransitionTimingFunction(raw);
5978 }
5979
5980 /** Sets the value of "transition-timing-function" */
5981 void set transitionTimingFunction(String value) {
5982 setTransitionTimingFunction(raw, value);
5983 }
5984
5985 /** Gets the value of "unicode-bidi" */
5986 String get unicodeBidi() {
5987 return getUnicodeBidi(raw);
5988 }
5989
5990 /** Sets the value of "unicode-bidi" */
5991 void set unicodeBidi(String value) {
5992 setUnicodeBidi(raw, value);
5993 }
5994
5995 /** Gets the value of "unicode-range" */
5996 String get unicodeRange() {
5997 return getUnicodeRange(raw);
5998 }
5999
6000 /** Sets the value of "unicode-range" */
6001 void set unicodeRange(String value) {
6002 setUnicodeRange(raw, value);
6003 }
6004
6005 /** Gets the value of "user-drag" */
6006 String get userDrag() {
6007 return getUserDrag(raw);
6008 }
6009
6010 /** Sets the value of "user-drag" */
6011 void set userDrag(String value) {
6012 setUserDrag(raw, value);
6013 }
6014
6015 /** Gets the value of "user-modify" */
6016 String get userModify() {
6017 return getUserModify(raw);
6018 }
6019
6020 /** Sets the value of "user-modify" */
6021 void set userModify(String value) {
6022 setUserModify(raw, value);
6023 }
6024
6025 /** Gets the value of "user-select" */
6026 String get userSelect() {
6027 return getUserSelect(raw);
6028 }
6029
6030 /** Sets the value of "user-select" */
6031 void set userSelect(String value) {
6032 setUserSelect(raw, value);
6033 }
6034
6035 /** Gets the value of "vertical-align" */
6036 String get verticalAlign() {
6037 return getVerticalAlign(raw);
6038 }
6039
6040 /** Sets the value of "vertical-align" */
6041 void set verticalAlign(String value) {
6042 setVerticalAlign(raw, value);
6043 }
6044
6045 /** Gets the value of "visibility" */
6046 String get visibility() {
6047 return getVisibility(raw);
6048 }
6049
6050 /** Sets the value of "visibility" */
6051 void set visibility(String value) {
6052 setVisibility(raw, value);
6053 }
6054
6055 /** Gets the value of "white-space" */
6056 String get whiteSpace() {
6057 return getWhiteSpace(raw);
6058 }
6059
6060 /** Sets the value of "white-space" */
6061 void set whiteSpace(String value) {
6062 setWhiteSpace(raw, value);
6063 }
6064
6065 /** Gets the value of "widows" */
6066 String get widows() {
6067 return getWidows(raw);
6068 }
6069
6070 /** Sets the value of "widows" */
6071 void set widows(String value) {
6072 setWidows(raw, value);
6073 }
6074
6075 /** Gets the value of "width" */
6076 String get width() {
6077 return getWidth(raw);
6078 }
6079
6080 /** Sets the value of "width" */
6081 void set width(String value) {
6082 setWidth(raw, value);
6083 }
6084
6085 /** Gets the value of "word-break" */
6086 String get wordBreak() {
6087 return getWordBreak(raw);
6088 }
6089
6090 /** Sets the value of "word-break" */
6091 void set wordBreak(String value) {
6092 setWordBreak(raw, value);
6093 }
6094
6095 /** Gets the value of "word-spacing" */
6096 String get wordSpacing() {
6097 return getWordSpacing(raw);
6098 }
6099
6100 /** Sets the value of "word-spacing" */
6101 void set wordSpacing(String value) {
6102 setWordSpacing(raw, value);
6103 }
6104
6105 /** Gets the value of "word-wrap" */
6106 String get wordWrap() {
6107 return getWordWrap(raw);
6108 }
6109
6110 /** Sets the value of "word-wrap" */
6111 void set wordWrap(String value) {
6112 setWordWrap(raw, value);
6113 }
6114
6115 /** Gets the value of "wrap-shape" */
6116 String get wrapShape() {
6117 return getWrapShape(raw);
6118 }
6119
6120 /** Sets the value of "wrap-shape" */
6121 void set wrapShape(String value) {
6122 setWrapShape(raw, value);
6123 }
6124
6125 /** Gets the value of "writing-mode" */
6126 String get writingMode() {
6127 return getWritingMode(raw);
6128 }
6129
6130 /** Sets the value of "writing-mode" */
6131 void set writingMode(String value) {
6132 setWritingMode(raw, value);
6133 }
6134
6135 /** Gets the value of "z-index" */
6136 String get zIndex() {
6137 return getZIndex(raw);
6138 }
6139
6140 /** Sets the value of "z-index" */
6141 void set zIndex(String value) {
6142 setZIndex(raw, value);
6143 }
6144
6145 /** Gets the value of "zoom" */
6146 String get zoom() {
6147 return getZoom(raw);
6148 }
6149
6150 /** Sets the value of "zoom" */
6151 void set zoom(String value) {
6152 setZoom(raw, value);
6153 }
6154 }
OLDNEW
« no previous file with comments | « client/base/AnimationScheduler.dart ('k') | client/base/base.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698