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

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

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

Powered by Google App Engine
This is Rietveld 408576698