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

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

Powered by Google App Engine
This is Rietveld 408576698