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

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

Powered by Google App Engine
This is Rietveld 408576698