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

Side by Side Diff: client/html/src/CSSStyleDeclarationWrappingImplementation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
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 html/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 class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement s CSSStyleDeclaration {
14 static String _cachedBrowserPrefix;
15
16 CSSStyleDeclarationWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
17
18 factory CSSStyleDeclarationWrappingImplementation.css(String css) {
19 var style = new Element.tag('div').style;
20 style.cssText = css;
21 return style;
22 }
23
24 factory CSSStyleDeclarationWrappingImplementation() {
25 return new CSSStyleDeclarationWrappingImplementation.css('');
26 }
27
28 static String get _browserPrefix() {
29 if (_cachedBrowserPrefix === null) {
30 if (_Device.isFirefox) {
31 _cachedBrowserPrefix = '-moz-';
32 } else {
33 _cachedBrowserPrefix = '-webkit-';
34 }
35 // TODO(jacobr): support IE 9.0 and Opera as well.
36 }
37 return _cachedBrowserPrefix;
38 }
39
40 String get cssText() { return _ptr.cssText; }
41
42 void set cssText(String value) { _ptr.cssText = value; }
43
44 int get length() { return _ptr.length; }
45
46 CSSRule get parentRule() { return LevelDom.wrapCSSRule(_ptr.parentRule); }
47
48 CSSValue getPropertyCSSValue(String propertyName) {
49 return LevelDom.wrapCSSValue(_ptr.getPropertyCSSValue(propertyName));
50 }
51
52 String getPropertyPriority(String propertyName) {
53 return _ptr.getPropertyPriority(propertyName);
54 }
55
56 String getPropertyShorthand(String propertyName) {
57 return _ptr.getPropertyShorthand(propertyName);
58 }
59
60 String getPropertyValue(String propertyName) {
61 return _ptr.getPropertyValue(propertyName);
62 }
63
64 bool isPropertyImplicit(String propertyName) {
65 return _ptr.isPropertyImplicit(propertyName);
66 }
67
68 String item(int index) {
69 return _ptr.item(index);
70 }
71
72 String removeProperty(String propertyName) {
73 return _ptr.removeProperty(propertyName);
74 }
75
76 void setProperty(String propertyName, var value, [String priority = '']) {
77 _ptr.setProperty(propertyName, '$value', priority);
78 }
79
80 String get typeName() { return "CSSStyleDeclaration"; }
81
82
83 /** Gets the value of "animation" */
84 String get animation() =>
85 getPropertyValue('${_browserPrefix}animation');
86
87 /** Sets the value of "animation" */
88 void set animation(var value) {
89 setProperty('${_browserPrefix}animation', value, '');
90 }
91
92 /** Gets the value of "animation-delay" */
93 String get animationDelay() =>
94 getPropertyValue('${_browserPrefix}animation-delay');
95
96 /** Sets the value of "animation-delay" */
97 void set animationDelay(var value) {
98 setProperty('${_browserPrefix}animation-delay', value, '');
99 }
100
101 /** Gets the value of "animation-direction" */
102 String get animationDirection() =>
103 getPropertyValue('${_browserPrefix}animation-direction');
104
105 /** Sets the value of "animation-direction" */
106 void set animationDirection(var value) {
107 setProperty('${_browserPrefix}animation-direction', value, '');
108 }
109
110 /** Gets the value of "animation-duration" */
111 String get animationDuration() =>
112 getPropertyValue('${_browserPrefix}animation-duration');
113
114 /** Sets the value of "animation-duration" */
115 void set animationDuration(var value) {
116 setProperty('${_browserPrefix}animation-duration', value, '');
117 }
118
119 /** Gets the value of "animation-fill-mode" */
120 String get animationFillMode() =>
121 getPropertyValue('${_browserPrefix}animation-fill-mode');
122
123 /** Sets the value of "animation-fill-mode" */
124 void set animationFillMode(var value) {
125 setProperty('${_browserPrefix}animation-fill-mode', value, '');
126 }
127
128 /** Gets the value of "animation-iteration-count" */
129 String get animationIterationCount() =>
130 getPropertyValue('${_browserPrefix}animation-iteration-count');
131
132 /** Sets the value of "animation-iteration-count" */
133 void set animationIterationCount(var value) {
134 setProperty('${_browserPrefix}animation-iteration-count', value, '');
135 }
136
137 /** Gets the value of "animation-name" */
138 String get animationName() =>
139 getPropertyValue('${_browserPrefix}animation-name');
140
141 /** Sets the value of "animation-name" */
142 void set animationName(var value) {
143 setProperty('${_browserPrefix}animation-name', value, '');
144 }
145
146 /** Gets the value of "animation-play-state" */
147 String get animationPlayState() =>
148 getPropertyValue('${_browserPrefix}animation-play-state');
149
150 /** Sets the value of "animation-play-state" */
151 void set animationPlayState(var value) {
152 setProperty('${_browserPrefix}animation-play-state', value, '');
153 }
154
155 /** Gets the value of "animation-timing-function" */
156 String get animationTimingFunction() =>
157 getPropertyValue('${_browserPrefix}animation-timing-function');
158
159 /** Sets the value of "animation-timing-function" */
160 void set animationTimingFunction(var value) {
161 setProperty('${_browserPrefix}animation-timing-function', value, '');
162 }
163
164 /** Gets the value of "appearance" */
165 String get appearance() =>
166 getPropertyValue('${_browserPrefix}appearance');
167
168 /** Sets the value of "appearance" */
169 void set appearance(var value) {
170 setProperty('${_browserPrefix}appearance', value, '');
171 }
172
173 /** Gets the value of "backface-visibility" */
174 String get backfaceVisibility() =>
175 getPropertyValue('${_browserPrefix}backface-visibility');
176
177 /** Sets the value of "backface-visibility" */
178 void set backfaceVisibility(var value) {
179 setProperty('${_browserPrefix}backface-visibility', value, '');
180 }
181
182 /** Gets the value of "background" */
183 String get background() =>
184 getPropertyValue('background');
185
186 /** Sets the value of "background" */
187 void set background(var value) {
188 setProperty('background', value, '');
189 }
190
191 /** Gets the value of "background-attachment" */
192 String get backgroundAttachment() =>
193 getPropertyValue('background-attachment');
194
195 /** Sets the value of "background-attachment" */
196 void set backgroundAttachment(var value) {
197 setProperty('background-attachment', value, '');
198 }
199
200 /** Gets the value of "background-clip" */
201 String get backgroundClip() =>
202 getPropertyValue('background-clip');
203
204 /** Sets the value of "background-clip" */
205 void set backgroundClip(var value) {
206 setProperty('background-clip', value, '');
207 }
208
209 /** Gets the value of "background-color" */
210 String get backgroundColor() =>
211 getPropertyValue('background-color');
212
213 /** Sets the value of "background-color" */
214 void set backgroundColor(var value) {
215 setProperty('background-color', value, '');
216 }
217
218 /** Gets the value of "background-composite" */
219 String get backgroundComposite() =>
220 getPropertyValue('${_browserPrefix}background-composite');
221
222 /** Sets the value of "background-composite" */
223 void set backgroundComposite(var value) {
224 setProperty('${_browserPrefix}background-composite', value, '');
225 }
226
227 /** Gets the value of "background-image" */
228 String get backgroundImage() =>
229 getPropertyValue('background-image');
230
231 /** Sets the value of "background-image" */
232 void set backgroundImage(var value) {
233 setProperty('background-image', value, '');
234 }
235
236 /** Gets the value of "background-origin" */
237 String get backgroundOrigin() =>
238 getPropertyValue('background-origin');
239
240 /** Sets the value of "background-origin" */
241 void set backgroundOrigin(var value) {
242 setProperty('background-origin', value, '');
243 }
244
245 /** Gets the value of "background-position" */
246 String get backgroundPosition() =>
247 getPropertyValue('background-position');
248
249 /** Sets the value of "background-position" */
250 void set backgroundPosition(var value) {
251 setProperty('background-position', value, '');
252 }
253
254 /** Gets the value of "background-position-x" */
255 String get backgroundPositionX() =>
256 getPropertyValue('background-position-x');
257
258 /** Sets the value of "background-position-x" */
259 void set backgroundPositionX(var value) {
260 setProperty('background-position-x', value, '');
261 }
262
263 /** Gets the value of "background-position-y" */
264 String get backgroundPositionY() =>
265 getPropertyValue('background-position-y');
266
267 /** Sets the value of "background-position-y" */
268 void set backgroundPositionY(var value) {
269 setProperty('background-position-y', value, '');
270 }
271
272 /** Gets the value of "background-repeat" */
273 String get backgroundRepeat() =>
274 getPropertyValue('background-repeat');
275
276 /** Sets the value of "background-repeat" */
277 void set backgroundRepeat(var value) {
278 setProperty('background-repeat', value, '');
279 }
280
281 /** Gets the value of "background-repeat-x" */
282 String get backgroundRepeatX() =>
283 getPropertyValue('background-repeat-x');
284
285 /** Sets the value of "background-repeat-x" */
286 void set backgroundRepeatX(var value) {
287 setProperty('background-repeat-x', value, '');
288 }
289
290 /** Gets the value of "background-repeat-y" */
291 String get backgroundRepeatY() =>
292 getPropertyValue('background-repeat-y');
293
294 /** Sets the value of "background-repeat-y" */
295 void set backgroundRepeatY(var value) {
296 setProperty('background-repeat-y', value, '');
297 }
298
299 /** Gets the value of "background-size" */
300 String get backgroundSize() =>
301 getPropertyValue('background-size');
302
303 /** Sets the value of "background-size" */
304 void set backgroundSize(var value) {
305 setProperty('background-size', value, '');
306 }
307
308 /** Gets the value of "border" */
309 String get border() =>
310 getPropertyValue('border');
311
312 /** Sets the value of "border" */
313 void set border(var value) {
314 setProperty('border', value, '');
315 }
316
317 /** Gets the value of "border-after" */
318 String get borderAfter() =>
319 getPropertyValue('${_browserPrefix}border-after');
320
321 /** Sets the value of "border-after" */
322 void set borderAfter(var value) {
323 setProperty('${_browserPrefix}border-after', value, '');
324 }
325
326 /** Gets the value of "border-after-color" */
327 String get borderAfterColor() =>
328 getPropertyValue('${_browserPrefix}border-after-color');
329
330 /** Sets the value of "border-after-color" */
331 void set borderAfterColor(var value) {
332 setProperty('${_browserPrefix}border-after-color', value, '');
333 }
334
335 /** Gets the value of "border-after-style" */
336 String get borderAfterStyle() =>
337 getPropertyValue('${_browserPrefix}border-after-style');
338
339 /** Sets the value of "border-after-style" */
340 void set borderAfterStyle(var value) {
341 setProperty('${_browserPrefix}border-after-style', value, '');
342 }
343
344 /** Gets the value of "border-after-width" */
345 String get borderAfterWidth() =>
346 getPropertyValue('${_browserPrefix}border-after-width');
347
348 /** Sets the value of "border-after-width" */
349 void set borderAfterWidth(var value) {
350 setProperty('${_browserPrefix}border-after-width', value, '');
351 }
352
353 /** Gets the value of "border-before" */
354 String get borderBefore() =>
355 getPropertyValue('${_browserPrefix}border-before');
356
357 /** Sets the value of "border-before" */
358 void set borderBefore(var value) {
359 setProperty('${_browserPrefix}border-before', value, '');
360 }
361
362 /** Gets the value of "border-before-color" */
363 String get borderBeforeColor() =>
364 getPropertyValue('${_browserPrefix}border-before-color');
365
366 /** Sets the value of "border-before-color" */
367 void set borderBeforeColor(var value) {
368 setProperty('${_browserPrefix}border-before-color', value, '');
369 }
370
371 /** Gets the value of "border-before-style" */
372 String get borderBeforeStyle() =>
373 getPropertyValue('${_browserPrefix}border-before-style');
374
375 /** Sets the value of "border-before-style" */
376 void set borderBeforeStyle(var value) {
377 setProperty('${_browserPrefix}border-before-style', value, '');
378 }
379
380 /** Gets the value of "border-before-width" */
381 String get borderBeforeWidth() =>
382 getPropertyValue('${_browserPrefix}border-before-width');
383
384 /** Sets the value of "border-before-width" */
385 void set borderBeforeWidth(var value) {
386 setProperty('${_browserPrefix}border-before-width', value, '');
387 }
388
389 /** Gets the value of "border-bottom" */
390 String get borderBottom() =>
391 getPropertyValue('border-bottom');
392
393 /** Sets the value of "border-bottom" */
394 void set borderBottom(var value) {
395 setProperty('border-bottom', value, '');
396 }
397
398 /** Gets the value of "border-bottom-color" */
399 String get borderBottomColor() =>
400 getPropertyValue('border-bottom-color');
401
402 /** Sets the value of "border-bottom-color" */
403 void set borderBottomColor(var value) {
404 setProperty('border-bottom-color', value, '');
405 }
406
407 /** Gets the value of "border-bottom-left-radius" */
408 String get borderBottomLeftRadius() =>
409 getPropertyValue('border-bottom-left-radius');
410
411 /** Sets the value of "border-bottom-left-radius" */
412 void set borderBottomLeftRadius(var value) {
413 setProperty('border-bottom-left-radius', value, '');
414 }
415
416 /** Gets the value of "border-bottom-right-radius" */
417 String get borderBottomRightRadius() =>
418 getPropertyValue('border-bottom-right-radius');
419
420 /** Sets the value of "border-bottom-right-radius" */
421 void set borderBottomRightRadius(var value) {
422 setProperty('border-bottom-right-radius', value, '');
423 }
424
425 /** Gets the value of "border-bottom-style" */
426 String get borderBottomStyle() =>
427 getPropertyValue('border-bottom-style');
428
429 /** Sets the value of "border-bottom-style" */
430 void set borderBottomStyle(var value) {
431 setProperty('border-bottom-style', value, '');
432 }
433
434 /** Gets the value of "border-bottom-width" */
435 String get borderBottomWidth() =>
436 getPropertyValue('border-bottom-width');
437
438 /** Sets the value of "border-bottom-width" */
439 void set borderBottomWidth(var value) {
440 setProperty('border-bottom-width', value, '');
441 }
442
443 /** Gets the value of "border-collapse" */
444 String get borderCollapse() =>
445 getPropertyValue('border-collapse');
446
447 /** Sets the value of "border-collapse" */
448 void set borderCollapse(var value) {
449 setProperty('border-collapse', value, '');
450 }
451
452 /** Gets the value of "border-color" */
453 String get borderColor() =>
454 getPropertyValue('border-color');
455
456 /** Sets the value of "border-color" */
457 void set borderColor(var value) {
458 setProperty('border-color', value, '');
459 }
460
461 /** Gets the value of "border-end" */
462 String get borderEnd() =>
463 getPropertyValue('${_browserPrefix}border-end');
464
465 /** Sets the value of "border-end" */
466 void set borderEnd(var value) {
467 setProperty('${_browserPrefix}border-end', value, '');
468 }
469
470 /** Gets the value of "border-end-color" */
471 String get borderEndColor() =>
472 getPropertyValue('${_browserPrefix}border-end-color');
473
474 /** Sets the value of "border-end-color" */
475 void set borderEndColor(var value) {
476 setProperty('${_browserPrefix}border-end-color', value, '');
477 }
478
479 /** Gets the value of "border-end-style" */
480 String get borderEndStyle() =>
481 getPropertyValue('${_browserPrefix}border-end-style');
482
483 /** Sets the value of "border-end-style" */
484 void set borderEndStyle(var value) {
485 setProperty('${_browserPrefix}border-end-style', value, '');
486 }
487
488 /** Gets the value of "border-end-width" */
489 String get borderEndWidth() =>
490 getPropertyValue('${_browserPrefix}border-end-width');
491
492 /** Sets the value of "border-end-width" */
493 void set borderEndWidth(var value) {
494 setProperty('${_browserPrefix}border-end-width', value, '');
495 }
496
497 /** Gets the value of "border-fit" */
498 String get borderFit() =>
499 getPropertyValue('${_browserPrefix}border-fit');
500
501 /** Sets the value of "border-fit" */
502 void set borderFit(var value) {
503 setProperty('${_browserPrefix}border-fit', value, '');
504 }
505
506 /** Gets the value of "border-horizontal-spacing" */
507 String get borderHorizontalSpacing() =>
508 getPropertyValue('${_browserPrefix}border-horizontal-spacing');
509
510 /** Sets the value of "border-horizontal-spacing" */
511 void set borderHorizontalSpacing(var value) {
512 setProperty('${_browserPrefix}border-horizontal-spacing', value, '');
513 }
514
515 /** Gets the value of "border-image" */
516 String get borderImage() =>
517 getPropertyValue('border-image');
518
519 /** Sets the value of "border-image" */
520 void set borderImage(var value) {
521 setProperty('border-image', value, '');
522 }
523
524 /** Gets the value of "border-image-outset" */
525 String get borderImageOutset() =>
526 getPropertyValue('border-image-outset');
527
528 /** Sets the value of "border-image-outset" */
529 void set borderImageOutset(var value) {
530 setProperty('border-image-outset', value, '');
531 }
532
533 /** Gets the value of "border-image-repeat" */
534 String get borderImageRepeat() =>
535 getPropertyValue('border-image-repeat');
536
537 /** Sets the value of "border-image-repeat" */
538 void set borderImageRepeat(var value) {
539 setProperty('border-image-repeat', value, '');
540 }
541
542 /** Gets the value of "border-image-slice" */
543 String get borderImageSlice() =>
544 getPropertyValue('border-image-slice');
545
546 /** Sets the value of "border-image-slice" */
547 void set borderImageSlice(var value) {
548 setProperty('border-image-slice', value, '');
549 }
550
551 /** Gets the value of "border-image-source" */
552 String get borderImageSource() =>
553 getPropertyValue('border-image-source');
554
555 /** Sets the value of "border-image-source" */
556 void set borderImageSource(var value) {
557 setProperty('border-image-source', value, '');
558 }
559
560 /** Gets the value of "border-image-width" */
561 String get borderImageWidth() =>
562 getPropertyValue('border-image-width');
563
564 /** Sets the value of "border-image-width" */
565 void set borderImageWidth(var value) {
566 setProperty('border-image-width', value, '');
567 }
568
569 /** Gets the value of "border-left" */
570 String get borderLeft() =>
571 getPropertyValue('border-left');
572
573 /** Sets the value of "border-left" */
574 void set borderLeft(var value) {
575 setProperty('border-left', value, '');
576 }
577
578 /** Gets the value of "border-left-color" */
579 String get borderLeftColor() =>
580 getPropertyValue('border-left-color');
581
582 /** Sets the value of "border-left-color" */
583 void set borderLeftColor(var value) {
584 setProperty('border-left-color', value, '');
585 }
586
587 /** Gets the value of "border-left-style" */
588 String get borderLeftStyle() =>
589 getPropertyValue('border-left-style');
590
591 /** Sets the value of "border-left-style" */
592 void set borderLeftStyle(var value) {
593 setProperty('border-left-style', value, '');
594 }
595
596 /** Gets the value of "border-left-width" */
597 String get borderLeftWidth() =>
598 getPropertyValue('border-left-width');
599
600 /** Sets the value of "border-left-width" */
601 void set borderLeftWidth(var value) {
602 setProperty('border-left-width', value, '');
603 }
604
605 /** Gets the value of "border-radius" */
606 String get borderRadius() =>
607 getPropertyValue('border-radius');
608
609 /** Sets the value of "border-radius" */
610 void set borderRadius(var value) {
611 setProperty('border-radius', value, '');
612 }
613
614 /** Gets the value of "border-right" */
615 String get borderRight() =>
616 getPropertyValue('border-right');
617
618 /** Sets the value of "border-right" */
619 void set borderRight(var value) {
620 setProperty('border-right', value, '');
621 }
622
623 /** Gets the value of "border-right-color" */
624 String get borderRightColor() =>
625 getPropertyValue('border-right-color');
626
627 /** Sets the value of "border-right-color" */
628 void set borderRightColor(var value) {
629 setProperty('border-right-color', value, '');
630 }
631
632 /** Gets the value of "border-right-style" */
633 String get borderRightStyle() =>
634 getPropertyValue('border-right-style');
635
636 /** Sets the value of "border-right-style" */
637 void set borderRightStyle(var value) {
638 setProperty('border-right-style', value, '');
639 }
640
641 /** Gets the value of "border-right-width" */
642 String get borderRightWidth() =>
643 getPropertyValue('border-right-width');
644
645 /** Sets the value of "border-right-width" */
646 void set borderRightWidth(var value) {
647 setProperty('border-right-width', value, '');
648 }
649
650 /** Gets the value of "border-spacing" */
651 String get borderSpacing() =>
652 getPropertyValue('border-spacing');
653
654 /** Sets the value of "border-spacing" */
655 void set borderSpacing(var value) {
656 setProperty('border-spacing', value, '');
657 }
658
659 /** Gets the value of "border-start" */
660 String get borderStart() =>
661 getPropertyValue('${_browserPrefix}border-start');
662
663 /** Sets the value of "border-start" */
664 void set borderStart(var value) {
665 setProperty('${_browserPrefix}border-start', value, '');
666 }
667
668 /** Gets the value of "border-start-color" */
669 String get borderStartColor() =>
670 getPropertyValue('${_browserPrefix}border-start-color');
671
672 /** Sets the value of "border-start-color" */
673 void set borderStartColor(var value) {
674 setProperty('${_browserPrefix}border-start-color', value, '');
675 }
676
677 /** Gets the value of "border-start-style" */
678 String get borderStartStyle() =>
679 getPropertyValue('${_browserPrefix}border-start-style');
680
681 /** Sets the value of "border-start-style" */
682 void set borderStartStyle(var value) {
683 setProperty('${_browserPrefix}border-start-style', value, '');
684 }
685
686 /** Gets the value of "border-start-width" */
687 String get borderStartWidth() =>
688 getPropertyValue('${_browserPrefix}border-start-width');
689
690 /** Sets the value of "border-start-width" */
691 void set borderStartWidth(var value) {
692 setProperty('${_browserPrefix}border-start-width', value, '');
693 }
694
695 /** Gets the value of "border-style" */
696 String get borderStyle() =>
697 getPropertyValue('border-style');
698
699 /** Sets the value of "border-style" */
700 void set borderStyle(var value) {
701 setProperty('border-style', value, '');
702 }
703
704 /** Gets the value of "border-top" */
705 String get borderTop() =>
706 getPropertyValue('border-top');
707
708 /** Sets the value of "border-top" */
709 void set borderTop(var value) {
710 setProperty('border-top', value, '');
711 }
712
713 /** Gets the value of "border-top-color" */
714 String get borderTopColor() =>
715 getPropertyValue('border-top-color');
716
717 /** Sets the value of "border-top-color" */
718 void set borderTopColor(var value) {
719 setProperty('border-top-color', value, '');
720 }
721
722 /** Gets the value of "border-top-left-radius" */
723 String get borderTopLeftRadius() =>
724 getPropertyValue('border-top-left-radius');
725
726 /** Sets the value of "border-top-left-radius" */
727 void set borderTopLeftRadius(var value) {
728 setProperty('border-top-left-radius', value, '');
729 }
730
731 /** Gets the value of "border-top-right-radius" */
732 String get borderTopRightRadius() =>
733 getPropertyValue('border-top-right-radius');
734
735 /** Sets the value of "border-top-right-radius" */
736 void set borderTopRightRadius(var value) {
737 setProperty('border-top-right-radius', value, '');
738 }
739
740 /** Gets the value of "border-top-style" */
741 String get borderTopStyle() =>
742 getPropertyValue('border-top-style');
743
744 /** Sets the value of "border-top-style" */
745 void set borderTopStyle(var value) {
746 setProperty('border-top-style', value, '');
747 }
748
749 /** Gets the value of "border-top-width" */
750 String get borderTopWidth() =>
751 getPropertyValue('border-top-width');
752
753 /** Sets the value of "border-top-width" */
754 void set borderTopWidth(var value) {
755 setProperty('border-top-width', value, '');
756 }
757
758 /** Gets the value of "border-vertical-spacing" */
759 String get borderVerticalSpacing() =>
760 getPropertyValue('${_browserPrefix}border-vertical-spacing');
761
762 /** Sets the value of "border-vertical-spacing" */
763 void set borderVerticalSpacing(var value) {
764 setProperty('${_browserPrefix}border-vertical-spacing', value, '');
765 }
766
767 /** Gets the value of "border-width" */
768 String get borderWidth() =>
769 getPropertyValue('border-width');
770
771 /** Sets the value of "border-width" */
772 void set borderWidth(var value) {
773 setProperty('border-width', value, '');
774 }
775
776 /** Gets the value of "bottom" */
777 String get bottom() =>
778 getPropertyValue('bottom');
779
780 /** Sets the value of "bottom" */
781 void set bottom(var value) {
782 setProperty('bottom', value, '');
783 }
784
785 /** Gets the value of "box-align" */
786 String get boxAlign() =>
787 getPropertyValue('${_browserPrefix}box-align');
788
789 /** Sets the value of "box-align" */
790 void set boxAlign(var value) {
791 setProperty('${_browserPrefix}box-align', value, '');
792 }
793
794 /** Gets the value of "box-direction" */
795 String get boxDirection() =>
796 getPropertyValue('${_browserPrefix}box-direction');
797
798 /** Sets the value of "box-direction" */
799 void set boxDirection(var value) {
800 setProperty('${_browserPrefix}box-direction', value, '');
801 }
802
803 /** Gets the value of "box-flex" */
804 String get boxFlex() =>
805 getPropertyValue('${_browserPrefix}box-flex');
806
807 /** Sets the value of "box-flex" */
808 void set boxFlex(var value) {
809 setProperty('${_browserPrefix}box-flex', value, '');
810 }
811
812 /** Gets the value of "box-flex-group" */
813 String get boxFlexGroup() =>
814 getPropertyValue('${_browserPrefix}box-flex-group');
815
816 /** Sets the value of "box-flex-group" */
817 void set boxFlexGroup(var value) {
818 setProperty('${_browserPrefix}box-flex-group', value, '');
819 }
820
821 /** Gets the value of "box-lines" */
822 String get boxLines() =>
823 getPropertyValue('${_browserPrefix}box-lines');
824
825 /** Sets the value of "box-lines" */
826 void set boxLines(var value) {
827 setProperty('${_browserPrefix}box-lines', value, '');
828 }
829
830 /** Gets the value of "box-ordinal-group" */
831 String get boxOrdinalGroup() =>
832 getPropertyValue('${_browserPrefix}box-ordinal-group');
833
834 /** Sets the value of "box-ordinal-group" */
835 void set boxOrdinalGroup(var value) {
836 setProperty('${_browserPrefix}box-ordinal-group', value, '');
837 }
838
839 /** Gets the value of "box-orient" */
840 String get boxOrient() =>
841 getPropertyValue('${_browserPrefix}box-orient');
842
843 /** Sets the value of "box-orient" */
844 void set boxOrient(var value) {
845 setProperty('${_browserPrefix}box-orient', value, '');
846 }
847
848 /** Gets the value of "box-pack" */
849 String get boxPack() =>
850 getPropertyValue('${_browserPrefix}box-pack');
851
852 /** Sets the value of "box-pack" */
853 void set boxPack(var value) {
854 setProperty('${_browserPrefix}box-pack', value, '');
855 }
856
857 /** Gets the value of "box-reflect" */
858 String get boxReflect() =>
859 getPropertyValue('${_browserPrefix}box-reflect');
860
861 /** Sets the value of "box-reflect" */
862 void set boxReflect(var value) {
863 setProperty('${_browserPrefix}box-reflect', value, '');
864 }
865
866 /** Gets the value of "box-shadow" */
867 String get boxShadow() =>
868 getPropertyValue('box-shadow');
869
870 /** Sets the value of "box-shadow" */
871 void set boxShadow(var value) {
872 setProperty('box-shadow', value, '');
873 }
874
875 /** Gets the value of "box-sizing" */
876 String get boxSizing() =>
877 getPropertyValue('box-sizing');
878
879 /** Sets the value of "box-sizing" */
880 void set boxSizing(var value) {
881 setProperty('box-sizing', value, '');
882 }
883
884 /** Gets the value of "caption-side" */
885 String get captionSide() =>
886 getPropertyValue('caption-side');
887
888 /** Sets the value of "caption-side" */
889 void set captionSide(var value) {
890 setProperty('caption-side', value, '');
891 }
892
893 /** Gets the value of "clear" */
894 String get clear() =>
895 getPropertyValue('clear');
896
897 /** Sets the value of "clear" */
898 void set clear(var value) {
899 setProperty('clear', value, '');
900 }
901
902 /** Gets the value of "clip" */
903 String get clip() =>
904 getPropertyValue('clip');
905
906 /** Sets the value of "clip" */
907 void set clip(var value) {
908 setProperty('clip', value, '');
909 }
910
911 /** Gets the value of "color" */
912 String get color() =>
913 getPropertyValue('color');
914
915 /** Sets the value of "color" */
916 void set color(var value) {
917 setProperty('color', value, '');
918 }
919
920 /** Gets the value of "color-correction" */
921 String get colorCorrection() =>
922 getPropertyValue('${_browserPrefix}color-correction');
923
924 /** Sets the value of "color-correction" */
925 void set colorCorrection(var value) {
926 setProperty('${_browserPrefix}color-correction', value, '');
927 }
928
929 /** Gets the value of "column-break-after" */
930 String get columnBreakAfter() =>
931 getPropertyValue('${_browserPrefix}column-break-after');
932
933 /** Sets the value of "column-break-after" */
934 void set columnBreakAfter(var value) {
935 setProperty('${_browserPrefix}column-break-after', value, '');
936 }
937
938 /** Gets the value of "column-break-before" */
939 String get columnBreakBefore() =>
940 getPropertyValue('${_browserPrefix}column-break-before');
941
942 /** Sets the value of "column-break-before" */
943 void set columnBreakBefore(var value) {
944 setProperty('${_browserPrefix}column-break-before', value, '');
945 }
946
947 /** Gets the value of "column-break-inside" */
948 String get columnBreakInside() =>
949 getPropertyValue('${_browserPrefix}column-break-inside');
950
951 /** Sets the value of "column-break-inside" */
952 void set columnBreakInside(var value) {
953 setProperty('${_browserPrefix}column-break-inside', value, '');
954 }
955
956 /** Gets the value of "column-count" */
957 String get columnCount() =>
958 getPropertyValue('${_browserPrefix}column-count');
959
960 /** Sets the value of "column-count" */
961 void set columnCount(var value) {
962 setProperty('${_browserPrefix}column-count', value, '');
963 }
964
965 /** Gets the value of "column-gap" */
966 String get columnGap() =>
967 getPropertyValue('${_browserPrefix}column-gap');
968
969 /** Sets the value of "column-gap" */
970 void set columnGap(var value) {
971 setProperty('${_browserPrefix}column-gap', value, '');
972 }
973
974 /** Gets the value of "column-rule" */
975 String get columnRule() =>
976 getPropertyValue('${_browserPrefix}column-rule');
977
978 /** Sets the value of "column-rule" */
979 void set columnRule(var value) {
980 setProperty('${_browserPrefix}column-rule', value, '');
981 }
982
983 /** Gets the value of "column-rule-color" */
984 String get columnRuleColor() =>
985 getPropertyValue('${_browserPrefix}column-rule-color');
986
987 /** Sets the value of "column-rule-color" */
988 void set columnRuleColor(var value) {
989 setProperty('${_browserPrefix}column-rule-color', value, '');
990 }
991
992 /** Gets the value of "column-rule-style" */
993 String get columnRuleStyle() =>
994 getPropertyValue('${_browserPrefix}column-rule-style');
995
996 /** Sets the value of "column-rule-style" */
997 void set columnRuleStyle(var value) {
998 setProperty('${_browserPrefix}column-rule-style', value, '');
999 }
1000
1001 /** Gets the value of "column-rule-width" */
1002 String get columnRuleWidth() =>
1003 getPropertyValue('${_browserPrefix}column-rule-width');
1004
1005 /** Sets the value of "column-rule-width" */
1006 void set columnRuleWidth(var value) {
1007 setProperty('${_browserPrefix}column-rule-width', value, '');
1008 }
1009
1010 /** Gets the value of "column-span" */
1011 String get columnSpan() =>
1012 getPropertyValue('${_browserPrefix}column-span');
1013
1014 /** Sets the value of "column-span" */
1015 void set columnSpan(var value) {
1016 setProperty('${_browserPrefix}column-span', value, '');
1017 }
1018
1019 /** Gets the value of "column-width" */
1020 String get columnWidth() =>
1021 getPropertyValue('${_browserPrefix}column-width');
1022
1023 /** Sets the value of "column-width" */
1024 void set columnWidth(var value) {
1025 setProperty('${_browserPrefix}column-width', value, '');
1026 }
1027
1028 /** Gets the value of "columns" */
1029 String get columns() =>
1030 getPropertyValue('${_browserPrefix}columns');
1031
1032 /** Sets the value of "columns" */
1033 void set columns(var value) {
1034 setProperty('${_browserPrefix}columns', value, '');
1035 }
1036
1037 /** Gets the value of "content" */
1038 String get content() =>
1039 getPropertyValue('content');
1040
1041 /** Sets the value of "content" */
1042 void set content(var value) {
1043 setProperty('content', value, '');
1044 }
1045
1046 /** Gets the value of "counter-increment" */
1047 String get counterIncrement() =>
1048 getPropertyValue('counter-increment');
1049
1050 /** Sets the value of "counter-increment" */
1051 void set counterIncrement(var value) {
1052 setProperty('counter-increment', value, '');
1053 }
1054
1055 /** Gets the value of "counter-reset" */
1056 String get counterReset() =>
1057 getPropertyValue('counter-reset');
1058
1059 /** Sets the value of "counter-reset" */
1060 void set counterReset(var value) {
1061 setProperty('counter-reset', value, '');
1062 }
1063
1064 /** Gets the value of "cursor" */
1065 String get cursor() =>
1066 getPropertyValue('cursor');
1067
1068 /** Sets the value of "cursor" */
1069 void set cursor(var value) {
1070 setProperty('cursor', value, '');
1071 }
1072
1073 /** Gets the value of "direction" */
1074 String get direction() =>
1075 getPropertyValue('direction');
1076
1077 /** Sets the value of "direction" */
1078 void set direction(var value) {
1079 setProperty('direction', value, '');
1080 }
1081
1082 /** Gets the value of "display" */
1083 String get display() =>
1084 getPropertyValue('display');
1085
1086 /** Sets the value of "display" */
1087 void set display(var value) {
1088 setProperty('display', value, '');
1089 }
1090
1091 /** Gets the value of "empty-cells" */
1092 String get emptyCells() =>
1093 getPropertyValue('empty-cells');
1094
1095 /** Sets the value of "empty-cells" */
1096 void set emptyCells(var value) {
1097 setProperty('empty-cells', value, '');
1098 }
1099
1100 /** Gets the value of "filter" */
1101 String get filter() =>
1102 getPropertyValue('${_browserPrefix}filter');
1103
1104 /** Sets the value of "filter" */
1105 void set filter(var value) {
1106 setProperty('${_browserPrefix}filter', value, '');
1107 }
1108
1109 /** Gets the value of "flex-align" */
1110 String get flexAlign() =>
1111 getPropertyValue('${_browserPrefix}flex-align');
1112
1113 /** Sets the value of "flex-align" */
1114 void set flexAlign(var value) {
1115 setProperty('${_browserPrefix}flex-align', value, '');
1116 }
1117
1118 /** Gets the value of "flex-flow" */
1119 String get flexFlow() =>
1120 getPropertyValue('${_browserPrefix}flex-flow');
1121
1122 /** Sets the value of "flex-flow" */
1123 void set flexFlow(var value) {
1124 setProperty('${_browserPrefix}flex-flow', value, '');
1125 }
1126
1127 /** Gets the value of "flex-order" */
1128 String get flexOrder() =>
1129 getPropertyValue('${_browserPrefix}flex-order');
1130
1131 /** Sets the value of "flex-order" */
1132 void set flexOrder(var value) {
1133 setProperty('${_browserPrefix}flex-order', value, '');
1134 }
1135
1136 /** Gets the value of "flex-pack" */
1137 String get flexPack() =>
1138 getPropertyValue('${_browserPrefix}flex-pack');
1139
1140 /** Sets the value of "flex-pack" */
1141 void set flexPack(var value) {
1142 setProperty('${_browserPrefix}flex-pack', value, '');
1143 }
1144
1145 /** Gets the value of "float" */
1146 String get float() =>
1147 getPropertyValue('float');
1148
1149 /** Sets the value of "float" */
1150 void set float(var value) {
1151 setProperty('float', value, '');
1152 }
1153
1154 /** Gets the value of "flow-from" */
1155 String get flowFrom() =>
1156 getPropertyValue('${_browserPrefix}flow-from');
1157
1158 /** Sets the value of "flow-from" */
1159 void set flowFrom(var value) {
1160 setProperty('${_browserPrefix}flow-from', value, '');
1161 }
1162
1163 /** Gets the value of "flow-into" */
1164 String get flowInto() =>
1165 getPropertyValue('${_browserPrefix}flow-into');
1166
1167 /** Sets the value of "flow-into" */
1168 void set flowInto(var value) {
1169 setProperty('${_browserPrefix}flow-into', value, '');
1170 }
1171
1172 /** Gets the value of "font" */
1173 String get font() =>
1174 getPropertyValue('font');
1175
1176 /** Sets the value of "font" */
1177 void set font(var value) {
1178 setProperty('font', value, '');
1179 }
1180
1181 /** Gets the value of "font-family" */
1182 String get fontFamily() =>
1183 getPropertyValue('font-family');
1184
1185 /** Sets the value of "font-family" */
1186 void set fontFamily(var value) {
1187 setProperty('font-family', value, '');
1188 }
1189
1190 /** Gets the value of "font-feature-settings" */
1191 String get fontFeatureSettings() =>
1192 getPropertyValue('${_browserPrefix}font-feature-settings');
1193
1194 /** Sets the value of "font-feature-settings" */
1195 void set fontFeatureSettings(var value) {
1196 setProperty('${_browserPrefix}font-feature-settings', value, '');
1197 }
1198
1199 /** Gets the value of "font-size" */
1200 String get fontSize() =>
1201 getPropertyValue('font-size');
1202
1203 /** Sets the value of "font-size" */
1204 void set fontSize(var value) {
1205 setProperty('font-size', value, '');
1206 }
1207
1208 /** Gets the value of "font-size-delta" */
1209 String get fontSizeDelta() =>
1210 getPropertyValue('${_browserPrefix}font-size-delta');
1211
1212 /** Sets the value of "font-size-delta" */
1213 void set fontSizeDelta(var value) {
1214 setProperty('${_browserPrefix}font-size-delta', value, '');
1215 }
1216
1217 /** Gets the value of "font-smoothing" */
1218 String get fontSmoothing() =>
1219 getPropertyValue('${_browserPrefix}font-smoothing');
1220
1221 /** Sets the value of "font-smoothing" */
1222 void set fontSmoothing(var value) {
1223 setProperty('${_browserPrefix}font-smoothing', value, '');
1224 }
1225
1226 /** Gets the value of "font-stretch" */
1227 String get fontStretch() =>
1228 getPropertyValue('font-stretch');
1229
1230 /** Sets the value of "font-stretch" */
1231 void set fontStretch(var value) {
1232 setProperty('font-stretch', value, '');
1233 }
1234
1235 /** Gets the value of "font-style" */
1236 String get fontStyle() =>
1237 getPropertyValue('font-style');
1238
1239 /** Sets the value of "font-style" */
1240 void set fontStyle(var value) {
1241 setProperty('font-style', value, '');
1242 }
1243
1244 /** Gets the value of "font-variant" */
1245 String get fontVariant() =>
1246 getPropertyValue('font-variant');
1247
1248 /** Sets the value of "font-variant" */
1249 void set fontVariant(var value) {
1250 setProperty('font-variant', value, '');
1251 }
1252
1253 /** Gets the value of "font-weight" */
1254 String get fontWeight() =>
1255 getPropertyValue('font-weight');
1256
1257 /** Sets the value of "font-weight" */
1258 void set fontWeight(var value) {
1259 setProperty('font-weight', value, '');
1260 }
1261
1262 /** Gets the value of "height" */
1263 String get height() =>
1264 getPropertyValue('height');
1265
1266 /** Sets the value of "height" */
1267 void set height(var value) {
1268 setProperty('height', value, '');
1269 }
1270
1271 /** Gets the value of "highlight" */
1272 String get highlight() =>
1273 getPropertyValue('${_browserPrefix}highlight');
1274
1275 /** Sets the value of "highlight" */
1276 void set highlight(var value) {
1277 setProperty('${_browserPrefix}highlight', value, '');
1278 }
1279
1280 /** Gets the value of "hyphenate-character" */
1281 String get hyphenateCharacter() =>
1282 getPropertyValue('${_browserPrefix}hyphenate-character');
1283
1284 /** Sets the value of "hyphenate-character" */
1285 void set hyphenateCharacter(var value) {
1286 setProperty('${_browserPrefix}hyphenate-character', value, '');
1287 }
1288
1289 /** Gets the value of "hyphenate-limit-after" */
1290 String get hyphenateLimitAfter() =>
1291 getPropertyValue('${_browserPrefix}hyphenate-limit-after');
1292
1293 /** Sets the value of "hyphenate-limit-after" */
1294 void set hyphenateLimitAfter(var value) {
1295 setProperty('${_browserPrefix}hyphenate-limit-after', value, '');
1296 }
1297
1298 /** Gets the value of "hyphenate-limit-before" */
1299 String get hyphenateLimitBefore() =>
1300 getPropertyValue('${_browserPrefix}hyphenate-limit-before');
1301
1302 /** Sets the value of "hyphenate-limit-before" */
1303 void set hyphenateLimitBefore(var value) {
1304 setProperty('${_browserPrefix}hyphenate-limit-before', value, '');
1305 }
1306
1307 /** Gets the value of "hyphenate-limit-lines" */
1308 String get hyphenateLimitLines() =>
1309 getPropertyValue('${_browserPrefix}hyphenate-limit-lines');
1310
1311 /** Sets the value of "hyphenate-limit-lines" */
1312 void set hyphenateLimitLines(var value) {
1313 setProperty('${_browserPrefix}hyphenate-limit-lines', value, '');
1314 }
1315
1316 /** Gets the value of "hyphens" */
1317 String get hyphens() =>
1318 getPropertyValue('${_browserPrefix}hyphens');
1319
1320 /** Sets the value of "hyphens" */
1321 void set hyphens(var value) {
1322 setProperty('${_browserPrefix}hyphens', value, '');
1323 }
1324
1325 /** Gets the value of "image-rendering" */
1326 String get imageRendering() =>
1327 getPropertyValue('image-rendering');
1328
1329 /** Sets the value of "image-rendering" */
1330 void set imageRendering(var value) {
1331 setProperty('image-rendering', value, '');
1332 }
1333
1334 /** Gets the value of "left" */
1335 String get left() =>
1336 getPropertyValue('left');
1337
1338 /** Sets the value of "left" */
1339 void set left(var value) {
1340 setProperty('left', value, '');
1341 }
1342
1343 /** Gets the value of "letter-spacing" */
1344 String get letterSpacing() =>
1345 getPropertyValue('letter-spacing');
1346
1347 /** Sets the value of "letter-spacing" */
1348 void set letterSpacing(var value) {
1349 setProperty('letter-spacing', value, '');
1350 }
1351
1352 /** Gets the value of "line-box-contain" */
1353 String get lineBoxContain() =>
1354 getPropertyValue('${_browserPrefix}line-box-contain');
1355
1356 /** Sets the value of "line-box-contain" */
1357 void set lineBoxContain(var value) {
1358 setProperty('${_browserPrefix}line-box-contain', value, '');
1359 }
1360
1361 /** Gets the value of "line-break" */
1362 String get lineBreak() =>
1363 getPropertyValue('${_browserPrefix}line-break');
1364
1365 /** Sets the value of "line-break" */
1366 void set lineBreak(var value) {
1367 setProperty('${_browserPrefix}line-break', value, '');
1368 }
1369
1370 /** Gets the value of "line-clamp" */
1371 String get lineClamp() =>
1372 getPropertyValue('${_browserPrefix}line-clamp');
1373
1374 /** Sets the value of "line-clamp" */
1375 void set lineClamp(var value) {
1376 setProperty('${_browserPrefix}line-clamp', value, '');
1377 }
1378
1379 /** Gets the value of "line-height" */
1380 String get lineHeight() =>
1381 getPropertyValue('line-height');
1382
1383 /** Sets the value of "line-height" */
1384 void set lineHeight(var value) {
1385 setProperty('line-height', value, '');
1386 }
1387
1388 /** Gets the value of "list-style" */
1389 String get listStyle() =>
1390 getPropertyValue('list-style');
1391
1392 /** Sets the value of "list-style" */
1393 void set listStyle(var value) {
1394 setProperty('list-style', value, '');
1395 }
1396
1397 /** Gets the value of "list-style-image" */
1398 String get listStyleImage() =>
1399 getPropertyValue('list-style-image');
1400
1401 /** Sets the value of "list-style-image" */
1402 void set listStyleImage(var value) {
1403 setProperty('list-style-image', value, '');
1404 }
1405
1406 /** Gets the value of "list-style-position" */
1407 String get listStylePosition() =>
1408 getPropertyValue('list-style-position');
1409
1410 /** Sets the value of "list-style-position" */
1411 void set listStylePosition(var value) {
1412 setProperty('list-style-position', value, '');
1413 }
1414
1415 /** Gets the value of "list-style-type" */
1416 String get listStyleType() =>
1417 getPropertyValue('list-style-type');
1418
1419 /** Sets the value of "list-style-type" */
1420 void set listStyleType(var value) {
1421 setProperty('list-style-type', value, '');
1422 }
1423
1424 /** Gets the value of "locale" */
1425 String get locale() =>
1426 getPropertyValue('${_browserPrefix}locale');
1427
1428 /** Sets the value of "locale" */
1429 void set locale(var value) {
1430 setProperty('${_browserPrefix}locale', value, '');
1431 }
1432
1433 /** Gets the value of "logical-height" */
1434 String get logicalHeight() =>
1435 getPropertyValue('${_browserPrefix}logical-height');
1436
1437 /** Sets the value of "logical-height" */
1438 void set logicalHeight(var value) {
1439 setProperty('${_browserPrefix}logical-height', value, '');
1440 }
1441
1442 /** Gets the value of "logical-width" */
1443 String get logicalWidth() =>
1444 getPropertyValue('${_browserPrefix}logical-width');
1445
1446 /** Sets the value of "logical-width" */
1447 void set logicalWidth(var value) {
1448 setProperty('${_browserPrefix}logical-width', value, '');
1449 }
1450
1451 /** Gets the value of "margin" */
1452 String get margin() =>
1453 getPropertyValue('margin');
1454
1455 /** Sets the value of "margin" */
1456 void set margin(var value) {
1457 setProperty('margin', value, '');
1458 }
1459
1460 /** Gets the value of "margin-after" */
1461 String get marginAfter() =>
1462 getPropertyValue('${_browserPrefix}margin-after');
1463
1464 /** Sets the value of "margin-after" */
1465 void set marginAfter(var value) {
1466 setProperty('${_browserPrefix}margin-after', value, '');
1467 }
1468
1469 /** Gets the value of "margin-after-collapse" */
1470 String get marginAfterCollapse() =>
1471 getPropertyValue('${_browserPrefix}margin-after-collapse');
1472
1473 /** Sets the value of "margin-after-collapse" */
1474 void set marginAfterCollapse(var value) {
1475 setProperty('${_browserPrefix}margin-after-collapse', value, '');
1476 }
1477
1478 /** Gets the value of "margin-before" */
1479 String get marginBefore() =>
1480 getPropertyValue('${_browserPrefix}margin-before');
1481
1482 /** Sets the value of "margin-before" */
1483 void set marginBefore(var value) {
1484 setProperty('${_browserPrefix}margin-before', value, '');
1485 }
1486
1487 /** Gets the value of "margin-before-collapse" */
1488 String get marginBeforeCollapse() =>
1489 getPropertyValue('${_browserPrefix}margin-before-collapse');
1490
1491 /** Sets the value of "margin-before-collapse" */
1492 void set marginBeforeCollapse(var value) {
1493 setProperty('${_browserPrefix}margin-before-collapse', value, '');
1494 }
1495
1496 /** Gets the value of "margin-bottom" */
1497 String get marginBottom() =>
1498 getPropertyValue('margin-bottom');
1499
1500 /** Sets the value of "margin-bottom" */
1501 void set marginBottom(var value) {
1502 setProperty('margin-bottom', value, '');
1503 }
1504
1505 /** Gets the value of "margin-bottom-collapse" */
1506 String get marginBottomCollapse() =>
1507 getPropertyValue('${_browserPrefix}margin-bottom-collapse');
1508
1509 /** Sets the value of "margin-bottom-collapse" */
1510 void set marginBottomCollapse(var value) {
1511 setProperty('${_browserPrefix}margin-bottom-collapse', value, '');
1512 }
1513
1514 /** Gets the value of "margin-collapse" */
1515 String get marginCollapse() =>
1516 getPropertyValue('${_browserPrefix}margin-collapse');
1517
1518 /** Sets the value of "margin-collapse" */
1519 void set marginCollapse(var value) {
1520 setProperty('${_browserPrefix}margin-collapse', value, '');
1521 }
1522
1523 /** Gets the value of "margin-end" */
1524 String get marginEnd() =>
1525 getPropertyValue('${_browserPrefix}margin-end');
1526
1527 /** Sets the value of "margin-end" */
1528 void set marginEnd(var value) {
1529 setProperty('${_browserPrefix}margin-end', value, '');
1530 }
1531
1532 /** Gets the value of "margin-left" */
1533 String get marginLeft() =>
1534 getPropertyValue('margin-left');
1535
1536 /** Sets the value of "margin-left" */
1537 void set marginLeft(var value) {
1538 setProperty('margin-left', value, '');
1539 }
1540
1541 /** Gets the value of "margin-right" */
1542 String get marginRight() =>
1543 getPropertyValue('margin-right');
1544
1545 /** Sets the value of "margin-right" */
1546 void set marginRight(var value) {
1547 setProperty('margin-right', value, '');
1548 }
1549
1550 /** Gets the value of "margin-start" */
1551 String get marginStart() =>
1552 getPropertyValue('${_browserPrefix}margin-start');
1553
1554 /** Sets the value of "margin-start" */
1555 void set marginStart(var value) {
1556 setProperty('${_browserPrefix}margin-start', value, '');
1557 }
1558
1559 /** Gets the value of "margin-top" */
1560 String get marginTop() =>
1561 getPropertyValue('margin-top');
1562
1563 /** Sets the value of "margin-top" */
1564 void set marginTop(var value) {
1565 setProperty('margin-top', value, '');
1566 }
1567
1568 /** Gets the value of "margin-top-collapse" */
1569 String get marginTopCollapse() =>
1570 getPropertyValue('${_browserPrefix}margin-top-collapse');
1571
1572 /** Sets the value of "margin-top-collapse" */
1573 void set marginTopCollapse(var value) {
1574 setProperty('${_browserPrefix}margin-top-collapse', value, '');
1575 }
1576
1577 /** Gets the value of "marquee" */
1578 String get marquee() =>
1579 getPropertyValue('${_browserPrefix}marquee');
1580
1581 /** Sets the value of "marquee" */
1582 void set marquee(var value) {
1583 setProperty('${_browserPrefix}marquee', value, '');
1584 }
1585
1586 /** Gets the value of "marquee-direction" */
1587 String get marqueeDirection() =>
1588 getPropertyValue('${_browserPrefix}marquee-direction');
1589
1590 /** Sets the value of "marquee-direction" */
1591 void set marqueeDirection(var value) {
1592 setProperty('${_browserPrefix}marquee-direction', value, '');
1593 }
1594
1595 /** Gets the value of "marquee-increment" */
1596 String get marqueeIncrement() =>
1597 getPropertyValue('${_browserPrefix}marquee-increment');
1598
1599 /** Sets the value of "marquee-increment" */
1600 void set marqueeIncrement(var value) {
1601 setProperty('${_browserPrefix}marquee-increment', value, '');
1602 }
1603
1604 /** Gets the value of "marquee-repetition" */
1605 String get marqueeRepetition() =>
1606 getPropertyValue('${_browserPrefix}marquee-repetition');
1607
1608 /** Sets the value of "marquee-repetition" */
1609 void set marqueeRepetition(var value) {
1610 setProperty('${_browserPrefix}marquee-repetition', value, '');
1611 }
1612
1613 /** Gets the value of "marquee-speed" */
1614 String get marqueeSpeed() =>
1615 getPropertyValue('${_browserPrefix}marquee-speed');
1616
1617 /** Sets the value of "marquee-speed" */
1618 void set marqueeSpeed(var value) {
1619 setProperty('${_browserPrefix}marquee-speed', value, '');
1620 }
1621
1622 /** Gets the value of "marquee-style" */
1623 String get marqueeStyle() =>
1624 getPropertyValue('${_browserPrefix}marquee-style');
1625
1626 /** Sets the value of "marquee-style" */
1627 void set marqueeStyle(var value) {
1628 setProperty('${_browserPrefix}marquee-style', value, '');
1629 }
1630
1631 /** Gets the value of "mask" */
1632 String get mask() =>
1633 getPropertyValue('${_browserPrefix}mask');
1634
1635 /** Sets the value of "mask" */
1636 void set mask(var value) {
1637 setProperty('${_browserPrefix}mask', value, '');
1638 }
1639
1640 /** Gets the value of "mask-attachment" */
1641 String get maskAttachment() =>
1642 getPropertyValue('${_browserPrefix}mask-attachment');
1643
1644 /** Sets the value of "mask-attachment" */
1645 void set maskAttachment(var value) {
1646 setProperty('${_browserPrefix}mask-attachment', value, '');
1647 }
1648
1649 /** Gets the value of "mask-box-image" */
1650 String get maskBoxImage() =>
1651 getPropertyValue('${_browserPrefix}mask-box-image');
1652
1653 /** Sets the value of "mask-box-image" */
1654 void set maskBoxImage(var value) {
1655 setProperty('${_browserPrefix}mask-box-image', value, '');
1656 }
1657
1658 /** Gets the value of "mask-box-image-outset" */
1659 String get maskBoxImageOutset() =>
1660 getPropertyValue('${_browserPrefix}mask-box-image-outset');
1661
1662 /** Sets the value of "mask-box-image-outset" */
1663 void set maskBoxImageOutset(var value) {
1664 setProperty('${_browserPrefix}mask-box-image-outset', value, '');
1665 }
1666
1667 /** Gets the value of "mask-box-image-repeat" */
1668 String get maskBoxImageRepeat() =>
1669 getPropertyValue('${_browserPrefix}mask-box-image-repeat');
1670
1671 /** Sets the value of "mask-box-image-repeat" */
1672 void set maskBoxImageRepeat(var value) {
1673 setProperty('${_browserPrefix}mask-box-image-repeat', value, '');
1674 }
1675
1676 /** Gets the value of "mask-box-image-slice" */
1677 String get maskBoxImageSlice() =>
1678 getPropertyValue('${_browserPrefix}mask-box-image-slice');
1679
1680 /** Sets the value of "mask-box-image-slice" */
1681 void set maskBoxImageSlice(var value) {
1682 setProperty('${_browserPrefix}mask-box-image-slice', value, '');
1683 }
1684
1685 /** Gets the value of "mask-box-image-source" */
1686 String get maskBoxImageSource() =>
1687 getPropertyValue('${_browserPrefix}mask-box-image-source');
1688
1689 /** Sets the value of "mask-box-image-source" */
1690 void set maskBoxImageSource(var value) {
1691 setProperty('${_browserPrefix}mask-box-image-source', value, '');
1692 }
1693
1694 /** Gets the value of "mask-box-image-width" */
1695 String get maskBoxImageWidth() =>
1696 getPropertyValue('${_browserPrefix}mask-box-image-width');
1697
1698 /** Sets the value of "mask-box-image-width" */
1699 void set maskBoxImageWidth(var value) {
1700 setProperty('${_browserPrefix}mask-box-image-width', value, '');
1701 }
1702
1703 /** Gets the value of "mask-clip" */
1704 String get maskClip() =>
1705 getPropertyValue('${_browserPrefix}mask-clip');
1706
1707 /** Sets the value of "mask-clip" */
1708 void set maskClip(var value) {
1709 setProperty('${_browserPrefix}mask-clip', value, '');
1710 }
1711
1712 /** Gets the value of "mask-composite" */
1713 String get maskComposite() =>
1714 getPropertyValue('${_browserPrefix}mask-composite');
1715
1716 /** Sets the value of "mask-composite" */
1717 void set maskComposite(var value) {
1718 setProperty('${_browserPrefix}mask-composite', value, '');
1719 }
1720
1721 /** Gets the value of "mask-image" */
1722 String get maskImage() =>
1723 getPropertyValue('${_browserPrefix}mask-image');
1724
1725 /** Sets the value of "mask-image" */
1726 void set maskImage(var value) {
1727 setProperty('${_browserPrefix}mask-image', value, '');
1728 }
1729
1730 /** Gets the value of "mask-origin" */
1731 String get maskOrigin() =>
1732 getPropertyValue('${_browserPrefix}mask-origin');
1733
1734 /** Sets the value of "mask-origin" */
1735 void set maskOrigin(var value) {
1736 setProperty('${_browserPrefix}mask-origin', value, '');
1737 }
1738
1739 /** Gets the value of "mask-position" */
1740 String get maskPosition() =>
1741 getPropertyValue('${_browserPrefix}mask-position');
1742
1743 /** Sets the value of "mask-position" */
1744 void set maskPosition(var value) {
1745 setProperty('${_browserPrefix}mask-position', value, '');
1746 }
1747
1748 /** Gets the value of "mask-position-x" */
1749 String get maskPositionX() =>
1750 getPropertyValue('${_browserPrefix}mask-position-x');
1751
1752 /** Sets the value of "mask-position-x" */
1753 void set maskPositionX(var value) {
1754 setProperty('${_browserPrefix}mask-position-x', value, '');
1755 }
1756
1757 /** Gets the value of "mask-position-y" */
1758 String get maskPositionY() =>
1759 getPropertyValue('${_browserPrefix}mask-position-y');
1760
1761 /** Sets the value of "mask-position-y" */
1762 void set maskPositionY(var value) {
1763 setProperty('${_browserPrefix}mask-position-y', value, '');
1764 }
1765
1766 /** Gets the value of "mask-repeat" */
1767 String get maskRepeat() =>
1768 getPropertyValue('${_browserPrefix}mask-repeat');
1769
1770 /** Sets the value of "mask-repeat" */
1771 void set maskRepeat(var value) {
1772 setProperty('${_browserPrefix}mask-repeat', value, '');
1773 }
1774
1775 /** Gets the value of "mask-repeat-x" */
1776 String get maskRepeatX() =>
1777 getPropertyValue('${_browserPrefix}mask-repeat-x');
1778
1779 /** Sets the value of "mask-repeat-x" */
1780 void set maskRepeatX(var value) {
1781 setProperty('${_browserPrefix}mask-repeat-x', value, '');
1782 }
1783
1784 /** Gets the value of "mask-repeat-y" */
1785 String get maskRepeatY() =>
1786 getPropertyValue('${_browserPrefix}mask-repeat-y');
1787
1788 /** Sets the value of "mask-repeat-y" */
1789 void set maskRepeatY(var value) {
1790 setProperty('${_browserPrefix}mask-repeat-y', value, '');
1791 }
1792
1793 /** Gets the value of "mask-size" */
1794 String get maskSize() =>
1795 getPropertyValue('${_browserPrefix}mask-size');
1796
1797 /** Sets the value of "mask-size" */
1798 void set maskSize(var value) {
1799 setProperty('${_browserPrefix}mask-size', value, '');
1800 }
1801
1802 /** Gets the value of "match-nearest-mail-blockquote-color" */
1803 String get matchNearestMailBlockquoteColor() =>
1804 getPropertyValue('${_browserPrefix}match-nearest-mail-blockquote-color');
1805
1806 /** Sets the value of "match-nearest-mail-blockquote-color" */
1807 void set matchNearestMailBlockquoteColor(var value) {
1808 setProperty('${_browserPrefix}match-nearest-mail-blockquote-color', value, ' ');
1809 }
1810
1811 /** Gets the value of "max-height" */
1812 String get maxHeight() =>
1813 getPropertyValue('max-height');
1814
1815 /** Sets the value of "max-height" */
1816 void set maxHeight(var value) {
1817 setProperty('max-height', value, '');
1818 }
1819
1820 /** Gets the value of "max-logical-height" */
1821 String get maxLogicalHeight() =>
1822 getPropertyValue('${_browserPrefix}max-logical-height');
1823
1824 /** Sets the value of "max-logical-height" */
1825 void set maxLogicalHeight(var value) {
1826 setProperty('${_browserPrefix}max-logical-height', value, '');
1827 }
1828
1829 /** Gets the value of "max-logical-width" */
1830 String get maxLogicalWidth() =>
1831 getPropertyValue('${_browserPrefix}max-logical-width');
1832
1833 /** Sets the value of "max-logical-width" */
1834 void set maxLogicalWidth(var value) {
1835 setProperty('${_browserPrefix}max-logical-width', value, '');
1836 }
1837
1838 /** Gets the value of "max-width" */
1839 String get maxWidth() =>
1840 getPropertyValue('max-width');
1841
1842 /** Sets the value of "max-width" */
1843 void set maxWidth(var value) {
1844 setProperty('max-width', value, '');
1845 }
1846
1847 /** Gets the value of "min-height" */
1848 String get minHeight() =>
1849 getPropertyValue('min-height');
1850
1851 /** Sets the value of "min-height" */
1852 void set minHeight(var value) {
1853 setProperty('min-height', value, '');
1854 }
1855
1856 /** Gets the value of "min-logical-height" */
1857 String get minLogicalHeight() =>
1858 getPropertyValue('${_browserPrefix}min-logical-height');
1859
1860 /** Sets the value of "min-logical-height" */
1861 void set minLogicalHeight(var value) {
1862 setProperty('${_browserPrefix}min-logical-height', value, '');
1863 }
1864
1865 /** Gets the value of "min-logical-width" */
1866 String get minLogicalWidth() =>
1867 getPropertyValue('${_browserPrefix}min-logical-width');
1868
1869 /** Sets the value of "min-logical-width" */
1870 void set minLogicalWidth(var value) {
1871 setProperty('${_browserPrefix}min-logical-width', value, '');
1872 }
1873
1874 /** Gets the value of "min-width" */
1875 String get minWidth() =>
1876 getPropertyValue('min-width');
1877
1878 /** Sets the value of "min-width" */
1879 void set minWidth(var value) {
1880 setProperty('min-width', value, '');
1881 }
1882
1883 /** Gets the value of "nbsp-mode" */
1884 String get nbspMode() =>
1885 getPropertyValue('${_browserPrefix}nbsp-mode');
1886
1887 /** Sets the value of "nbsp-mode" */
1888 void set nbspMode(var value) {
1889 setProperty('${_browserPrefix}nbsp-mode', value, '');
1890 }
1891
1892 /** Gets the value of "opacity" */
1893 String get opacity() =>
1894 getPropertyValue('opacity');
1895
1896 /** Sets the value of "opacity" */
1897 void set opacity(var value) {
1898 setProperty('opacity', value, '');
1899 }
1900
1901 /** Gets the value of "orphans" */
1902 String get orphans() =>
1903 getPropertyValue('orphans');
1904
1905 /** Sets the value of "orphans" */
1906 void set orphans(var value) {
1907 setProperty('orphans', value, '');
1908 }
1909
1910 /** Gets the value of "outline" */
1911 String get outline() =>
1912 getPropertyValue('outline');
1913
1914 /** Sets the value of "outline" */
1915 void set outline(var value) {
1916 setProperty('outline', value, '');
1917 }
1918
1919 /** Gets the value of "outline-color" */
1920 String get outlineColor() =>
1921 getPropertyValue('outline-color');
1922
1923 /** Sets the value of "outline-color" */
1924 void set outlineColor(var value) {
1925 setProperty('outline-color', value, '');
1926 }
1927
1928 /** Gets the value of "outline-offset" */
1929 String get outlineOffset() =>
1930 getPropertyValue('outline-offset');
1931
1932 /** Sets the value of "outline-offset" */
1933 void set outlineOffset(var value) {
1934 setProperty('outline-offset', value, '');
1935 }
1936
1937 /** Gets the value of "outline-style" */
1938 String get outlineStyle() =>
1939 getPropertyValue('outline-style');
1940
1941 /** Sets the value of "outline-style" */
1942 void set outlineStyle(var value) {
1943 setProperty('outline-style', value, '');
1944 }
1945
1946 /** Gets the value of "outline-width" */
1947 String get outlineWidth() =>
1948 getPropertyValue('outline-width');
1949
1950 /** Sets the value of "outline-width" */
1951 void set outlineWidth(var value) {
1952 setProperty('outline-width', value, '');
1953 }
1954
1955 /** Gets the value of "overflow" */
1956 String get overflow() =>
1957 getPropertyValue('overflow');
1958
1959 /** Sets the value of "overflow" */
1960 void set overflow(var value) {
1961 setProperty('overflow', value, '');
1962 }
1963
1964 /** Gets the value of "overflow-x" */
1965 String get overflowX() =>
1966 getPropertyValue('overflow-x');
1967
1968 /** Sets the value of "overflow-x" */
1969 void set overflowX(var value) {
1970 setProperty('overflow-x', value, '');
1971 }
1972
1973 /** Gets the value of "overflow-y" */
1974 String get overflowY() =>
1975 getPropertyValue('overflow-y');
1976
1977 /** Sets the value of "overflow-y" */
1978 void set overflowY(var value) {
1979 setProperty('overflow-y', value, '');
1980 }
1981
1982 /** Gets the value of "padding" */
1983 String get padding() =>
1984 getPropertyValue('padding');
1985
1986 /** Sets the value of "padding" */
1987 void set padding(var value) {
1988 setProperty('padding', value, '');
1989 }
1990
1991 /** Gets the value of "padding-after" */
1992 String get paddingAfter() =>
1993 getPropertyValue('${_browserPrefix}padding-after');
1994
1995 /** Sets the value of "padding-after" */
1996 void set paddingAfter(var value) {
1997 setProperty('${_browserPrefix}padding-after', value, '');
1998 }
1999
2000 /** Gets the value of "padding-before" */
2001 String get paddingBefore() =>
2002 getPropertyValue('${_browserPrefix}padding-before');
2003
2004 /** Sets the value of "padding-before" */
2005 void set paddingBefore(var value) {
2006 setProperty('${_browserPrefix}padding-before', value, '');
2007 }
2008
2009 /** Gets the value of "padding-bottom" */
2010 String get paddingBottom() =>
2011 getPropertyValue('padding-bottom');
2012
2013 /** Sets the value of "padding-bottom" */
2014 void set paddingBottom(var value) {
2015 setProperty('padding-bottom', value, '');
2016 }
2017
2018 /** Gets the value of "padding-end" */
2019 String get paddingEnd() =>
2020 getPropertyValue('${_browserPrefix}padding-end');
2021
2022 /** Sets the value of "padding-end" */
2023 void set paddingEnd(var value) {
2024 setProperty('${_browserPrefix}padding-end', value, '');
2025 }
2026
2027 /** Gets the value of "padding-left" */
2028 String get paddingLeft() =>
2029 getPropertyValue('padding-left');
2030
2031 /** Sets the value of "padding-left" */
2032 void set paddingLeft(var value) {
2033 setProperty('padding-left', value, '');
2034 }
2035
2036 /** Gets the value of "padding-right" */
2037 String get paddingRight() =>
2038 getPropertyValue('padding-right');
2039
2040 /** Sets the value of "padding-right" */
2041 void set paddingRight(var value) {
2042 setProperty('padding-right', value, '');
2043 }
2044
2045 /** Gets the value of "padding-start" */
2046 String get paddingStart() =>
2047 getPropertyValue('${_browserPrefix}padding-start');
2048
2049 /** Sets the value of "padding-start" */
2050 void set paddingStart(var value) {
2051 setProperty('${_browserPrefix}padding-start', value, '');
2052 }
2053
2054 /** Gets the value of "padding-top" */
2055 String get paddingTop() =>
2056 getPropertyValue('padding-top');
2057
2058 /** Sets the value of "padding-top" */
2059 void set paddingTop(var value) {
2060 setProperty('padding-top', value, '');
2061 }
2062
2063 /** Gets the value of "page" */
2064 String get page() =>
2065 getPropertyValue('page');
2066
2067 /** Sets the value of "page" */
2068 void set page(var value) {
2069 setProperty('page', value, '');
2070 }
2071
2072 /** Gets the value of "page-break-after" */
2073 String get pageBreakAfter() =>
2074 getPropertyValue('page-break-after');
2075
2076 /** Sets the value of "page-break-after" */
2077 void set pageBreakAfter(var value) {
2078 setProperty('page-break-after', value, '');
2079 }
2080
2081 /** Gets the value of "page-break-before" */
2082 String get pageBreakBefore() =>
2083 getPropertyValue('page-break-before');
2084
2085 /** Sets the value of "page-break-before" */
2086 void set pageBreakBefore(var value) {
2087 setProperty('page-break-before', value, '');
2088 }
2089
2090 /** Gets the value of "page-break-inside" */
2091 String get pageBreakInside() =>
2092 getPropertyValue('page-break-inside');
2093
2094 /** Sets the value of "page-break-inside" */
2095 void set pageBreakInside(var value) {
2096 setProperty('page-break-inside', value, '');
2097 }
2098
2099 /** Gets the value of "perspective" */
2100 String get perspective() =>
2101 getPropertyValue('${_browserPrefix}perspective');
2102
2103 /** Sets the value of "perspective" */
2104 void set perspective(var value) {
2105 setProperty('${_browserPrefix}perspective', value, '');
2106 }
2107
2108 /** Gets the value of "perspective-origin" */
2109 String get perspectiveOrigin() =>
2110 getPropertyValue('${_browserPrefix}perspective-origin');
2111
2112 /** Sets the value of "perspective-origin" */
2113 void set perspectiveOrigin(var value) {
2114 setProperty('${_browserPrefix}perspective-origin', value, '');
2115 }
2116
2117 /** Gets the value of "perspective-origin-x" */
2118 String get perspectiveOriginX() =>
2119 getPropertyValue('${_browserPrefix}perspective-origin-x');
2120
2121 /** Sets the value of "perspective-origin-x" */
2122 void set perspectiveOriginX(var value) {
2123 setProperty('${_browserPrefix}perspective-origin-x', value, '');
2124 }
2125
2126 /** Gets the value of "perspective-origin-y" */
2127 String get perspectiveOriginY() =>
2128 getPropertyValue('${_browserPrefix}perspective-origin-y');
2129
2130 /** Sets the value of "perspective-origin-y" */
2131 void set perspectiveOriginY(var value) {
2132 setProperty('${_browserPrefix}perspective-origin-y', value, '');
2133 }
2134
2135 /** Gets the value of "pointer-events" */
2136 String get pointerEvents() =>
2137 getPropertyValue('pointer-events');
2138
2139 /** Sets the value of "pointer-events" */
2140 void set pointerEvents(var value) {
2141 setProperty('pointer-events', value, '');
2142 }
2143
2144 /** Gets the value of "position" */
2145 String get position() =>
2146 getPropertyValue('position');
2147
2148 /** Sets the value of "position" */
2149 void set position(var value) {
2150 setProperty('position', value, '');
2151 }
2152
2153 /** Gets the value of "quotes" */
2154 String get quotes() =>
2155 getPropertyValue('quotes');
2156
2157 /** Sets the value of "quotes" */
2158 void set quotes(var value) {
2159 setProperty('quotes', value, '');
2160 }
2161
2162 /** Gets the value of "region-break-after" */
2163 String get regionBreakAfter() =>
2164 getPropertyValue('${_browserPrefix}region-break-after');
2165
2166 /** Sets the value of "region-break-after" */
2167 void set regionBreakAfter(var value) {
2168 setProperty('${_browserPrefix}region-break-after', value, '');
2169 }
2170
2171 /** Gets the value of "region-break-before" */
2172 String get regionBreakBefore() =>
2173 getPropertyValue('${_browserPrefix}region-break-before');
2174
2175 /** Sets the value of "region-break-before" */
2176 void set regionBreakBefore(var value) {
2177 setProperty('${_browserPrefix}region-break-before', value, '');
2178 }
2179
2180 /** Gets the value of "region-break-inside" */
2181 String get regionBreakInside() =>
2182 getPropertyValue('${_browserPrefix}region-break-inside');
2183
2184 /** Sets the value of "region-break-inside" */
2185 void set regionBreakInside(var value) {
2186 setProperty('${_browserPrefix}region-break-inside', value, '');
2187 }
2188
2189 /** Gets the value of "region-overflow" */
2190 String get regionOverflow() =>
2191 getPropertyValue('${_browserPrefix}region-overflow');
2192
2193 /** Sets the value of "region-overflow" */
2194 void set regionOverflow(var value) {
2195 setProperty('${_browserPrefix}region-overflow', value, '');
2196 }
2197
2198 /** Gets the value of "resize" */
2199 String get resize() =>
2200 getPropertyValue('resize');
2201
2202 /** Sets the value of "resize" */
2203 void set resize(var value) {
2204 setProperty('resize', value, '');
2205 }
2206
2207 /** Gets the value of "right" */
2208 String get right() =>
2209 getPropertyValue('right');
2210
2211 /** Sets the value of "right" */
2212 void set right(var value) {
2213 setProperty('right', value, '');
2214 }
2215
2216 /** Gets the value of "rtl-ordering" */
2217 String get rtlOrdering() =>
2218 getPropertyValue('${_browserPrefix}rtl-ordering');
2219
2220 /** Sets the value of "rtl-ordering" */
2221 void set rtlOrdering(var value) {
2222 setProperty('${_browserPrefix}rtl-ordering', value, '');
2223 }
2224
2225 /** Gets the value of "size" */
2226 String get size() =>
2227 getPropertyValue('size');
2228
2229 /** Sets the value of "size" */
2230 void set size(var value) {
2231 setProperty('size', value, '');
2232 }
2233
2234 /** Gets the value of "speak" */
2235 String get speak() =>
2236 getPropertyValue('speak');
2237
2238 /** Sets the value of "speak" */
2239 void set speak(var value) {
2240 setProperty('speak', value, '');
2241 }
2242
2243 /** Gets the value of "src" */
2244 String get src() =>
2245 getPropertyValue('src');
2246
2247 /** Sets the value of "src" */
2248 void set src(var value) {
2249 setProperty('src', value, '');
2250 }
2251
2252 /** Gets the value of "table-layout" */
2253 String get tableLayout() =>
2254 getPropertyValue('table-layout');
2255
2256 /** Sets the value of "table-layout" */
2257 void set tableLayout(var value) {
2258 setProperty('table-layout', value, '');
2259 }
2260
2261 /** Gets the value of "tap-highlight-color" */
2262 String get tapHighlightColor() =>
2263 getPropertyValue('${_browserPrefix}tap-highlight-color');
2264
2265 /** Sets the value of "tap-highlight-color" */
2266 void set tapHighlightColor(var value) {
2267 setProperty('${_browserPrefix}tap-highlight-color', value, '');
2268 }
2269
2270 /** Gets the value of "text-align" */
2271 String get textAlign() =>
2272 getPropertyValue('text-align');
2273
2274 /** Sets the value of "text-align" */
2275 void set textAlign(var value) {
2276 setProperty('text-align', value, '');
2277 }
2278
2279 /** Gets the value of "text-combine" */
2280 String get textCombine() =>
2281 getPropertyValue('${_browserPrefix}text-combine');
2282
2283 /** Sets the value of "text-combine" */
2284 void set textCombine(var value) {
2285 setProperty('${_browserPrefix}text-combine', value, '');
2286 }
2287
2288 /** Gets the value of "text-decoration" */
2289 String get textDecoration() =>
2290 getPropertyValue('text-decoration');
2291
2292 /** Sets the value of "text-decoration" */
2293 void set textDecoration(var value) {
2294 setProperty('text-decoration', value, '');
2295 }
2296
2297 /** Gets the value of "text-decorations-in-effect" */
2298 String get textDecorationsInEffect() =>
2299 getPropertyValue('${_browserPrefix}text-decorations-in-effect');
2300
2301 /** Sets the value of "text-decorations-in-effect" */
2302 void set textDecorationsInEffect(var value) {
2303 setProperty('${_browserPrefix}text-decorations-in-effect', value, '');
2304 }
2305
2306 /** Gets the value of "text-emphasis" */
2307 String get textEmphasis() =>
2308 getPropertyValue('${_browserPrefix}text-emphasis');
2309
2310 /** Sets the value of "text-emphasis" */
2311 void set textEmphasis(var value) {
2312 setProperty('${_browserPrefix}text-emphasis', value, '');
2313 }
2314
2315 /** Gets the value of "text-emphasis-color" */
2316 String get textEmphasisColor() =>
2317 getPropertyValue('${_browserPrefix}text-emphasis-color');
2318
2319 /** Sets the value of "text-emphasis-color" */
2320 void set textEmphasisColor(var value) {
2321 setProperty('${_browserPrefix}text-emphasis-color', value, '');
2322 }
2323
2324 /** Gets the value of "text-emphasis-position" */
2325 String get textEmphasisPosition() =>
2326 getPropertyValue('${_browserPrefix}text-emphasis-position');
2327
2328 /** Sets the value of "text-emphasis-position" */
2329 void set textEmphasisPosition(var value) {
2330 setProperty('${_browserPrefix}text-emphasis-position', value, '');
2331 }
2332
2333 /** Gets the value of "text-emphasis-style" */
2334 String get textEmphasisStyle() =>
2335 getPropertyValue('${_browserPrefix}text-emphasis-style');
2336
2337 /** Sets the value of "text-emphasis-style" */
2338 void set textEmphasisStyle(var value) {
2339 setProperty('${_browserPrefix}text-emphasis-style', value, '');
2340 }
2341
2342 /** Gets the value of "text-fill-color" */
2343 String get textFillColor() =>
2344 getPropertyValue('${_browserPrefix}text-fill-color');
2345
2346 /** Sets the value of "text-fill-color" */
2347 void set textFillColor(var value) {
2348 setProperty('${_browserPrefix}text-fill-color', value, '');
2349 }
2350
2351 /** Gets the value of "text-indent" */
2352 String get textIndent() =>
2353 getPropertyValue('text-indent');
2354
2355 /** Sets the value of "text-indent" */
2356 void set textIndent(var value) {
2357 setProperty('text-indent', value, '');
2358 }
2359
2360 /** Gets the value of "text-line-through" */
2361 String get textLineThrough() =>
2362 getPropertyValue('text-line-through');
2363
2364 /** Sets the value of "text-line-through" */
2365 void set textLineThrough(var value) {
2366 setProperty('text-line-through', value, '');
2367 }
2368
2369 /** Gets the value of "text-line-through-color" */
2370 String get textLineThroughColor() =>
2371 getPropertyValue('text-line-through-color');
2372
2373 /** Sets the value of "text-line-through-color" */
2374 void set textLineThroughColor(var value) {
2375 setProperty('text-line-through-color', value, '');
2376 }
2377
2378 /** Gets the value of "text-line-through-mode" */
2379 String get textLineThroughMode() =>
2380 getPropertyValue('text-line-through-mode');
2381
2382 /** Sets the value of "text-line-through-mode" */
2383 void set textLineThroughMode(var value) {
2384 setProperty('text-line-through-mode', value, '');
2385 }
2386
2387 /** Gets the value of "text-line-through-style" */
2388 String get textLineThroughStyle() =>
2389 getPropertyValue('text-line-through-style');
2390
2391 /** Sets the value of "text-line-through-style" */
2392 void set textLineThroughStyle(var value) {
2393 setProperty('text-line-through-style', value, '');
2394 }
2395
2396 /** Gets the value of "text-line-through-width" */
2397 String get textLineThroughWidth() =>
2398 getPropertyValue('text-line-through-width');
2399
2400 /** Sets the value of "text-line-through-width" */
2401 void set textLineThroughWidth(var value) {
2402 setProperty('text-line-through-width', value, '');
2403 }
2404
2405 /** Gets the value of "text-orientation" */
2406 String get textOrientation() =>
2407 getPropertyValue('${_browserPrefix}text-orientation');
2408
2409 /** Sets the value of "text-orientation" */
2410 void set textOrientation(var value) {
2411 setProperty('${_browserPrefix}text-orientation', value, '');
2412 }
2413
2414 /** Gets the value of "text-overflow" */
2415 String get textOverflow() =>
2416 getPropertyValue('text-overflow');
2417
2418 /** Sets the value of "text-overflow" */
2419 void set textOverflow(var value) {
2420 setProperty('text-overflow', value, '');
2421 }
2422
2423 /** Gets the value of "text-overline" */
2424 String get textOverline() =>
2425 getPropertyValue('text-overline');
2426
2427 /** Sets the value of "text-overline" */
2428 void set textOverline(var value) {
2429 setProperty('text-overline', value, '');
2430 }
2431
2432 /** Gets the value of "text-overline-color" */
2433 String get textOverlineColor() =>
2434 getPropertyValue('text-overline-color');
2435
2436 /** Sets the value of "text-overline-color" */
2437 void set textOverlineColor(var value) {
2438 setProperty('text-overline-color', value, '');
2439 }
2440
2441 /** Gets the value of "text-overline-mode" */
2442 String get textOverlineMode() =>
2443 getPropertyValue('text-overline-mode');
2444
2445 /** Sets the value of "text-overline-mode" */
2446 void set textOverlineMode(var value) {
2447 setProperty('text-overline-mode', value, '');
2448 }
2449
2450 /** Gets the value of "text-overline-style" */
2451 String get textOverlineStyle() =>
2452 getPropertyValue('text-overline-style');
2453
2454 /** Sets the value of "text-overline-style" */
2455 void set textOverlineStyle(var value) {
2456 setProperty('text-overline-style', value, '');
2457 }
2458
2459 /** Gets the value of "text-overline-width" */
2460 String get textOverlineWidth() =>
2461 getPropertyValue('text-overline-width');
2462
2463 /** Sets the value of "text-overline-width" */
2464 void set textOverlineWidth(var value) {
2465 setProperty('text-overline-width', value, '');
2466 }
2467
2468 /** Gets the value of "text-rendering" */
2469 String get textRendering() =>
2470 getPropertyValue('text-rendering');
2471
2472 /** Sets the value of "text-rendering" */
2473 void set textRendering(var value) {
2474 setProperty('text-rendering', value, '');
2475 }
2476
2477 /** Gets the value of "text-security" */
2478 String get textSecurity() =>
2479 getPropertyValue('${_browserPrefix}text-security');
2480
2481 /** Sets the value of "text-security" */
2482 void set textSecurity(var value) {
2483 setProperty('${_browserPrefix}text-security', value, '');
2484 }
2485
2486 /** Gets the value of "text-shadow" */
2487 String get textShadow() =>
2488 getPropertyValue('text-shadow');
2489
2490 /** Sets the value of "text-shadow" */
2491 void set textShadow(var value) {
2492 setProperty('text-shadow', value, '');
2493 }
2494
2495 /** Gets the value of "text-size-adjust" */
2496 String get textSizeAdjust() =>
2497 getPropertyValue('${_browserPrefix}text-size-adjust');
2498
2499 /** Sets the value of "text-size-adjust" */
2500 void set textSizeAdjust(var value) {
2501 setProperty('${_browserPrefix}text-size-adjust', value, '');
2502 }
2503
2504 /** Gets the value of "text-stroke" */
2505 String get textStroke() =>
2506 getPropertyValue('${_browserPrefix}text-stroke');
2507
2508 /** Sets the value of "text-stroke" */
2509 void set textStroke(var value) {
2510 setProperty('${_browserPrefix}text-stroke', value, '');
2511 }
2512
2513 /** Gets the value of "text-stroke-color" */
2514 String get textStrokeColor() =>
2515 getPropertyValue('${_browserPrefix}text-stroke-color');
2516
2517 /** Sets the value of "text-stroke-color" */
2518 void set textStrokeColor(var value) {
2519 setProperty('${_browserPrefix}text-stroke-color', value, '');
2520 }
2521
2522 /** Gets the value of "text-stroke-width" */
2523 String get textStrokeWidth() =>
2524 getPropertyValue('${_browserPrefix}text-stroke-width');
2525
2526 /** Sets the value of "text-stroke-width" */
2527 void set textStrokeWidth(var value) {
2528 setProperty('${_browserPrefix}text-stroke-width', value, '');
2529 }
2530
2531 /** Gets the value of "text-transform" */
2532 String get textTransform() =>
2533 getPropertyValue('text-transform');
2534
2535 /** Sets the value of "text-transform" */
2536 void set textTransform(var value) {
2537 setProperty('text-transform', value, '');
2538 }
2539
2540 /** Gets the value of "text-underline" */
2541 String get textUnderline() =>
2542 getPropertyValue('text-underline');
2543
2544 /** Sets the value of "text-underline" */
2545 void set textUnderline(var value) {
2546 setProperty('text-underline', value, '');
2547 }
2548
2549 /** Gets the value of "text-underline-color" */
2550 String get textUnderlineColor() =>
2551 getPropertyValue('text-underline-color');
2552
2553 /** Sets the value of "text-underline-color" */
2554 void set textUnderlineColor(var value) {
2555 setProperty('text-underline-color', value, '');
2556 }
2557
2558 /** Gets the value of "text-underline-mode" */
2559 String get textUnderlineMode() =>
2560 getPropertyValue('text-underline-mode');
2561
2562 /** Sets the value of "text-underline-mode" */
2563 void set textUnderlineMode(var value) {
2564 setProperty('text-underline-mode', value, '');
2565 }
2566
2567 /** Gets the value of "text-underline-style" */
2568 String get textUnderlineStyle() =>
2569 getPropertyValue('text-underline-style');
2570
2571 /** Sets the value of "text-underline-style" */
2572 void set textUnderlineStyle(var value) {
2573 setProperty('text-underline-style', value, '');
2574 }
2575
2576 /** Gets the value of "text-underline-width" */
2577 String get textUnderlineWidth() =>
2578 getPropertyValue('text-underline-width');
2579
2580 /** Sets the value of "text-underline-width" */
2581 void set textUnderlineWidth(var value) {
2582 setProperty('text-underline-width', value, '');
2583 }
2584
2585 /** Gets the value of "top" */
2586 String get top() =>
2587 getPropertyValue('top');
2588
2589 /** Sets the value of "top" */
2590 void set top(var value) {
2591 setProperty('top', value, '');
2592 }
2593
2594 /** Gets the value of "transform" */
2595 String get transform() =>
2596 getPropertyValue('${_browserPrefix}transform');
2597
2598 /** Sets the value of "transform" */
2599 void set transform(var value) {
2600 setProperty('${_browserPrefix}transform', value, '');
2601 }
2602
2603 /** Gets the value of "transform-origin" */
2604 String get transformOrigin() =>
2605 getPropertyValue('${_browserPrefix}transform-origin');
2606
2607 /** Sets the value of "transform-origin" */
2608 void set transformOrigin(var value) {
2609 setProperty('${_browserPrefix}transform-origin', value, '');
2610 }
2611
2612 /** Gets the value of "transform-origin-x" */
2613 String get transformOriginX() =>
2614 getPropertyValue('${_browserPrefix}transform-origin-x');
2615
2616 /** Sets the value of "transform-origin-x" */
2617 void set transformOriginX(var value) {
2618 setProperty('${_browserPrefix}transform-origin-x', value, '');
2619 }
2620
2621 /** Gets the value of "transform-origin-y" */
2622 String get transformOriginY() =>
2623 getPropertyValue('${_browserPrefix}transform-origin-y');
2624
2625 /** Sets the value of "transform-origin-y" */
2626 void set transformOriginY(var value) {
2627 setProperty('${_browserPrefix}transform-origin-y', value, '');
2628 }
2629
2630 /** Gets the value of "transform-origin-z" */
2631 String get transformOriginZ() =>
2632 getPropertyValue('${_browserPrefix}transform-origin-z');
2633
2634 /** Sets the value of "transform-origin-z" */
2635 void set transformOriginZ(var value) {
2636 setProperty('${_browserPrefix}transform-origin-z', value, '');
2637 }
2638
2639 /** Gets the value of "transform-style" */
2640 String get transformStyle() =>
2641 getPropertyValue('${_browserPrefix}transform-style');
2642
2643 /** Sets the value of "transform-style" */
2644 void set transformStyle(var value) {
2645 setProperty('${_browserPrefix}transform-style', value, '');
2646 }
2647
2648 /** Gets the value of "transition" */
2649 String get transition() =>
2650 getPropertyValue('${_browserPrefix}transition');
2651
2652 /** Sets the value of "transition" */
2653 void set transition(var value) {
2654 setProperty('${_browserPrefix}transition', value, '');
2655 }
2656
2657 /** Gets the value of "transition-delay" */
2658 String get transitionDelay() =>
2659 getPropertyValue('${_browserPrefix}transition-delay');
2660
2661 /** Sets the value of "transition-delay" */
2662 void set transitionDelay(var value) {
2663 setProperty('${_browserPrefix}transition-delay', value, '');
2664 }
2665
2666 /** Gets the value of "transition-duration" */
2667 String get transitionDuration() =>
2668 getPropertyValue('${_browserPrefix}transition-duration');
2669
2670 /** Sets the value of "transition-duration" */
2671 void set transitionDuration(var value) {
2672 setProperty('${_browserPrefix}transition-duration', value, '');
2673 }
2674
2675 /** Gets the value of "transition-property" */
2676 String get transitionProperty() =>
2677 getPropertyValue('${_browserPrefix}transition-property');
2678
2679 /** Sets the value of "transition-property" */
2680 void set transitionProperty(var value) {
2681 setProperty('${_browserPrefix}transition-property', value, '');
2682 }
2683
2684 /** Gets the value of "transition-timing-function" */
2685 String get transitionTimingFunction() =>
2686 getPropertyValue('${_browserPrefix}transition-timing-function');
2687
2688 /** Sets the value of "transition-timing-function" */
2689 void set transitionTimingFunction(var value) {
2690 setProperty('${_browserPrefix}transition-timing-function', value, '');
2691 }
2692
2693 /** Gets the value of "unicode-bidi" */
2694 String get unicodeBidi() =>
2695 getPropertyValue('unicode-bidi');
2696
2697 /** Sets the value of "unicode-bidi" */
2698 void set unicodeBidi(var value) {
2699 setProperty('unicode-bidi', value, '');
2700 }
2701
2702 /** Gets the value of "unicode-range" */
2703 String get unicodeRange() =>
2704 getPropertyValue('unicode-range');
2705
2706 /** Sets the value of "unicode-range" */
2707 void set unicodeRange(var value) {
2708 setProperty('unicode-range', value, '');
2709 }
2710
2711 /** Gets the value of "user-drag" */
2712 String get userDrag() =>
2713 getPropertyValue('${_browserPrefix}user-drag');
2714
2715 /** Sets the value of "user-drag" */
2716 void set userDrag(var value) {
2717 setProperty('${_browserPrefix}user-drag', value, '');
2718 }
2719
2720 /** Gets the value of "user-modify" */
2721 String get userModify() =>
2722 getPropertyValue('${_browserPrefix}user-modify');
2723
2724 /** Sets the value of "user-modify" */
2725 void set userModify(var value) {
2726 setProperty('${_browserPrefix}user-modify', value, '');
2727 }
2728
2729 /** Gets the value of "user-select" */
2730 String get userSelect() =>
2731 getPropertyValue('${_browserPrefix}user-select');
2732
2733 /** Sets the value of "user-select" */
2734 void set userSelect(var value) {
2735 setProperty('${_browserPrefix}user-select', value, '');
2736 }
2737
2738 /** Gets the value of "vertical-align" */
2739 String get verticalAlign() =>
2740 getPropertyValue('vertical-align');
2741
2742 /** Sets the value of "vertical-align" */
2743 void set verticalAlign(var value) {
2744 setProperty('vertical-align', value, '');
2745 }
2746
2747 /** Gets the value of "visibility" */
2748 String get visibility() =>
2749 getPropertyValue('visibility');
2750
2751 /** Sets the value of "visibility" */
2752 void set visibility(var value) {
2753 setProperty('visibility', value, '');
2754 }
2755
2756 /** Gets the value of "white-space" */
2757 String get whiteSpace() =>
2758 getPropertyValue('white-space');
2759
2760 /** Sets the value of "white-space" */
2761 void set whiteSpace(var value) {
2762 setProperty('white-space', value, '');
2763 }
2764
2765 /** Gets the value of "widows" */
2766 String get widows() =>
2767 getPropertyValue('widows');
2768
2769 /** Sets the value of "widows" */
2770 void set widows(var value) {
2771 setProperty('widows', value, '');
2772 }
2773
2774 /** Gets the value of "width" */
2775 String get width() =>
2776 getPropertyValue('width');
2777
2778 /** Sets the value of "width" */
2779 void set width(var value) {
2780 setProperty('width', value, '');
2781 }
2782
2783 /** Gets the value of "word-break" */
2784 String get wordBreak() =>
2785 getPropertyValue('word-break');
2786
2787 /** Sets the value of "word-break" */
2788 void set wordBreak(var value) {
2789 setProperty('word-break', value, '');
2790 }
2791
2792 /** Gets the value of "word-spacing" */
2793 String get wordSpacing() =>
2794 getPropertyValue('word-spacing');
2795
2796 /** Sets the value of "word-spacing" */
2797 void set wordSpacing(var value) {
2798 setProperty('word-spacing', value, '');
2799 }
2800
2801 /** Gets the value of "word-wrap" */
2802 String get wordWrap() =>
2803 getPropertyValue('word-wrap');
2804
2805 /** Sets the value of "word-wrap" */
2806 void set wordWrap(var value) {
2807 setProperty('word-wrap', value, '');
2808 }
2809
2810 /** Gets the value of "wrap-shape" */
2811 String get wrapShape() =>
2812 getPropertyValue('${_browserPrefix}wrap-shape');
2813
2814 /** Sets the value of "wrap-shape" */
2815 void set wrapShape(var value) {
2816 setProperty('${_browserPrefix}wrap-shape', value, '');
2817 }
2818
2819 /** Gets the value of "writing-mode" */
2820 String get writingMode() =>
2821 getPropertyValue('${_browserPrefix}writing-mode');
2822
2823 /** Sets the value of "writing-mode" */
2824 void set writingMode(var value) {
2825 setProperty('${_browserPrefix}writing-mode', value, '');
2826 }
2827
2828 /** Gets the value of "z-index" */
2829 String get zIndex() =>
2830 getPropertyValue('z-index');
2831
2832 /** Sets the value of "z-index" */
2833 void set zIndex(var value) {
2834 setProperty('z-index', value, '');
2835 }
2836
2837 /** Gets the value of "zoom" */
2838 String get zoom() =>
2839 getPropertyValue('zoom');
2840
2841 /** Sets the value of "zoom" */
2842 void set zoom(var value) {
2843 setProperty('zoom', value, '');
2844 }
2845 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698