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

Side by Side Diff: tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate

Issue 12541020: Consolidating platform code into dart:html_common (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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 part of $LIBRARYNAME; 5 part of $LIBRARYNAME;
6 6
7 String _cachedBrowserPrefix;
8
9 String get _browserPrefix {
10 if (_cachedBrowserPrefix == null) {
11 if (_Device.isFirefox) {
12 _cachedBrowserPrefix = '-moz-';
13 } else if (_Device.isIE) {
14 _cachedBrowserPrefix = '-ms-';
15 } else if (_Device.isOpera) {
16 _cachedBrowserPrefix = '-o-';
17 } else {
18 _cachedBrowserPrefix = '-webkit-';
19 }
20 }
21 return _cachedBrowserPrefix;
22 }
23
24 String _cachedBrowserPropertyPrefix;
25
26 /// Prefix as used for JS property names.
27 String get _browserPropertyPrefix {
28 if (_cachedBrowserPropertyPrefix == null) {
29 if (_Device.isFirefox) {
30 _cachedBrowserPropertyPrefix = 'moz';
31 } else if (_Device.isIE) {
32 _cachedBrowserPropertyPrefix = 'ms';
33 } else if (_Device.isOpera) {
34 _cachedBrowserPropertyPrefix = 'o';
35 } else {
36 _cachedBrowserPropertyPrefix = 'webkit';
37 }
38 }
39 return _cachedBrowserPropertyPrefix;
40 }
41
42 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { 7 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
43 factory $CLASSNAME() => _$(CLASSNAME)FactoryProvider.create$CLASSNAME(); 8 factory $CLASSNAME() => _$(CLASSNAME)FactoryProvider.create$CLASSNAME();
44 factory $CLASSNAME.css(String css) => 9 factory $CLASSNAME.css(String css) =>
45 _$(CLASSNAME)FactoryProvider.create$(CLASSNAME)_css(css); 10 _$(CLASSNAME)FactoryProvider.create$(CLASSNAME)_css(css);
46 11
47 $!MEMBERS 12 $!MEMBERS
48 13
49 String getPropertyValue(String propertyName) { 14 String getPropertyValue(String propertyName) {
50 var propValue = _getPropertyValue(propertyName); 15 var propValue = _getPropertyValue(propertyName);
51 return propValue != null ? propValue : ''; 16 return propValue != null ? propValue : '';
(...skipping 11 matching lines...) Expand all
63 } catch (e) {} 28 } catch (e) {}
64 } 29 }
65 30
66 /** 31 /**
67 * Checks to see if CSS Transitions are supported. 32 * Checks to see if CSS Transitions are supported.
68 */ 33 */
69 static bool get supportsTransitions { 34 static bool get supportsTransitions {
70 if (JS('bool', '"transition" in document.body.style')) { 35 if (JS('bool', '"transition" in document.body.style')) {
71 return true; 36 return true;
72 } 37 }
73 var propertyName = '${_browserPropertyPrefix}Transition'; 38 var propertyName = '${Device.propertyPrefix}Transition';
74 return JS('bool', '# in document.body.style', propertyName); 39 return JS('bool', '# in document.body.style', propertyName);
75 } 40 }
76 $else 41 $else
77 /** 42 /**
78 * Checks to see if CSS Transitions are supported. 43 * Checks to see if CSS Transitions are supported.
79 */ 44 */
80 static bool get supportsTransitions => true; 45 static bool get supportsTransitions => true;
81 $endif 46 $endif
82 47
83 // TODO(jacobr): generate this list of properties using the existing script. 48 // TODO(jacobr): generate this list of properties using the existing script.
84 /** Gets the value of "align-content" */ 49 /** Gets the value of "align-content" */
85 String get alignContent => 50 String get alignContent =>
86 getPropertyValue('${_browserPrefix}align-content'); 51 getPropertyValue('${Device.cssPrefix}align-content');
87 52
88 /** Sets the value of "align-content" */ 53 /** Sets the value of "align-content" */
89 void set alignContent(String value) { 54 void set alignContent(String value) {
90 setProperty('${_browserPrefix}align-content', value, ''); 55 setProperty('${Device.cssPrefix}align-content', value, '');
91 } 56 }
92 57
93 /** Gets the value of "align-items" */ 58 /** Gets the value of "align-items" */
94 String get alignItems => 59 String get alignItems =>
95 getPropertyValue('${_browserPrefix}align-items'); 60 getPropertyValue('${Device.cssPrefix}align-items');
96 61
97 /** Sets the value of "align-items" */ 62 /** Sets the value of "align-items" */
98 void set alignItems(String value) { 63 void set alignItems(String value) {
99 setProperty('${_browserPrefix}align-items', value, ''); 64 setProperty('${Device.cssPrefix}align-items', value, '');
100 } 65 }
101 66
102 /** Gets the value of "align-self" */ 67 /** Gets the value of "align-self" */
103 String get alignSelf => 68 String get alignSelf =>
104 getPropertyValue('${_browserPrefix}align-self'); 69 getPropertyValue('${Device.cssPrefix}align-self');
105 70
106 /** Sets the value of "align-self" */ 71 /** Sets the value of "align-self" */
107 void set alignSelf(String value) { 72 void set alignSelf(String value) {
108 setProperty('${_browserPrefix}align-self', value, ''); 73 setProperty('${Device.cssPrefix}align-self', value, '');
109 } 74 }
110 75
111 /** Gets the value of "animation" */ 76 /** Gets the value of "animation" */
112 String get animation => 77 String get animation =>
113 getPropertyValue('${_browserPrefix}animation'); 78 getPropertyValue('${Device.cssPrefix}animation');
114 79
115 /** Sets the value of "animation" */ 80 /** Sets the value of "animation" */
116 void set animation(String value) { 81 void set animation(String value) {
117 setProperty('${_browserPrefix}animation', value, ''); 82 setProperty('${Device.cssPrefix}animation', value, '');
118 } 83 }
119 84
120 /** Gets the value of "animation-delay" */ 85 /** Gets the value of "animation-delay" */
121 String get animationDelay => 86 String get animationDelay =>
122 getPropertyValue('${_browserPrefix}animation-delay'); 87 getPropertyValue('${Device.cssPrefix}animation-delay');
123 88
124 /** Sets the value of "animation-delay" */ 89 /** Sets the value of "animation-delay" */
125 void set animationDelay(String value) { 90 void set animationDelay(String value) {
126 setProperty('${_browserPrefix}animation-delay', value, ''); 91 setProperty('${Device.cssPrefix}animation-delay', value, '');
127 } 92 }
128 93
129 /** Gets the value of "animation-direction" */ 94 /** Gets the value of "animation-direction" */
130 String get animationDirection => 95 String get animationDirection =>
131 getPropertyValue('${_browserPrefix}animation-direction'); 96 getPropertyValue('${Device.cssPrefix}animation-direction');
132 97
133 /** Sets the value of "animation-direction" */ 98 /** Sets the value of "animation-direction" */
134 void set animationDirection(String value) { 99 void set animationDirection(String value) {
135 setProperty('${_browserPrefix}animation-direction', value, ''); 100 setProperty('${Device.cssPrefix}animation-direction', value, '');
136 } 101 }
137 102
138 /** Gets the value of "animation-duration" */ 103 /** Gets the value of "animation-duration" */
139 String get animationDuration => 104 String get animationDuration =>
140 getPropertyValue('${_browserPrefix}animation-duration'); 105 getPropertyValue('${Device.cssPrefix}animation-duration');
141 106
142 /** Sets the value of "animation-duration" */ 107 /** Sets the value of "animation-duration" */
143 void set animationDuration(String value) { 108 void set animationDuration(String value) {
144 setProperty('${_browserPrefix}animation-duration', value, ''); 109 setProperty('${Device.cssPrefix}animation-duration', value, '');
145 } 110 }
146 111
147 /** Gets the value of "animation-fill-mode" */ 112 /** Gets the value of "animation-fill-mode" */
148 String get animationFillMode => 113 String get animationFillMode =>
149 getPropertyValue('${_browserPrefix}animation-fill-mode'); 114 getPropertyValue('${Device.cssPrefix}animation-fill-mode');
150 115
151 /** Sets the value of "animation-fill-mode" */ 116 /** Sets the value of "animation-fill-mode" */
152 void set animationFillMode(String value) { 117 void set animationFillMode(String value) {
153 setProperty('${_browserPrefix}animation-fill-mode', value, ''); 118 setProperty('${Device.cssPrefix}animation-fill-mode', value, '');
154 } 119 }
155 120
156 /** Gets the value of "animation-iteration-count" */ 121 /** Gets the value of "animation-iteration-count" */
157 String get animationIterationCount => 122 String get animationIterationCount =>
158 getPropertyValue('${_browserPrefix}animation-iteration-count'); 123 getPropertyValue('${Device.cssPrefix}animation-iteration-count');
159 124
160 /** Sets the value of "animation-iteration-count" */ 125 /** Sets the value of "animation-iteration-count" */
161 void set animationIterationCount(String value) { 126 void set animationIterationCount(String value) {
162 setProperty('${_browserPrefix}animation-iteration-count', value, ''); 127 setProperty('${Device.cssPrefix}animation-iteration-count', value, '');
163 } 128 }
164 129
165 /** Gets the value of "animation-name" */ 130 /** Gets the value of "animation-name" */
166 String get animationName => 131 String get animationName =>
167 getPropertyValue('${_browserPrefix}animation-name'); 132 getPropertyValue('${Device.cssPrefix}animation-name');
168 133
169 /** Sets the value of "animation-name" */ 134 /** Sets the value of "animation-name" */
170 void set animationName(String value) { 135 void set animationName(String value) {
171 setProperty('${_browserPrefix}animation-name', value, ''); 136 setProperty('${Device.cssPrefix}animation-name', value, '');
172 } 137 }
173 138
174 /** Gets the value of "animation-play-state" */ 139 /** Gets the value of "animation-play-state" */
175 String get animationPlayState => 140 String get animationPlayState =>
176 getPropertyValue('${_browserPrefix}animation-play-state'); 141 getPropertyValue('${Device.cssPrefix}animation-play-state');
177 142
178 /** Sets the value of "animation-play-state" */ 143 /** Sets the value of "animation-play-state" */
179 void set animationPlayState(String value) { 144 void set animationPlayState(String value) {
180 setProperty('${_browserPrefix}animation-play-state', value, ''); 145 setProperty('${Device.cssPrefix}animation-play-state', value, '');
181 } 146 }
182 147
183 /** Gets the value of "animation-timing-function" */ 148 /** Gets the value of "animation-timing-function" */
184 String get animationTimingFunction => 149 String get animationTimingFunction =>
185 getPropertyValue('${_browserPrefix}animation-timing-function'); 150 getPropertyValue('${Device.cssPrefix}animation-timing-function');
186 151
187 /** Sets the value of "animation-timing-function" */ 152 /** Sets the value of "animation-timing-function" */
188 void set animationTimingFunction(String value) { 153 void set animationTimingFunction(String value) {
189 setProperty('${_browserPrefix}animation-timing-function', value, ''); 154 setProperty('${Device.cssPrefix}animation-timing-function', value, '');
190 } 155 }
191 156
192 /** Gets the value of "app-region" */ 157 /** Gets the value of "app-region" */
193 String get appRegion => 158 String get appRegion =>
194 getPropertyValue('${_browserPrefix}app-region'); 159 getPropertyValue('${Device.cssPrefix}app-region');
195 160
196 /** Sets the value of "app-region" */ 161 /** Sets the value of "app-region" */
197 void set appRegion(String value) { 162 void set appRegion(String value) {
198 setProperty('${_browserPrefix}app-region', value, ''); 163 setProperty('${Device.cssPrefix}app-region', value, '');
199 } 164 }
200 165
201 /** Gets the value of "appearance" */ 166 /** Gets the value of "appearance" */
202 String get appearance => 167 String get appearance =>
203 getPropertyValue('${_browserPrefix}appearance'); 168 getPropertyValue('${Device.cssPrefix}appearance');
204 169
205 /** Sets the value of "appearance" */ 170 /** Sets the value of "appearance" */
206 void set appearance(String value) { 171 void set appearance(String value) {
207 setProperty('${_browserPrefix}appearance', value, ''); 172 setProperty('${Device.cssPrefix}appearance', value, '');
208 } 173 }
209 174
210 /** Gets the value of "aspect-ratio" */ 175 /** Gets the value of "aspect-ratio" */
211 String get aspectRatio => 176 String get aspectRatio =>
212 getPropertyValue('${_browserPrefix}aspect-ratio'); 177 getPropertyValue('${Device.cssPrefix}aspect-ratio');
213 178
214 /** Sets the value of "aspect-ratio" */ 179 /** Sets the value of "aspect-ratio" */
215 void set aspectRatio(String value) { 180 void set aspectRatio(String value) {
216 setProperty('${_browserPrefix}aspect-ratio', value, ''); 181 setProperty('${Device.cssPrefix}aspect-ratio', value, '');
217 } 182 }
218 183
219 /** Gets the value of "backface-visibility" */ 184 /** Gets the value of "backface-visibility" */
220 String get backfaceVisibility => 185 String get backfaceVisibility =>
221 getPropertyValue('${_browserPrefix}backface-visibility'); 186 getPropertyValue('${Device.cssPrefix}backface-visibility');
222 187
223 /** Sets the value of "backface-visibility" */ 188 /** Sets the value of "backface-visibility" */
224 void set backfaceVisibility(String value) { 189 void set backfaceVisibility(String value) {
225 setProperty('${_browserPrefix}backface-visibility', value, ''); 190 setProperty('${Device.cssPrefix}backface-visibility', value, '');
226 } 191 }
227 192
228 /** Gets the value of "background" */ 193 /** Gets the value of "background" */
229 String get background => 194 String get background =>
230 getPropertyValue('background'); 195 getPropertyValue('background');
231 196
232 /** Sets the value of "background" */ 197 /** Sets the value of "background" */
233 void set background(String value) { 198 void set background(String value) {
234 setProperty('background', value, ''); 199 setProperty('background', value, '');
235 } 200 }
(...skipping 20 matching lines...) Expand all
256 String get backgroundColor => 221 String get backgroundColor =>
257 getPropertyValue('background-color'); 222 getPropertyValue('background-color');
258 223
259 /** Sets the value of "background-color" */ 224 /** Sets the value of "background-color" */
260 void set backgroundColor(String value) { 225 void set backgroundColor(String value) {
261 setProperty('background-color', value, ''); 226 setProperty('background-color', value, '');
262 } 227 }
263 228
264 /** Gets the value of "background-composite" */ 229 /** Gets the value of "background-composite" */
265 String get backgroundComposite => 230 String get backgroundComposite =>
266 getPropertyValue('${_browserPrefix}background-composite'); 231 getPropertyValue('${Device.cssPrefix}background-composite');
267 232
268 /** Sets the value of "background-composite" */ 233 /** Sets the value of "background-composite" */
269 void set backgroundComposite(String value) { 234 void set backgroundComposite(String value) {
270 setProperty('${_browserPrefix}background-composite', value, ''); 235 setProperty('${Device.cssPrefix}background-composite', value, '');
271 } 236 }
272 237
273 /** Gets the value of "background-image" */ 238 /** Gets the value of "background-image" */
274 String get backgroundImage => 239 String get backgroundImage =>
275 getPropertyValue('background-image'); 240 getPropertyValue('background-image');
276 241
277 /** Sets the value of "background-image" */ 242 /** Sets the value of "background-image" */
278 void set backgroundImage(String value) { 243 void set backgroundImage(String value) {
279 setProperty('background-image', value, ''); 244 setProperty('background-image', value, '');
280 } 245 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 String get backgroundSize => 311 String get backgroundSize =>
347 getPropertyValue('background-size'); 312 getPropertyValue('background-size');
348 313
349 /** Sets the value of "background-size" */ 314 /** Sets the value of "background-size" */
350 void set backgroundSize(String value) { 315 void set backgroundSize(String value) {
351 setProperty('background-size', value, ''); 316 setProperty('background-size', value, '');
352 } 317 }
353 318
354 /** Gets the value of "blend-mode" */ 319 /** Gets the value of "blend-mode" */
355 String get blendMode => 320 String get blendMode =>
356 getPropertyValue('${_browserPrefix}blend-mode'); 321 getPropertyValue('${Device.cssPrefix}blend-mode');
357 322
358 /** Sets the value of "blend-mode" */ 323 /** Sets the value of "blend-mode" */
359 void set blendMode(String value) { 324 void set blendMode(String value) {
360 setProperty('${_browserPrefix}blend-mode', value, ''); 325 setProperty('${Device.cssPrefix}blend-mode', value, '');
361 } 326 }
362 327
363 /** Gets the value of "border" */ 328 /** Gets the value of "border" */
364 String get border => 329 String get border =>
365 getPropertyValue('border'); 330 getPropertyValue('border');
366 331
367 /** Sets the value of "border" */ 332 /** Sets the value of "border" */
368 void set border(String value) { 333 void set border(String value) {
369 setProperty('border', value, ''); 334 setProperty('border', value, '');
370 } 335 }
371 336
372 /** Gets the value of "border-after" */ 337 /** Gets the value of "border-after" */
373 String get borderAfter => 338 String get borderAfter =>
374 getPropertyValue('${_browserPrefix}border-after'); 339 getPropertyValue('${Device.cssPrefix}border-after');
375 340
376 /** Sets the value of "border-after" */ 341 /** Sets the value of "border-after" */
377 void set borderAfter(String value) { 342 void set borderAfter(String value) {
378 setProperty('${_browserPrefix}border-after', value, ''); 343 setProperty('${Device.cssPrefix}border-after', value, '');
379 } 344 }
380 345
381 /** Gets the value of "border-after-color" */ 346 /** Gets the value of "border-after-color" */
382 String get borderAfterColor => 347 String get borderAfterColor =>
383 getPropertyValue('${_browserPrefix}border-after-color'); 348 getPropertyValue('${Device.cssPrefix}border-after-color');
384 349
385 /** Sets the value of "border-after-color" */ 350 /** Sets the value of "border-after-color" */
386 void set borderAfterColor(String value) { 351 void set borderAfterColor(String value) {
387 setProperty('${_browserPrefix}border-after-color', value, ''); 352 setProperty('${Device.cssPrefix}border-after-color', value, '');
388 } 353 }
389 354
390 /** Gets the value of "border-after-style" */ 355 /** Gets the value of "border-after-style" */
391 String get borderAfterStyle => 356 String get borderAfterStyle =>
392 getPropertyValue('${_browserPrefix}border-after-style'); 357 getPropertyValue('${Device.cssPrefix}border-after-style');
393 358
394 /** Sets the value of "border-after-style" */ 359 /** Sets the value of "border-after-style" */
395 void set borderAfterStyle(String value) { 360 void set borderAfterStyle(String value) {
396 setProperty('${_browserPrefix}border-after-style', value, ''); 361 setProperty('${Device.cssPrefix}border-after-style', value, '');
397 } 362 }
398 363
399 /** Gets the value of "border-after-width" */ 364 /** Gets the value of "border-after-width" */
400 String get borderAfterWidth => 365 String get borderAfterWidth =>
401 getPropertyValue('${_browserPrefix}border-after-width'); 366 getPropertyValue('${Device.cssPrefix}border-after-width');
402 367
403 /** Sets the value of "border-after-width" */ 368 /** Sets the value of "border-after-width" */
404 void set borderAfterWidth(String value) { 369 void set borderAfterWidth(String value) {
405 setProperty('${_browserPrefix}border-after-width', value, ''); 370 setProperty('${Device.cssPrefix}border-after-width', value, '');
406 } 371 }
407 372
408 /** Gets the value of "border-before" */ 373 /** Gets the value of "border-before" */
409 String get borderBefore => 374 String get borderBefore =>
410 getPropertyValue('${_browserPrefix}border-before'); 375 getPropertyValue('${Device.cssPrefix}border-before');
411 376
412 /** Sets the value of "border-before" */ 377 /** Sets the value of "border-before" */
413 void set borderBefore(String value) { 378 void set borderBefore(String value) {
414 setProperty('${_browserPrefix}border-before', value, ''); 379 setProperty('${Device.cssPrefix}border-before', value, '');
415 } 380 }
416 381
417 /** Gets the value of "border-before-color" */ 382 /** Gets the value of "border-before-color" */
418 String get borderBeforeColor => 383 String get borderBeforeColor =>
419 getPropertyValue('${_browserPrefix}border-before-color'); 384 getPropertyValue('${Device.cssPrefix}border-before-color');
420 385
421 /** Sets the value of "border-before-color" */ 386 /** Sets the value of "border-before-color" */
422 void set borderBeforeColor(String value) { 387 void set borderBeforeColor(String value) {
423 setProperty('${_browserPrefix}border-before-color', value, ''); 388 setProperty('${Device.cssPrefix}border-before-color', value, '');
424 } 389 }
425 390
426 /** Gets the value of "border-before-style" */ 391 /** Gets the value of "border-before-style" */
427 String get borderBeforeStyle => 392 String get borderBeforeStyle =>
428 getPropertyValue('${_browserPrefix}border-before-style'); 393 getPropertyValue('${Device.cssPrefix}border-before-style');
429 394
430 /** Sets the value of "border-before-style" */ 395 /** Sets the value of "border-before-style" */
431 void set borderBeforeStyle(String value) { 396 void set borderBeforeStyle(String value) {
432 setProperty('${_browserPrefix}border-before-style', value, ''); 397 setProperty('${Device.cssPrefix}border-before-style', value, '');
433 } 398 }
434 399
435 /** Gets the value of "border-before-width" */ 400 /** Gets the value of "border-before-width" */
436 String get borderBeforeWidth => 401 String get borderBeforeWidth =>
437 getPropertyValue('${_browserPrefix}border-before-width'); 402 getPropertyValue('${Device.cssPrefix}border-before-width');
438 403
439 /** Sets the value of "border-before-width" */ 404 /** Sets the value of "border-before-width" */
440 void set borderBeforeWidth(String value) { 405 void set borderBeforeWidth(String value) {
441 setProperty('${_browserPrefix}border-before-width', value, ''); 406 setProperty('${Device.cssPrefix}border-before-width', value, '');
442 } 407 }
443 408
444 /** Gets the value of "border-bottom" */ 409 /** Gets the value of "border-bottom" */
445 String get borderBottom => 410 String get borderBottom =>
446 getPropertyValue('border-bottom'); 411 getPropertyValue('border-bottom');
447 412
448 /** Sets the value of "border-bottom" */ 413 /** Sets the value of "border-bottom" */
449 void set borderBottom(String value) { 414 void set borderBottom(String value) {
450 setProperty('border-bottom', value, ''); 415 setProperty('border-bottom', value, '');
451 } 416 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 String get borderColor => 473 String get borderColor =>
509 getPropertyValue('border-color'); 474 getPropertyValue('border-color');
510 475
511 /** Sets the value of "border-color" */ 476 /** Sets the value of "border-color" */
512 void set borderColor(String value) { 477 void set borderColor(String value) {
513 setProperty('border-color', value, ''); 478 setProperty('border-color', value, '');
514 } 479 }
515 480
516 /** Gets the value of "border-end" */ 481 /** Gets the value of "border-end" */
517 String get borderEnd => 482 String get borderEnd =>
518 getPropertyValue('${_browserPrefix}border-end'); 483 getPropertyValue('${Device.cssPrefix}border-end');
519 484
520 /** Sets the value of "border-end" */ 485 /** Sets the value of "border-end" */
521 void set borderEnd(String value) { 486 void set borderEnd(String value) {
522 setProperty('${_browserPrefix}border-end', value, ''); 487 setProperty('${Device.cssPrefix}border-end', value, '');
523 } 488 }
524 489
525 /** Gets the value of "border-end-color" */ 490 /** Gets the value of "border-end-color" */
526 String get borderEndColor => 491 String get borderEndColor =>
527 getPropertyValue('${_browserPrefix}border-end-color'); 492 getPropertyValue('${Device.cssPrefix}border-end-color');
528 493
529 /** Sets the value of "border-end-color" */ 494 /** Sets the value of "border-end-color" */
530 void set borderEndColor(String value) { 495 void set borderEndColor(String value) {
531 setProperty('${_browserPrefix}border-end-color', value, ''); 496 setProperty('${Device.cssPrefix}border-end-color', value, '');
532 } 497 }
533 498
534 /** Gets the value of "border-end-style" */ 499 /** Gets the value of "border-end-style" */
535 String get borderEndStyle => 500 String get borderEndStyle =>
536 getPropertyValue('${_browserPrefix}border-end-style'); 501 getPropertyValue('${Device.cssPrefix}border-end-style');
537 502
538 /** Sets the value of "border-end-style" */ 503 /** Sets the value of "border-end-style" */
539 void set borderEndStyle(String value) { 504 void set borderEndStyle(String value) {
540 setProperty('${_browserPrefix}border-end-style', value, ''); 505 setProperty('${Device.cssPrefix}border-end-style', value, '');
541 } 506 }
542 507
543 /** Gets the value of "border-end-width" */ 508 /** Gets the value of "border-end-width" */
544 String get borderEndWidth => 509 String get borderEndWidth =>
545 getPropertyValue('${_browserPrefix}border-end-width'); 510 getPropertyValue('${Device.cssPrefix}border-end-width');
546 511
547 /** Sets the value of "border-end-width" */ 512 /** Sets the value of "border-end-width" */
548 void set borderEndWidth(String value) { 513 void set borderEndWidth(String value) {
549 setProperty('${_browserPrefix}border-end-width', value, ''); 514 setProperty('${Device.cssPrefix}border-end-width', value, '');
550 } 515 }
551 516
552 /** Gets the value of "border-fit" */ 517 /** Gets the value of "border-fit" */
553 String get borderFit => 518 String get borderFit =>
554 getPropertyValue('${_browserPrefix}border-fit'); 519 getPropertyValue('${Device.cssPrefix}border-fit');
555 520
556 /** Sets the value of "border-fit" */ 521 /** Sets the value of "border-fit" */
557 void set borderFit(String value) { 522 void set borderFit(String value) {
558 setProperty('${_browserPrefix}border-fit', value, ''); 523 setProperty('${Device.cssPrefix}border-fit', value, '');
559 } 524 }
560 525
561 /** Gets the value of "border-horizontal-spacing" */ 526 /** Gets the value of "border-horizontal-spacing" */
562 String get borderHorizontalSpacing => 527 String get borderHorizontalSpacing =>
563 getPropertyValue('${_browserPrefix}border-horizontal-spacing'); 528 getPropertyValue('${Device.cssPrefix}border-horizontal-spacing');
564 529
565 /** Sets the value of "border-horizontal-spacing" */ 530 /** Sets the value of "border-horizontal-spacing" */
566 void set borderHorizontalSpacing(String value) { 531 void set borderHorizontalSpacing(String value) {
567 setProperty('${_browserPrefix}border-horizontal-spacing', value, ''); 532 setProperty('${Device.cssPrefix}border-horizontal-spacing', value, '');
568 } 533 }
569 534
570 /** Gets the value of "border-image" */ 535 /** Gets the value of "border-image" */
571 String get borderImage => 536 String get borderImage =>
572 getPropertyValue('border-image'); 537 getPropertyValue('border-image');
573 538
574 /** Sets the value of "border-image" */ 539 /** Sets the value of "border-image" */
575 void set borderImage(String value) { 540 void set borderImage(String value) {
576 setProperty('border-image', value, ''); 541 setProperty('border-image', value, '');
577 } 542 }
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 String get borderSpacing => 671 String get borderSpacing =>
707 getPropertyValue('border-spacing'); 672 getPropertyValue('border-spacing');
708 673
709 /** Sets the value of "border-spacing" */ 674 /** Sets the value of "border-spacing" */
710 void set borderSpacing(String value) { 675 void set borderSpacing(String value) {
711 setProperty('border-spacing', value, ''); 676 setProperty('border-spacing', value, '');
712 } 677 }
713 678
714 /** Gets the value of "border-start" */ 679 /** Gets the value of "border-start" */
715 String get borderStart => 680 String get borderStart =>
716 getPropertyValue('${_browserPrefix}border-start'); 681 getPropertyValue('${Device.cssPrefix}border-start');
717 682
718 /** Sets the value of "border-start" */ 683 /** Sets the value of "border-start" */
719 void set borderStart(String value) { 684 void set borderStart(String value) {
720 setProperty('${_browserPrefix}border-start', value, ''); 685 setProperty('${Device.cssPrefix}border-start', value, '');
721 } 686 }
722 687
723 /** Gets the value of "border-start-color" */ 688 /** Gets the value of "border-start-color" */
724 String get borderStartColor => 689 String get borderStartColor =>
725 getPropertyValue('${_browserPrefix}border-start-color'); 690 getPropertyValue('${Device.cssPrefix}border-start-color');
726 691
727 /** Sets the value of "border-start-color" */ 692 /** Sets the value of "border-start-color" */
728 void set borderStartColor(String value) { 693 void set borderStartColor(String value) {
729 setProperty('${_browserPrefix}border-start-color', value, ''); 694 setProperty('${Device.cssPrefix}border-start-color', value, '');
730 } 695 }
731 696
732 /** Gets the value of "border-start-style" */ 697 /** Gets the value of "border-start-style" */
733 String get borderStartStyle => 698 String get borderStartStyle =>
734 getPropertyValue('${_browserPrefix}border-start-style'); 699 getPropertyValue('${Device.cssPrefix}border-start-style');
735 700
736 /** Sets the value of "border-start-style" */ 701 /** Sets the value of "border-start-style" */
737 void set borderStartStyle(String value) { 702 void set borderStartStyle(String value) {
738 setProperty('${_browserPrefix}border-start-style', value, ''); 703 setProperty('${Device.cssPrefix}border-start-style', value, '');
739 } 704 }
740 705
741 /** Gets the value of "border-start-width" */ 706 /** Gets the value of "border-start-width" */
742 String get borderStartWidth => 707 String get borderStartWidth =>
743 getPropertyValue('${_browserPrefix}border-start-width'); 708 getPropertyValue('${Device.cssPrefix}border-start-width');
744 709
745 /** Sets the value of "border-start-width" */ 710 /** Sets the value of "border-start-width" */
746 void set borderStartWidth(String value) { 711 void set borderStartWidth(String value) {
747 setProperty('${_browserPrefix}border-start-width', value, ''); 712 setProperty('${Device.cssPrefix}border-start-width', value, '');
748 } 713 }
749 714
750 /** Gets the value of "border-style" */ 715 /** Gets the value of "border-style" */
751 String get borderStyle => 716 String get borderStyle =>
752 getPropertyValue('border-style'); 717 getPropertyValue('border-style');
753 718
754 /** Sets the value of "border-style" */ 719 /** Sets the value of "border-style" */
755 void set borderStyle(String value) { 720 void set borderStyle(String value) {
756 setProperty('border-style', value, ''); 721 setProperty('border-style', value, '');
757 } 722 }
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 String get borderTopWidth => 770 String get borderTopWidth =>
806 getPropertyValue('border-top-width'); 771 getPropertyValue('border-top-width');
807 772
808 /** Sets the value of "border-top-width" */ 773 /** Sets the value of "border-top-width" */
809 void set borderTopWidth(String value) { 774 void set borderTopWidth(String value) {
810 setProperty('border-top-width', value, ''); 775 setProperty('border-top-width', value, '');
811 } 776 }
812 777
813 /** Gets the value of "border-vertical-spacing" */ 778 /** Gets the value of "border-vertical-spacing" */
814 String get borderVerticalSpacing => 779 String get borderVerticalSpacing =>
815 getPropertyValue('${_browserPrefix}border-vertical-spacing'); 780 getPropertyValue('${Device.cssPrefix}border-vertical-spacing');
816 781
817 /** Sets the value of "border-vertical-spacing" */ 782 /** Sets the value of "border-vertical-spacing" */
818 void set borderVerticalSpacing(String value) { 783 void set borderVerticalSpacing(String value) {
819 setProperty('${_browserPrefix}border-vertical-spacing', value, ''); 784 setProperty('${Device.cssPrefix}border-vertical-spacing', value, '');
820 } 785 }
821 786
822 /** Gets the value of "border-width" */ 787 /** Gets the value of "border-width" */
823 String get borderWidth => 788 String get borderWidth =>
824 getPropertyValue('border-width'); 789 getPropertyValue('border-width');
825 790
826 /** Sets the value of "border-width" */ 791 /** Sets the value of "border-width" */
827 void set borderWidth(String value) { 792 void set borderWidth(String value) {
828 setProperty('border-width', value, ''); 793 setProperty('border-width', value, '');
829 } 794 }
830 795
831 /** Gets the value of "bottom" */ 796 /** Gets the value of "bottom" */
832 String get bottom => 797 String get bottom =>
833 getPropertyValue('bottom'); 798 getPropertyValue('bottom');
834 799
835 /** Sets the value of "bottom" */ 800 /** Sets the value of "bottom" */
836 void set bottom(String value) { 801 void set bottom(String value) {
837 setProperty('bottom', value, ''); 802 setProperty('bottom', value, '');
838 } 803 }
839 804
840 /** Gets the value of "box-align" */ 805 /** Gets the value of "box-align" */
841 String get boxAlign => 806 String get boxAlign =>
842 getPropertyValue('${_browserPrefix}box-align'); 807 getPropertyValue('${Device.cssPrefix}box-align');
843 808
844 /** Sets the value of "box-align" */ 809 /** Sets the value of "box-align" */
845 void set boxAlign(String value) { 810 void set boxAlign(String value) {
846 setProperty('${_browserPrefix}box-align', value, ''); 811 setProperty('${Device.cssPrefix}box-align', value, '');
847 } 812 }
848 813
849 /** Gets the value of "box-decoration-break" */ 814 /** Gets the value of "box-decoration-break" */
850 String get boxDecorationBreak => 815 String get boxDecorationBreak =>
851 getPropertyValue('${_browserPrefix}box-decoration-break'); 816 getPropertyValue('${Device.cssPrefix}box-decoration-break');
852 817
853 /** Sets the value of "box-decoration-break" */ 818 /** Sets the value of "box-decoration-break" */
854 void set boxDecorationBreak(String value) { 819 void set boxDecorationBreak(String value) {
855 setProperty('${_browserPrefix}box-decoration-break', value, ''); 820 setProperty('${Device.cssPrefix}box-decoration-break', value, '');
856 } 821 }
857 822
858 /** Gets the value of "box-direction" */ 823 /** Gets the value of "box-direction" */
859 String get boxDirection => 824 String get boxDirection =>
860 getPropertyValue('${_browserPrefix}box-direction'); 825 getPropertyValue('${Device.cssPrefix}box-direction');
861 826
862 /** Sets the value of "box-direction" */ 827 /** Sets the value of "box-direction" */
863 void set boxDirection(String value) { 828 void set boxDirection(String value) {
864 setProperty('${_browserPrefix}box-direction', value, ''); 829 setProperty('${Device.cssPrefix}box-direction', value, '');
865 } 830 }
866 831
867 /** Gets the value of "box-flex" */ 832 /** Gets the value of "box-flex" */
868 String get boxFlex => 833 String get boxFlex =>
869 getPropertyValue('${_browserPrefix}box-flex'); 834 getPropertyValue('${Device.cssPrefix}box-flex');
870 835
871 /** Sets the value of "box-flex" */ 836 /** Sets the value of "box-flex" */
872 void set boxFlex(String value) { 837 void set boxFlex(String value) {
873 setProperty('${_browserPrefix}box-flex', value, ''); 838 setProperty('${Device.cssPrefix}box-flex', value, '');
874 } 839 }
875 840
876 /** Gets the value of "box-flex-group" */ 841 /** Gets the value of "box-flex-group" */
877 String get boxFlexGroup => 842 String get boxFlexGroup =>
878 getPropertyValue('${_browserPrefix}box-flex-group'); 843 getPropertyValue('${Device.cssPrefix}box-flex-group');
879 844
880 /** Sets the value of "box-flex-group" */ 845 /** Sets the value of "box-flex-group" */
881 void set boxFlexGroup(String value) { 846 void set boxFlexGroup(String value) {
882 setProperty('${_browserPrefix}box-flex-group', value, ''); 847 setProperty('${Device.cssPrefix}box-flex-group', value, '');
883 } 848 }
884 849
885 /** Gets the value of "box-lines" */ 850 /** Gets the value of "box-lines" */
886 String get boxLines => 851 String get boxLines =>
887 getPropertyValue('${_browserPrefix}box-lines'); 852 getPropertyValue('${Device.cssPrefix}box-lines');
888 853
889 /** Sets the value of "box-lines" */ 854 /** Sets the value of "box-lines" */
890 void set boxLines(String value) { 855 void set boxLines(String value) {
891 setProperty('${_browserPrefix}box-lines', value, ''); 856 setProperty('${Device.cssPrefix}box-lines', value, '');
892 } 857 }
893 858
894 /** Gets the value of "box-ordinal-group" */ 859 /** Gets the value of "box-ordinal-group" */
895 String get boxOrdinalGroup => 860 String get boxOrdinalGroup =>
896 getPropertyValue('${_browserPrefix}box-ordinal-group'); 861 getPropertyValue('${Device.cssPrefix}box-ordinal-group');
897 862
898 /** Sets the value of "box-ordinal-group" */ 863 /** Sets the value of "box-ordinal-group" */
899 void set boxOrdinalGroup(String value) { 864 void set boxOrdinalGroup(String value) {
900 setProperty('${_browserPrefix}box-ordinal-group', value, ''); 865 setProperty('${Device.cssPrefix}box-ordinal-group', value, '');
901 } 866 }
902 867
903 /** Gets the value of "box-orient" */ 868 /** Gets the value of "box-orient" */
904 String get boxOrient => 869 String get boxOrient =>
905 getPropertyValue('${_browserPrefix}box-orient'); 870 getPropertyValue('${Device.cssPrefix}box-orient');
906 871
907 /** Sets the value of "box-orient" */ 872 /** Sets the value of "box-orient" */
908 void set boxOrient(String value) { 873 void set boxOrient(String value) {
909 setProperty('${_browserPrefix}box-orient', value, ''); 874 setProperty('${Device.cssPrefix}box-orient', value, '');
910 } 875 }
911 876
912 /** Gets the value of "box-pack" */ 877 /** Gets the value of "box-pack" */
913 String get boxPack => 878 String get boxPack =>
914 getPropertyValue('${_browserPrefix}box-pack'); 879 getPropertyValue('${Device.cssPrefix}box-pack');
915 880
916 /** Sets the value of "box-pack" */ 881 /** Sets the value of "box-pack" */
917 void set boxPack(String value) { 882 void set boxPack(String value) {
918 setProperty('${_browserPrefix}box-pack', value, ''); 883 setProperty('${Device.cssPrefix}box-pack', value, '');
919 } 884 }
920 885
921 /** Gets the value of "box-reflect" */ 886 /** Gets the value of "box-reflect" */
922 String get boxReflect => 887 String get boxReflect =>
923 getPropertyValue('${_browserPrefix}box-reflect'); 888 getPropertyValue('${Device.cssPrefix}box-reflect');
924 889
925 /** Sets the value of "box-reflect" */ 890 /** Sets the value of "box-reflect" */
926 void set boxReflect(String value) { 891 void set boxReflect(String value) {
927 setProperty('${_browserPrefix}box-reflect', value, ''); 892 setProperty('${Device.cssPrefix}box-reflect', value, '');
928 } 893 }
929 894
930 /** Gets the value of "box-shadow" */ 895 /** Gets the value of "box-shadow" */
931 String get boxShadow => 896 String get boxShadow =>
932 getPropertyValue('box-shadow'); 897 getPropertyValue('box-shadow');
933 898
934 /** Sets the value of "box-shadow" */ 899 /** Sets the value of "box-shadow" */
935 void set boxShadow(String value) { 900 void set boxShadow(String value) {
936 setProperty('box-shadow', value, ''); 901 setProperty('box-shadow', value, '');
937 } 902 }
(...skipping 29 matching lines...) Expand all
967 String get clip => 932 String get clip =>
968 getPropertyValue('clip'); 933 getPropertyValue('clip');
969 934
970 /** Sets the value of "clip" */ 935 /** Sets the value of "clip" */
971 void set clip(String value) { 936 void set clip(String value) {
972 setProperty('clip', value, ''); 937 setProperty('clip', value, '');
973 } 938 }
974 939
975 /** Gets the value of "clip-path" */ 940 /** Gets the value of "clip-path" */
976 String get clipPath => 941 String get clipPath =>
977 getPropertyValue('${_browserPrefix}clip-path'); 942 getPropertyValue('${Device.cssPrefix}clip-path');
978 943
979 /** Sets the value of "clip-path" */ 944 /** Sets the value of "clip-path" */
980 void set clipPath(String value) { 945 void set clipPath(String value) {
981 setProperty('${_browserPrefix}clip-path', value, ''); 946 setProperty('${Device.cssPrefix}clip-path', value, '');
982 } 947 }
983 948
984 /** Gets the value of "color" */ 949 /** Gets the value of "color" */
985 String get color => 950 String get color =>
986 getPropertyValue('color'); 951 getPropertyValue('color');
987 952
988 /** Sets the value of "color" */ 953 /** Sets the value of "color" */
989 void set color(String value) { 954 void set color(String value) {
990 setProperty('color', value, ''); 955 setProperty('color', value, '');
991 } 956 }
992 957
993 /** Gets the value of "color-correction" */ 958 /** Gets the value of "color-correction" */
994 String get colorCorrection => 959 String get colorCorrection =>
995 getPropertyValue('${_browserPrefix}color-correction'); 960 getPropertyValue('${Device.cssPrefix}color-correction');
996 961
997 /** Sets the value of "color-correction" */ 962 /** Sets the value of "color-correction" */
998 void set colorCorrection(String value) { 963 void set colorCorrection(String value) {
999 setProperty('${_browserPrefix}color-correction', value, ''); 964 setProperty('${Device.cssPrefix}color-correction', value, '');
1000 } 965 }
1001 966
1002 /** Gets the value of "column-axis" */ 967 /** Gets the value of "column-axis" */
1003 String get columnAxis => 968 String get columnAxis =>
1004 getPropertyValue('${_browserPrefix}column-axis'); 969 getPropertyValue('${Device.cssPrefix}column-axis');
1005 970
1006 /** Sets the value of "column-axis" */ 971 /** Sets the value of "column-axis" */
1007 void set columnAxis(String value) { 972 void set columnAxis(String value) {
1008 setProperty('${_browserPrefix}column-axis', value, ''); 973 setProperty('${Device.cssPrefix}column-axis', value, '');
1009 } 974 }
1010 975
1011 /** Gets the value of "column-break-after" */ 976 /** Gets the value of "column-break-after" */
1012 String get columnBreakAfter => 977 String get columnBreakAfter =>
1013 getPropertyValue('${_browserPrefix}column-break-after'); 978 getPropertyValue('${Device.cssPrefix}column-break-after');
1014 979
1015 /** Sets the value of "column-break-after" */ 980 /** Sets the value of "column-break-after" */
1016 void set columnBreakAfter(String value) { 981 void set columnBreakAfter(String value) {
1017 setProperty('${_browserPrefix}column-break-after', value, ''); 982 setProperty('${Device.cssPrefix}column-break-after', value, '');
1018 } 983 }
1019 984
1020 /** Gets the value of "column-break-before" */ 985 /** Gets the value of "column-break-before" */
1021 String get columnBreakBefore => 986 String get columnBreakBefore =>
1022 getPropertyValue('${_browserPrefix}column-break-before'); 987 getPropertyValue('${Device.cssPrefix}column-break-before');
1023 988
1024 /** Sets the value of "column-break-before" */ 989 /** Sets the value of "column-break-before" */
1025 void set columnBreakBefore(String value) { 990 void set columnBreakBefore(String value) {
1026 setProperty('${_browserPrefix}column-break-before', value, ''); 991 setProperty('${Device.cssPrefix}column-break-before', value, '');
1027 } 992 }
1028 993
1029 /** Gets the value of "column-break-inside" */ 994 /** Gets the value of "column-break-inside" */
1030 String get columnBreakInside => 995 String get columnBreakInside =>
1031 getPropertyValue('${_browserPrefix}column-break-inside'); 996 getPropertyValue('${Device.cssPrefix}column-break-inside');
1032 997
1033 /** Sets the value of "column-break-inside" */ 998 /** Sets the value of "column-break-inside" */
1034 void set columnBreakInside(String value) { 999 void set columnBreakInside(String value) {
1035 setProperty('${_browserPrefix}column-break-inside', value, ''); 1000 setProperty('${Device.cssPrefix}column-break-inside', value, '');
1036 } 1001 }
1037 1002
1038 /** Gets the value of "column-count" */ 1003 /** Gets the value of "column-count" */
1039 String get columnCount => 1004 String get columnCount =>
1040 getPropertyValue('${_browserPrefix}column-count'); 1005 getPropertyValue('${Device.cssPrefix}column-count');
1041 1006
1042 /** Sets the value of "column-count" */ 1007 /** Sets the value of "column-count" */
1043 void set columnCount(String value) { 1008 void set columnCount(String value) {
1044 setProperty('${_browserPrefix}column-count', value, ''); 1009 setProperty('${Device.cssPrefix}column-count', value, '');
1045 } 1010 }
1046 1011
1047 /** Gets the value of "column-gap" */ 1012 /** Gets the value of "column-gap" */
1048 String get columnGap => 1013 String get columnGap =>
1049 getPropertyValue('${_browserPrefix}column-gap'); 1014 getPropertyValue('${Device.cssPrefix}column-gap');
1050 1015
1051 /** Sets the value of "column-gap" */ 1016 /** Sets the value of "column-gap" */
1052 void set columnGap(String value) { 1017 void set columnGap(String value) {
1053 setProperty('${_browserPrefix}column-gap', value, ''); 1018 setProperty('${Device.cssPrefix}column-gap', value, '');
1054 } 1019 }
1055 1020
1056 /** Gets the value of "column-progression" */ 1021 /** Gets the value of "column-progression" */
1057 String get columnProgression => 1022 String get columnProgression =>
1058 getPropertyValue('${_browserPrefix}column-progression'); 1023 getPropertyValue('${Device.cssPrefix}column-progression');
1059 1024
1060 /** Sets the value of "column-progression" */ 1025 /** Sets the value of "column-progression" */
1061 void set columnProgression(String value) { 1026 void set columnProgression(String value) {
1062 setProperty('${_browserPrefix}column-progression', value, ''); 1027 setProperty('${Device.cssPrefix}column-progression', value, '');
1063 } 1028 }
1064 1029
1065 /** Gets the value of "column-rule" */ 1030 /** Gets the value of "column-rule" */
1066 String get columnRule => 1031 String get columnRule =>
1067 getPropertyValue('${_browserPrefix}column-rule'); 1032 getPropertyValue('${Device.cssPrefix}column-rule');
1068 1033
1069 /** Sets the value of "column-rule" */ 1034 /** Sets the value of "column-rule" */
1070 void set columnRule(String value) { 1035 void set columnRule(String value) {
1071 setProperty('${_browserPrefix}column-rule', value, ''); 1036 setProperty('${Device.cssPrefix}column-rule', value, '');
1072 } 1037 }
1073 1038
1074 /** Gets the value of "column-rule-color" */ 1039 /** Gets the value of "column-rule-color" */
1075 String get columnRuleColor => 1040 String get columnRuleColor =>
1076 getPropertyValue('${_browserPrefix}column-rule-color'); 1041 getPropertyValue('${Device.cssPrefix}column-rule-color');
1077 1042
1078 /** Sets the value of "column-rule-color" */ 1043 /** Sets the value of "column-rule-color" */
1079 void set columnRuleColor(String value) { 1044 void set columnRuleColor(String value) {
1080 setProperty('${_browserPrefix}column-rule-color', value, ''); 1045 setProperty('${Device.cssPrefix}column-rule-color', value, '');
1081 } 1046 }
1082 1047
1083 /** Gets the value of "column-rule-style" */ 1048 /** Gets the value of "column-rule-style" */
1084 String get columnRuleStyle => 1049 String get columnRuleStyle =>
1085 getPropertyValue('${_browserPrefix}column-rule-style'); 1050 getPropertyValue('${Device.cssPrefix}column-rule-style');
1086 1051
1087 /** Sets the value of "column-rule-style" */ 1052 /** Sets the value of "column-rule-style" */
1088 void set columnRuleStyle(String value) { 1053 void set columnRuleStyle(String value) {
1089 setProperty('${_browserPrefix}column-rule-style', value, ''); 1054 setProperty('${Device.cssPrefix}column-rule-style', value, '');
1090 } 1055 }
1091 1056
1092 /** Gets the value of "column-rule-width" */ 1057 /** Gets the value of "column-rule-width" */
1093 String get columnRuleWidth => 1058 String get columnRuleWidth =>
1094 getPropertyValue('${_browserPrefix}column-rule-width'); 1059 getPropertyValue('${Device.cssPrefix}column-rule-width');
1095 1060
1096 /** Sets the value of "column-rule-width" */ 1061 /** Sets the value of "column-rule-width" */
1097 void set columnRuleWidth(String value) { 1062 void set columnRuleWidth(String value) {
1098 setProperty('${_browserPrefix}column-rule-width', value, ''); 1063 setProperty('${Device.cssPrefix}column-rule-width', value, '');
1099 } 1064 }
1100 1065
1101 /** Gets the value of "column-span" */ 1066 /** Gets the value of "column-span" */
1102 String get columnSpan => 1067 String get columnSpan =>
1103 getPropertyValue('${_browserPrefix}column-span'); 1068 getPropertyValue('${Device.cssPrefix}column-span');
1104 1069
1105 /** Sets the value of "column-span" */ 1070 /** Sets the value of "column-span" */
1106 void set columnSpan(String value) { 1071 void set columnSpan(String value) {
1107 setProperty('${_browserPrefix}column-span', value, ''); 1072 setProperty('${Device.cssPrefix}column-span', value, '');
1108 } 1073 }
1109 1074
1110 /** Gets the value of "column-width" */ 1075 /** Gets the value of "column-width" */
1111 String get columnWidth => 1076 String get columnWidth =>
1112 getPropertyValue('${_browserPrefix}column-width'); 1077 getPropertyValue('${Device.cssPrefix}column-width');
1113 1078
1114 /** Sets the value of "column-width" */ 1079 /** Sets the value of "column-width" */
1115 void set columnWidth(String value) { 1080 void set columnWidth(String value) {
1116 setProperty('${_browserPrefix}column-width', value, ''); 1081 setProperty('${Device.cssPrefix}column-width', value, '');
1117 } 1082 }
1118 1083
1119 /** Gets the value of "columns" */ 1084 /** Gets the value of "columns" */
1120 String get columns => 1085 String get columns =>
1121 getPropertyValue('${_browserPrefix}columns'); 1086 getPropertyValue('${Device.cssPrefix}columns');
1122 1087
1123 /** Sets the value of "columns" */ 1088 /** Sets the value of "columns" */
1124 void set columns(String value) { 1089 void set columns(String value) {
1125 setProperty('${_browserPrefix}columns', value, ''); 1090 setProperty('${Device.cssPrefix}columns', value, '');
1126 } 1091 }
1127 1092
1128 /** Gets the value of "content" */ 1093 /** Gets the value of "content" */
1129 String get content => 1094 String get content =>
1130 getPropertyValue('content'); 1095 getPropertyValue('content');
1131 1096
1132 /** Sets the value of "content" */ 1097 /** Sets the value of "content" */
1133 void set content(String value) { 1098 void set content(String value) {
1134 setProperty('content', value, ''); 1099 setProperty('content', value, '');
1135 } 1100 }
(...skipping 20 matching lines...) Expand all
1156 String get cursor => 1121 String get cursor =>
1157 getPropertyValue('cursor'); 1122 getPropertyValue('cursor');
1158 1123
1159 /** Sets the value of "cursor" */ 1124 /** Sets the value of "cursor" */
1160 void set cursor(String value) { 1125 void set cursor(String value) {
1161 setProperty('cursor', value, ''); 1126 setProperty('cursor', value, '');
1162 } 1127 }
1163 1128
1164 /** Gets the value of "dashboard-region" */ 1129 /** Gets the value of "dashboard-region" */
1165 String get dashboardRegion => 1130 String get dashboardRegion =>
1166 getPropertyValue('${_browserPrefix}dashboard-region'); 1131 getPropertyValue('${Device.cssPrefix}dashboard-region');
1167 1132
1168 /** Sets the value of "dashboard-region" */ 1133 /** Sets the value of "dashboard-region" */
1169 void set dashboardRegion(String value) { 1134 void set dashboardRegion(String value) {
1170 setProperty('${_browserPrefix}dashboard-region', value, ''); 1135 setProperty('${Device.cssPrefix}dashboard-region', value, '');
1171 } 1136 }
1172 1137
1173 /** Gets the value of "direction" */ 1138 /** Gets the value of "direction" */
1174 String get direction => 1139 String get direction =>
1175 getPropertyValue('direction'); 1140 getPropertyValue('direction');
1176 1141
1177 /** Sets the value of "direction" */ 1142 /** Sets the value of "direction" */
1178 void set direction(String value) { 1143 void set direction(String value) {
1179 setProperty('direction', value, ''); 1144 setProperty('direction', value, '');
1180 } 1145 }
(...skipping 11 matching lines...) Expand all
1192 String get emptyCells => 1157 String get emptyCells =>
1193 getPropertyValue('empty-cells'); 1158 getPropertyValue('empty-cells');
1194 1159
1195 /** Sets the value of "empty-cells" */ 1160 /** Sets the value of "empty-cells" */
1196 void set emptyCells(String value) { 1161 void set emptyCells(String value) {
1197 setProperty('empty-cells', value, ''); 1162 setProperty('empty-cells', value, '');
1198 } 1163 }
1199 1164
1200 /** Gets the value of "filter" */ 1165 /** Gets the value of "filter" */
1201 String get filter => 1166 String get filter =>
1202 getPropertyValue('${_browserPrefix}filter'); 1167 getPropertyValue('${Device.cssPrefix}filter');
1203 1168
1204 /** Sets the value of "filter" */ 1169 /** Sets the value of "filter" */
1205 void set filter(String value) { 1170 void set filter(String value) {
1206 setProperty('${_browserPrefix}filter', value, ''); 1171 setProperty('${Device.cssPrefix}filter', value, '');
1207 } 1172 }
1208 1173
1209 /** Gets the value of "flex" */ 1174 /** Gets the value of "flex" */
1210 String get flex => 1175 String get flex =>
1211 getPropertyValue('${_browserPrefix}flex'); 1176 getPropertyValue('${Device.cssPrefix}flex');
1212 1177
1213 /** Sets the value of "flex" */ 1178 /** Sets the value of "flex" */
1214 void set flex(String value) { 1179 void set flex(String value) {
1215 setProperty('${_browserPrefix}flex', value, ''); 1180 setProperty('${Device.cssPrefix}flex', value, '');
1216 } 1181 }
1217 1182
1218 /** Gets the value of "flex-basis" */ 1183 /** Gets the value of "flex-basis" */
1219 String get flexBasis => 1184 String get flexBasis =>
1220 getPropertyValue('${_browserPrefix}flex-basis'); 1185 getPropertyValue('${Device.cssPrefix}flex-basis');
1221 1186
1222 /** Sets the value of "flex-basis" */ 1187 /** Sets the value of "flex-basis" */
1223 void set flexBasis(String value) { 1188 void set flexBasis(String value) {
1224 setProperty('${_browserPrefix}flex-basis', value, ''); 1189 setProperty('${Device.cssPrefix}flex-basis', value, '');
1225 } 1190 }
1226 1191
1227 /** Gets the value of "flex-direction" */ 1192 /** Gets the value of "flex-direction" */
1228 String get flexDirection => 1193 String get flexDirection =>
1229 getPropertyValue('${_browserPrefix}flex-direction'); 1194 getPropertyValue('${Device.cssPrefix}flex-direction');
1230 1195
1231 /** Sets the value of "flex-direction" */ 1196 /** Sets the value of "flex-direction" */
1232 void set flexDirection(String value) { 1197 void set flexDirection(String value) {
1233 setProperty('${_browserPrefix}flex-direction', value, ''); 1198 setProperty('${Device.cssPrefix}flex-direction', value, '');
1234 } 1199 }
1235 1200
1236 /** Gets the value of "flex-flow" */ 1201 /** Gets the value of "flex-flow" */
1237 String get flexFlow => 1202 String get flexFlow =>
1238 getPropertyValue('${_browserPrefix}flex-flow'); 1203 getPropertyValue('${Device.cssPrefix}flex-flow');
1239 1204
1240 /** Sets the value of "flex-flow" */ 1205 /** Sets the value of "flex-flow" */
1241 void set flexFlow(String value) { 1206 void set flexFlow(String value) {
1242 setProperty('${_browserPrefix}flex-flow', value, ''); 1207 setProperty('${Device.cssPrefix}flex-flow', value, '');
1243 } 1208 }
1244 1209
1245 /** Gets the value of "flex-grow" */ 1210 /** Gets the value of "flex-grow" */
1246 String get flexGrow => 1211 String get flexGrow =>
1247 getPropertyValue('${_browserPrefix}flex-grow'); 1212 getPropertyValue('${Device.cssPrefix}flex-grow');
1248 1213
1249 /** Sets the value of "flex-grow" */ 1214 /** Sets the value of "flex-grow" */
1250 void set flexGrow(String value) { 1215 void set flexGrow(String value) {
1251 setProperty('${_browserPrefix}flex-grow', value, ''); 1216 setProperty('${Device.cssPrefix}flex-grow', value, '');
1252 } 1217 }
1253 1218
1254 /** Gets the value of "flex-shrink" */ 1219 /** Gets the value of "flex-shrink" */
1255 String get flexShrink => 1220 String get flexShrink =>
1256 getPropertyValue('${_browserPrefix}flex-shrink'); 1221 getPropertyValue('${Device.cssPrefix}flex-shrink');
1257 1222
1258 /** Sets the value of "flex-shrink" */ 1223 /** Sets the value of "flex-shrink" */
1259 void set flexShrink(String value) { 1224 void set flexShrink(String value) {
1260 setProperty('${_browserPrefix}flex-shrink', value, ''); 1225 setProperty('${Device.cssPrefix}flex-shrink', value, '');
1261 } 1226 }
1262 1227
1263 /** Gets the value of "flex-wrap" */ 1228 /** Gets the value of "flex-wrap" */
1264 String get flexWrap => 1229 String get flexWrap =>
1265 getPropertyValue('${_browserPrefix}flex-wrap'); 1230 getPropertyValue('${Device.cssPrefix}flex-wrap');
1266 1231
1267 /** Sets the value of "flex-wrap" */ 1232 /** Sets the value of "flex-wrap" */
1268 void set flexWrap(String value) { 1233 void set flexWrap(String value) {
1269 setProperty('${_browserPrefix}flex-wrap', value, ''); 1234 setProperty('${Device.cssPrefix}flex-wrap', value, '');
1270 } 1235 }
1271 1236
1272 /** Gets the value of "float" */ 1237 /** Gets the value of "float" */
1273 String get float => 1238 String get float =>
1274 getPropertyValue('float'); 1239 getPropertyValue('float');
1275 1240
1276 /** Sets the value of "float" */ 1241 /** Sets the value of "float" */
1277 void set float(String value) { 1242 void set float(String value) {
1278 setProperty('float', value, ''); 1243 setProperty('float', value, '');
1279 } 1244 }
1280 1245
1281 /** Gets the value of "flow-from" */ 1246 /** Gets the value of "flow-from" */
1282 String get flowFrom => 1247 String get flowFrom =>
1283 getPropertyValue('${_browserPrefix}flow-from'); 1248 getPropertyValue('${Device.cssPrefix}flow-from');
1284 1249
1285 /** Sets the value of "flow-from" */ 1250 /** Sets the value of "flow-from" */
1286 void set flowFrom(String value) { 1251 void set flowFrom(String value) {
1287 setProperty('${_browserPrefix}flow-from', value, ''); 1252 setProperty('${Device.cssPrefix}flow-from', value, '');
1288 } 1253 }
1289 1254
1290 /** Gets the value of "flow-into" */ 1255 /** Gets the value of "flow-into" */
1291 String get flowInto => 1256 String get flowInto =>
1292 getPropertyValue('${_browserPrefix}flow-into'); 1257 getPropertyValue('${Device.cssPrefix}flow-into');
1293 1258
1294 /** Sets the value of "flow-into" */ 1259 /** Sets the value of "flow-into" */
1295 void set flowInto(String value) { 1260 void set flowInto(String value) {
1296 setProperty('${_browserPrefix}flow-into', value, ''); 1261 setProperty('${Device.cssPrefix}flow-into', value, '');
1297 } 1262 }
1298 1263
1299 /** Gets the value of "font" */ 1264 /** Gets the value of "font" */
1300 String get font => 1265 String get font =>
1301 getPropertyValue('font'); 1266 getPropertyValue('font');
1302 1267
1303 /** Sets the value of "font" */ 1268 /** Sets the value of "font" */
1304 void set font(String value) { 1269 void set font(String value) {
1305 setProperty('font', value, ''); 1270 setProperty('font', value, '');
1306 } 1271 }
1307 1272
1308 /** Gets the value of "font-family" */ 1273 /** Gets the value of "font-family" */
1309 String get fontFamily => 1274 String get fontFamily =>
1310 getPropertyValue('font-family'); 1275 getPropertyValue('font-family');
1311 1276
1312 /** Sets the value of "font-family" */ 1277 /** Sets the value of "font-family" */
1313 void set fontFamily(String value) { 1278 void set fontFamily(String value) {
1314 setProperty('font-family', value, ''); 1279 setProperty('font-family', value, '');
1315 } 1280 }
1316 1281
1317 /** Gets the value of "font-feature-settings" */ 1282 /** Gets the value of "font-feature-settings" */
1318 String get fontFeatureSettings => 1283 String get fontFeatureSettings =>
1319 getPropertyValue('${_browserPrefix}font-feature-settings'); 1284 getPropertyValue('${Device.cssPrefix}font-feature-settings');
1320 1285
1321 /** Sets the value of "font-feature-settings" */ 1286 /** Sets the value of "font-feature-settings" */
1322 void set fontFeatureSettings(String value) { 1287 void set fontFeatureSettings(String value) {
1323 setProperty('${_browserPrefix}font-feature-settings', value, ''); 1288 setProperty('${Device.cssPrefix}font-feature-settings', value, '');
1324 } 1289 }
1325 1290
1326 /** Gets the value of "font-kerning" */ 1291 /** Gets the value of "font-kerning" */
1327 String get fontKerning => 1292 String get fontKerning =>
1328 getPropertyValue('${_browserPrefix}font-kerning'); 1293 getPropertyValue('${Device.cssPrefix}font-kerning');
1329 1294
1330 /** Sets the value of "font-kerning" */ 1295 /** Sets the value of "font-kerning" */
1331 void set fontKerning(String value) { 1296 void set fontKerning(String value) {
1332 setProperty('${_browserPrefix}font-kerning', value, ''); 1297 setProperty('${Device.cssPrefix}font-kerning', value, '');
1333 } 1298 }
1334 1299
1335 /** Gets the value of "font-size" */ 1300 /** Gets the value of "font-size" */
1336 String get fontSize => 1301 String get fontSize =>
1337 getPropertyValue('font-size'); 1302 getPropertyValue('font-size');
1338 1303
1339 /** Sets the value of "font-size" */ 1304 /** Sets the value of "font-size" */
1340 void set fontSize(String value) { 1305 void set fontSize(String value) {
1341 setProperty('font-size', value, ''); 1306 setProperty('font-size', value, '');
1342 } 1307 }
1343 1308
1344 /** Gets the value of "font-size-delta" */ 1309 /** Gets the value of "font-size-delta" */
1345 String get fontSizeDelta => 1310 String get fontSizeDelta =>
1346 getPropertyValue('${_browserPrefix}font-size-delta'); 1311 getPropertyValue('${Device.cssPrefix}font-size-delta');
1347 1312
1348 /** Sets the value of "font-size-delta" */ 1313 /** Sets the value of "font-size-delta" */
1349 void set fontSizeDelta(String value) { 1314 void set fontSizeDelta(String value) {
1350 setProperty('${_browserPrefix}font-size-delta', value, ''); 1315 setProperty('${Device.cssPrefix}font-size-delta', value, '');
1351 } 1316 }
1352 1317
1353 /** Gets the value of "font-smoothing" */ 1318 /** Gets the value of "font-smoothing" */
1354 String get fontSmoothing => 1319 String get fontSmoothing =>
1355 getPropertyValue('${_browserPrefix}font-smoothing'); 1320 getPropertyValue('${Device.cssPrefix}font-smoothing');
1356 1321
1357 /** Sets the value of "font-smoothing" */ 1322 /** Sets the value of "font-smoothing" */
1358 void set fontSmoothing(String value) { 1323 void set fontSmoothing(String value) {
1359 setProperty('${_browserPrefix}font-smoothing', value, ''); 1324 setProperty('${Device.cssPrefix}font-smoothing', value, '');
1360 } 1325 }
1361 1326
1362 /** Gets the value of "font-stretch" */ 1327 /** Gets the value of "font-stretch" */
1363 String get fontStretch => 1328 String get fontStretch =>
1364 getPropertyValue('font-stretch'); 1329 getPropertyValue('font-stretch');
1365 1330
1366 /** Sets the value of "font-stretch" */ 1331 /** Sets the value of "font-stretch" */
1367 void set fontStretch(String value) { 1332 void set fontStretch(String value) {
1368 setProperty('font-stretch', value, ''); 1333 setProperty('font-stretch', value, '');
1369 } 1334 }
(...skipping 11 matching lines...) Expand all
1381 String get fontVariant => 1346 String get fontVariant =>
1382 getPropertyValue('font-variant'); 1347 getPropertyValue('font-variant');
1383 1348
1384 /** Sets the value of "font-variant" */ 1349 /** Sets the value of "font-variant" */
1385 void set fontVariant(String value) { 1350 void set fontVariant(String value) {
1386 setProperty('font-variant', value, ''); 1351 setProperty('font-variant', value, '');
1387 } 1352 }
1388 1353
1389 /** Gets the value of "font-variant-ligatures" */ 1354 /** Gets the value of "font-variant-ligatures" */
1390 String get fontVariantLigatures => 1355 String get fontVariantLigatures =>
1391 getPropertyValue('${_browserPrefix}font-variant-ligatures'); 1356 getPropertyValue('${Device.cssPrefix}font-variant-ligatures');
1392 1357
1393 /** Sets the value of "font-variant-ligatures" */ 1358 /** Sets the value of "font-variant-ligatures" */
1394 void set fontVariantLigatures(String value) { 1359 void set fontVariantLigatures(String value) {
1395 setProperty('${_browserPrefix}font-variant-ligatures', value, ''); 1360 setProperty('${Device.cssPrefix}font-variant-ligatures', value, '');
1396 } 1361 }
1397 1362
1398 /** Gets the value of "font-weight" */ 1363 /** Gets the value of "font-weight" */
1399 String get fontWeight => 1364 String get fontWeight =>
1400 getPropertyValue('font-weight'); 1365 getPropertyValue('font-weight');
1401 1366
1402 /** Sets the value of "font-weight" */ 1367 /** Sets the value of "font-weight" */
1403 void set fontWeight(String value) { 1368 void set fontWeight(String value) {
1404 setProperty('font-weight', value, ''); 1369 setProperty('font-weight', value, '');
1405 } 1370 }
1406 1371
1407 /** Gets the value of "grid-column" */ 1372 /** Gets the value of "grid-column" */
1408 String get gridColumn => 1373 String get gridColumn =>
1409 getPropertyValue('${_browserPrefix}grid-column'); 1374 getPropertyValue('${Device.cssPrefix}grid-column');
1410 1375
1411 /** Sets the value of "grid-column" */ 1376 /** Sets the value of "grid-column" */
1412 void set gridColumn(String value) { 1377 void set gridColumn(String value) {
1413 setProperty('${_browserPrefix}grid-column', value, ''); 1378 setProperty('${Device.cssPrefix}grid-column', value, '');
1414 } 1379 }
1415 1380
1416 /** Gets the value of "grid-columns" */ 1381 /** Gets the value of "grid-columns" */
1417 String get gridColumns => 1382 String get gridColumns =>
1418 getPropertyValue('${_browserPrefix}grid-columns'); 1383 getPropertyValue('${Device.cssPrefix}grid-columns');
1419 1384
1420 /** Sets the value of "grid-columns" */ 1385 /** Sets the value of "grid-columns" */
1421 void set gridColumns(String value) { 1386 void set gridColumns(String value) {
1422 setProperty('${_browserPrefix}grid-columns', value, ''); 1387 setProperty('${Device.cssPrefix}grid-columns', value, '');
1423 } 1388 }
1424 1389
1425 /** Gets the value of "grid-row" */ 1390 /** Gets the value of "grid-row" */
1426 String get gridRow => 1391 String get gridRow =>
1427 getPropertyValue('${_browserPrefix}grid-row'); 1392 getPropertyValue('${Device.cssPrefix}grid-row');
1428 1393
1429 /** Sets the value of "grid-row" */ 1394 /** Sets the value of "grid-row" */
1430 void set gridRow(String value) { 1395 void set gridRow(String value) {
1431 setProperty('${_browserPrefix}grid-row', value, ''); 1396 setProperty('${Device.cssPrefix}grid-row', value, '');
1432 } 1397 }
1433 1398
1434 /** Gets the value of "grid-rows" */ 1399 /** Gets the value of "grid-rows" */
1435 String get gridRows => 1400 String get gridRows =>
1436 getPropertyValue('${_browserPrefix}grid-rows'); 1401 getPropertyValue('${Device.cssPrefix}grid-rows');
1437 1402
1438 /** Sets the value of "grid-rows" */ 1403 /** Sets the value of "grid-rows" */
1439 void set gridRows(String value) { 1404 void set gridRows(String value) {
1440 setProperty('${_browserPrefix}grid-rows', value, ''); 1405 setProperty('${Device.cssPrefix}grid-rows', value, '');
1441 } 1406 }
1442 1407
1443 /** Gets the value of "height" */ 1408 /** Gets the value of "height" */
1444 String get height => 1409 String get height =>
1445 getPropertyValue('height'); 1410 getPropertyValue('height');
1446 1411
1447 /** Sets the value of "height" */ 1412 /** Sets the value of "height" */
1448 void set height(String value) { 1413 void set height(String value) {
1449 setProperty('height', value, ''); 1414 setProperty('height', value, '');
1450 } 1415 }
1451 1416
1452 /** Gets the value of "highlight" */ 1417 /** Gets the value of "highlight" */
1453 String get highlight => 1418 String get highlight =>
1454 getPropertyValue('${_browserPrefix}highlight'); 1419 getPropertyValue('${Device.cssPrefix}highlight');
1455 1420
1456 /** Sets the value of "highlight" */ 1421 /** Sets the value of "highlight" */
1457 void set highlight(String value) { 1422 void set highlight(String value) {
1458 setProperty('${_browserPrefix}highlight', value, ''); 1423 setProperty('${Device.cssPrefix}highlight', value, '');
1459 } 1424 }
1460 1425
1461 /** Gets the value of "hyphenate-character" */ 1426 /** Gets the value of "hyphenate-character" */
1462 String get hyphenateCharacter => 1427 String get hyphenateCharacter =>
1463 getPropertyValue('${_browserPrefix}hyphenate-character'); 1428 getPropertyValue('${Device.cssPrefix}hyphenate-character');
1464 1429
1465 /** Sets the value of "hyphenate-character" */ 1430 /** Sets the value of "hyphenate-character" */
1466 void set hyphenateCharacter(String value) { 1431 void set hyphenateCharacter(String value) {
1467 setProperty('${_browserPrefix}hyphenate-character', value, ''); 1432 setProperty('${Device.cssPrefix}hyphenate-character', value, '');
1468 } 1433 }
1469 1434
1470 /** Gets the value of "hyphenate-limit-after" */ 1435 /** Gets the value of "hyphenate-limit-after" */
1471 String get hyphenateLimitAfter => 1436 String get hyphenateLimitAfter =>
1472 getPropertyValue('${_browserPrefix}hyphenate-limit-after'); 1437 getPropertyValue('${Device.cssPrefix}hyphenate-limit-after');
1473 1438
1474 /** Sets the value of "hyphenate-limit-after" */ 1439 /** Sets the value of "hyphenate-limit-after" */
1475 void set hyphenateLimitAfter(String value) { 1440 void set hyphenateLimitAfter(String value) {
1476 setProperty('${_browserPrefix}hyphenate-limit-after', value, ''); 1441 setProperty('${Device.cssPrefix}hyphenate-limit-after', value, '');
1477 } 1442 }
1478 1443
1479 /** Gets the value of "hyphenate-limit-before" */ 1444 /** Gets the value of "hyphenate-limit-before" */
1480 String get hyphenateLimitBefore => 1445 String get hyphenateLimitBefore =>
1481 getPropertyValue('${_browserPrefix}hyphenate-limit-before'); 1446 getPropertyValue('${Device.cssPrefix}hyphenate-limit-before');
1482 1447
1483 /** Sets the value of "hyphenate-limit-before" */ 1448 /** Sets the value of "hyphenate-limit-before" */
1484 void set hyphenateLimitBefore(String value) { 1449 void set hyphenateLimitBefore(String value) {
1485 setProperty('${_browserPrefix}hyphenate-limit-before', value, ''); 1450 setProperty('${Device.cssPrefix}hyphenate-limit-before', value, '');
1486 } 1451 }
1487 1452
1488 /** Gets the value of "hyphenate-limit-lines" */ 1453 /** Gets the value of "hyphenate-limit-lines" */
1489 String get hyphenateLimitLines => 1454 String get hyphenateLimitLines =>
1490 getPropertyValue('${_browserPrefix}hyphenate-limit-lines'); 1455 getPropertyValue('${Device.cssPrefix}hyphenate-limit-lines');
1491 1456
1492 /** Sets the value of "hyphenate-limit-lines" */ 1457 /** Sets the value of "hyphenate-limit-lines" */
1493 void set hyphenateLimitLines(String value) { 1458 void set hyphenateLimitLines(String value) {
1494 setProperty('${_browserPrefix}hyphenate-limit-lines', value, ''); 1459 setProperty('${Device.cssPrefix}hyphenate-limit-lines', value, '');
1495 } 1460 }
1496 1461
1497 /** Gets the value of "hyphens" */ 1462 /** Gets the value of "hyphens" */
1498 String get hyphens => 1463 String get hyphens =>
1499 getPropertyValue('${_browserPrefix}hyphens'); 1464 getPropertyValue('${Device.cssPrefix}hyphens');
1500 1465
1501 /** Sets the value of "hyphens" */ 1466 /** Sets the value of "hyphens" */
1502 void set hyphens(String value) { 1467 void set hyphens(String value) {
1503 setProperty('${_browserPrefix}hyphens', value, ''); 1468 setProperty('${Device.cssPrefix}hyphens', value, '');
1504 } 1469 }
1505 1470
1506 /** Gets the value of "image-orientation" */ 1471 /** Gets the value of "image-orientation" */
1507 String get imageOrientation => 1472 String get imageOrientation =>
1508 getPropertyValue('image-orientation'); 1473 getPropertyValue('image-orientation');
1509 1474
1510 /** Sets the value of "image-orientation" */ 1475 /** Sets the value of "image-orientation" */
1511 void set imageOrientation(String value) { 1476 void set imageOrientation(String value) {
1512 setProperty('image-orientation', value, ''); 1477 setProperty('image-orientation', value, '');
1513 } 1478 }
(...skipping 11 matching lines...) Expand all
1525 String get imageResolution => 1490 String get imageResolution =>
1526 getPropertyValue('image-resolution'); 1491 getPropertyValue('image-resolution');
1527 1492
1528 /** Sets the value of "image-resolution" */ 1493 /** Sets the value of "image-resolution" */
1529 void set imageResolution(String value) { 1494 void set imageResolution(String value) {
1530 setProperty('image-resolution', value, ''); 1495 setProperty('image-resolution', value, '');
1531 } 1496 }
1532 1497
1533 /** Gets the value of "justify-content" */ 1498 /** Gets the value of "justify-content" */
1534 String get justifyContent => 1499 String get justifyContent =>
1535 getPropertyValue('${_browserPrefix}justify-content'); 1500 getPropertyValue('${Device.cssPrefix}justify-content');
1536 1501
1537 /** Sets the value of "justify-content" */ 1502 /** Sets the value of "justify-content" */
1538 void set justifyContent(String value) { 1503 void set justifyContent(String value) {
1539 setProperty('${_browserPrefix}justify-content', value, ''); 1504 setProperty('${Device.cssPrefix}justify-content', value, '');
1540 } 1505 }
1541 1506
1542 /** Gets the value of "left" */ 1507 /** Gets the value of "left" */
1543 String get left => 1508 String get left =>
1544 getPropertyValue('left'); 1509 getPropertyValue('left');
1545 1510
1546 /** Sets the value of "left" */ 1511 /** Sets the value of "left" */
1547 void set left(String value) { 1512 void set left(String value) {
1548 setProperty('left', value, ''); 1513 setProperty('left', value, '');
1549 } 1514 }
1550 1515
1551 /** Gets the value of "letter-spacing" */ 1516 /** Gets the value of "letter-spacing" */
1552 String get letterSpacing => 1517 String get letterSpacing =>
1553 getPropertyValue('letter-spacing'); 1518 getPropertyValue('letter-spacing');
1554 1519
1555 /** Sets the value of "letter-spacing" */ 1520 /** Sets the value of "letter-spacing" */
1556 void set letterSpacing(String value) { 1521 void set letterSpacing(String value) {
1557 setProperty('letter-spacing', value, ''); 1522 setProperty('letter-spacing', value, '');
1558 } 1523 }
1559 1524
1560 /** Gets the value of "line-align" */ 1525 /** Gets the value of "line-align" */
1561 String get lineAlign => 1526 String get lineAlign =>
1562 getPropertyValue('${_browserPrefix}line-align'); 1527 getPropertyValue('${Device.cssPrefix}line-align');
1563 1528
1564 /** Sets the value of "line-align" */ 1529 /** Sets the value of "line-align" */
1565 void set lineAlign(String value) { 1530 void set lineAlign(String value) {
1566 setProperty('${_browserPrefix}line-align', value, ''); 1531 setProperty('${Device.cssPrefix}line-align', value, '');
1567 } 1532 }
1568 1533
1569 /** Gets the value of "line-box-contain" */ 1534 /** Gets the value of "line-box-contain" */
1570 String get lineBoxContain => 1535 String get lineBoxContain =>
1571 getPropertyValue('${_browserPrefix}line-box-contain'); 1536 getPropertyValue('${Device.cssPrefix}line-box-contain');
1572 1537
1573 /** Sets the value of "line-box-contain" */ 1538 /** Sets the value of "line-box-contain" */
1574 void set lineBoxContain(String value) { 1539 void set lineBoxContain(String value) {
1575 setProperty('${_browserPrefix}line-box-contain', value, ''); 1540 setProperty('${Device.cssPrefix}line-box-contain', value, '');
1576 } 1541 }
1577 1542
1578 /** Gets the value of "line-break" */ 1543 /** Gets the value of "line-break" */
1579 String get lineBreak => 1544 String get lineBreak =>
1580 getPropertyValue('${_browserPrefix}line-break'); 1545 getPropertyValue('${Device.cssPrefix}line-break');
1581 1546
1582 /** Sets the value of "line-break" */ 1547 /** Sets the value of "line-break" */
1583 void set lineBreak(String value) { 1548 void set lineBreak(String value) {
1584 setProperty('${_browserPrefix}line-break', value, ''); 1549 setProperty('${Device.cssPrefix}line-break', value, '');
1585 } 1550 }
1586 1551
1587 /** Gets the value of "line-clamp" */ 1552 /** Gets the value of "line-clamp" */
1588 String get lineClamp => 1553 String get lineClamp =>
1589 getPropertyValue('${_browserPrefix}line-clamp'); 1554 getPropertyValue('${Device.cssPrefix}line-clamp');
1590 1555
1591 /** Sets the value of "line-clamp" */ 1556 /** Sets the value of "line-clamp" */
1592 void set lineClamp(String value) { 1557 void set lineClamp(String value) {
1593 setProperty('${_browserPrefix}line-clamp', value, ''); 1558 setProperty('${Device.cssPrefix}line-clamp', value, '');
1594 } 1559 }
1595 1560
1596 /** Gets the value of "line-grid" */ 1561 /** Gets the value of "line-grid" */
1597 String get lineGrid => 1562 String get lineGrid =>
1598 getPropertyValue('${_browserPrefix}line-grid'); 1563 getPropertyValue('${Device.cssPrefix}line-grid');
1599 1564
1600 /** Sets the value of "line-grid" */ 1565 /** Sets the value of "line-grid" */
1601 void set lineGrid(String value) { 1566 void set lineGrid(String value) {
1602 setProperty('${_browserPrefix}line-grid', value, ''); 1567 setProperty('${Device.cssPrefix}line-grid', value, '');
1603 } 1568 }
1604 1569
1605 /** Gets the value of "line-height" */ 1570 /** Gets the value of "line-height" */
1606 String get lineHeight => 1571 String get lineHeight =>
1607 getPropertyValue('line-height'); 1572 getPropertyValue('line-height');
1608 1573
1609 /** Sets the value of "line-height" */ 1574 /** Sets the value of "line-height" */
1610 void set lineHeight(String value) { 1575 void set lineHeight(String value) {
1611 setProperty('line-height', value, ''); 1576 setProperty('line-height', value, '');
1612 } 1577 }
1613 1578
1614 /** Gets the value of "line-snap" */ 1579 /** Gets the value of "line-snap" */
1615 String get lineSnap => 1580 String get lineSnap =>
1616 getPropertyValue('${_browserPrefix}line-snap'); 1581 getPropertyValue('${Device.cssPrefix}line-snap');
1617 1582
1618 /** Sets the value of "line-snap" */ 1583 /** Sets the value of "line-snap" */
1619 void set lineSnap(String value) { 1584 void set lineSnap(String value) {
1620 setProperty('${_browserPrefix}line-snap', value, ''); 1585 setProperty('${Device.cssPrefix}line-snap', value, '');
1621 } 1586 }
1622 1587
1623 /** Gets the value of "list-style" */ 1588 /** Gets the value of "list-style" */
1624 String get listStyle => 1589 String get listStyle =>
1625 getPropertyValue('list-style'); 1590 getPropertyValue('list-style');
1626 1591
1627 /** Sets the value of "list-style" */ 1592 /** Sets the value of "list-style" */
1628 void set listStyle(String value) { 1593 void set listStyle(String value) {
1629 setProperty('list-style', value, ''); 1594 setProperty('list-style', value, '');
1630 } 1595 }
(...skipping 20 matching lines...) Expand all
1651 String get listStyleType => 1616 String get listStyleType =>
1652 getPropertyValue('list-style-type'); 1617 getPropertyValue('list-style-type');
1653 1618
1654 /** Sets the value of "list-style-type" */ 1619 /** Sets the value of "list-style-type" */
1655 void set listStyleType(String value) { 1620 void set listStyleType(String value) {
1656 setProperty('list-style-type', value, ''); 1621 setProperty('list-style-type', value, '');
1657 } 1622 }
1658 1623
1659 /** Gets the value of "locale" */ 1624 /** Gets the value of "locale" */
1660 String get locale => 1625 String get locale =>
1661 getPropertyValue('${_browserPrefix}locale'); 1626 getPropertyValue('${Device.cssPrefix}locale');
1662 1627
1663 /** Sets the value of "locale" */ 1628 /** Sets the value of "locale" */
1664 void set locale(String value) { 1629 void set locale(String value) {
1665 setProperty('${_browserPrefix}locale', value, ''); 1630 setProperty('${Device.cssPrefix}locale', value, '');
1666 } 1631 }
1667 1632
1668 /** Gets the value of "logical-height" */ 1633 /** Gets the value of "logical-height" */
1669 String get logicalHeight => 1634 String get logicalHeight =>
1670 getPropertyValue('${_browserPrefix}logical-height'); 1635 getPropertyValue('${Device.cssPrefix}logical-height');
1671 1636
1672 /** Sets the value of "logical-height" */ 1637 /** Sets the value of "logical-height" */
1673 void set logicalHeight(String value) { 1638 void set logicalHeight(String value) {
1674 setProperty('${_browserPrefix}logical-height', value, ''); 1639 setProperty('${Device.cssPrefix}logical-height', value, '');
1675 } 1640 }
1676 1641
1677 /** Gets the value of "logical-width" */ 1642 /** Gets the value of "logical-width" */
1678 String get logicalWidth => 1643 String get logicalWidth =>
1679 getPropertyValue('${_browserPrefix}logical-width'); 1644 getPropertyValue('${Device.cssPrefix}logical-width');
1680 1645
1681 /** Sets the value of "logical-width" */ 1646 /** Sets the value of "logical-width" */
1682 void set logicalWidth(String value) { 1647 void set logicalWidth(String value) {
1683 setProperty('${_browserPrefix}logical-width', value, ''); 1648 setProperty('${Device.cssPrefix}logical-width', value, '');
1684 } 1649 }
1685 1650
1686 /** Gets the value of "margin" */ 1651 /** Gets the value of "margin" */
1687 String get margin => 1652 String get margin =>
1688 getPropertyValue('margin'); 1653 getPropertyValue('margin');
1689 1654
1690 /** Sets the value of "margin" */ 1655 /** Sets the value of "margin" */
1691 void set margin(String value) { 1656 void set margin(String value) {
1692 setProperty('margin', value, ''); 1657 setProperty('margin', value, '');
1693 } 1658 }
1694 1659
1695 /** Gets the value of "margin-after" */ 1660 /** Gets the value of "margin-after" */
1696 String get marginAfter => 1661 String get marginAfter =>
1697 getPropertyValue('${_browserPrefix}margin-after'); 1662 getPropertyValue('${Device.cssPrefix}margin-after');
1698 1663
1699 /** Sets the value of "margin-after" */ 1664 /** Sets the value of "margin-after" */
1700 void set marginAfter(String value) { 1665 void set marginAfter(String value) {
1701 setProperty('${_browserPrefix}margin-after', value, ''); 1666 setProperty('${Device.cssPrefix}margin-after', value, '');
1702 } 1667 }
1703 1668
1704 /** Gets the value of "margin-after-collapse" */ 1669 /** Gets the value of "margin-after-collapse" */
1705 String get marginAfterCollapse => 1670 String get marginAfterCollapse =>
1706 getPropertyValue('${_browserPrefix}margin-after-collapse'); 1671 getPropertyValue('${Device.cssPrefix}margin-after-collapse');
1707 1672
1708 /** Sets the value of "margin-after-collapse" */ 1673 /** Sets the value of "margin-after-collapse" */
1709 void set marginAfterCollapse(String value) { 1674 void set marginAfterCollapse(String value) {
1710 setProperty('${_browserPrefix}margin-after-collapse', value, ''); 1675 setProperty('${Device.cssPrefix}margin-after-collapse', value, '');
1711 } 1676 }
1712 1677
1713 /** Gets the value of "margin-before" */ 1678 /** Gets the value of "margin-before" */
1714 String get marginBefore => 1679 String get marginBefore =>
1715 getPropertyValue('${_browserPrefix}margin-before'); 1680 getPropertyValue('${Device.cssPrefix}margin-before');
1716 1681
1717 /** Sets the value of "margin-before" */ 1682 /** Sets the value of "margin-before" */
1718 void set marginBefore(String value) { 1683 void set marginBefore(String value) {
1719 setProperty('${_browserPrefix}margin-before', value, ''); 1684 setProperty('${Device.cssPrefix}margin-before', value, '');
1720 } 1685 }
1721 1686
1722 /** Gets the value of "margin-before-collapse" */ 1687 /** Gets the value of "margin-before-collapse" */
1723 String get marginBeforeCollapse => 1688 String get marginBeforeCollapse =>
1724 getPropertyValue('${_browserPrefix}margin-before-collapse'); 1689 getPropertyValue('${Device.cssPrefix}margin-before-collapse');
1725 1690
1726 /** Sets the value of "margin-before-collapse" */ 1691 /** Sets the value of "margin-before-collapse" */
1727 void set marginBeforeCollapse(String value) { 1692 void set marginBeforeCollapse(String value) {
1728 setProperty('${_browserPrefix}margin-before-collapse', value, ''); 1693 setProperty('${Device.cssPrefix}margin-before-collapse', value, '');
1729 } 1694 }
1730 1695
1731 /** Gets the value of "margin-bottom" */ 1696 /** Gets the value of "margin-bottom" */
1732 String get marginBottom => 1697 String get marginBottom =>
1733 getPropertyValue('margin-bottom'); 1698 getPropertyValue('margin-bottom');
1734 1699
1735 /** Sets the value of "margin-bottom" */ 1700 /** Sets the value of "margin-bottom" */
1736 void set marginBottom(String value) { 1701 void set marginBottom(String value) {
1737 setProperty('margin-bottom', value, ''); 1702 setProperty('margin-bottom', value, '');
1738 } 1703 }
1739 1704
1740 /** Gets the value of "margin-bottom-collapse" */ 1705 /** Gets the value of "margin-bottom-collapse" */
1741 String get marginBottomCollapse => 1706 String get marginBottomCollapse =>
1742 getPropertyValue('${_browserPrefix}margin-bottom-collapse'); 1707 getPropertyValue('${Device.cssPrefix}margin-bottom-collapse');
1743 1708
1744 /** Sets the value of "margin-bottom-collapse" */ 1709 /** Sets the value of "margin-bottom-collapse" */
1745 void set marginBottomCollapse(String value) { 1710 void set marginBottomCollapse(String value) {
1746 setProperty('${_browserPrefix}margin-bottom-collapse', value, ''); 1711 setProperty('${Device.cssPrefix}margin-bottom-collapse', value, '');
1747 } 1712 }
1748 1713
1749 /** Gets the value of "margin-collapse" */ 1714 /** Gets the value of "margin-collapse" */
1750 String get marginCollapse => 1715 String get marginCollapse =>
1751 getPropertyValue('${_browserPrefix}margin-collapse'); 1716 getPropertyValue('${Device.cssPrefix}margin-collapse');
1752 1717
1753 /** Sets the value of "margin-collapse" */ 1718 /** Sets the value of "margin-collapse" */
1754 void set marginCollapse(String value) { 1719 void set marginCollapse(String value) {
1755 setProperty('${_browserPrefix}margin-collapse', value, ''); 1720 setProperty('${Device.cssPrefix}margin-collapse', value, '');
1756 } 1721 }
1757 1722
1758 /** Gets the value of "margin-end" */ 1723 /** Gets the value of "margin-end" */
1759 String get marginEnd => 1724 String get marginEnd =>
1760 getPropertyValue('${_browserPrefix}margin-end'); 1725 getPropertyValue('${Device.cssPrefix}margin-end');
1761 1726
1762 /** Sets the value of "margin-end" */ 1727 /** Sets the value of "margin-end" */
1763 void set marginEnd(String value) { 1728 void set marginEnd(String value) {
1764 setProperty('${_browserPrefix}margin-end', value, ''); 1729 setProperty('${Device.cssPrefix}margin-end', value, '');
1765 } 1730 }
1766 1731
1767 /** Gets the value of "margin-left" */ 1732 /** Gets the value of "margin-left" */
1768 String get marginLeft => 1733 String get marginLeft =>
1769 getPropertyValue('margin-left'); 1734 getPropertyValue('margin-left');
1770 1735
1771 /** Sets the value of "margin-left" */ 1736 /** Sets the value of "margin-left" */
1772 void set marginLeft(String value) { 1737 void set marginLeft(String value) {
1773 setProperty('margin-left', value, ''); 1738 setProperty('margin-left', value, '');
1774 } 1739 }
1775 1740
1776 /** Gets the value of "margin-right" */ 1741 /** Gets the value of "margin-right" */
1777 String get marginRight => 1742 String get marginRight =>
1778 getPropertyValue('margin-right'); 1743 getPropertyValue('margin-right');
1779 1744
1780 /** Sets the value of "margin-right" */ 1745 /** Sets the value of "margin-right" */
1781 void set marginRight(String value) { 1746 void set marginRight(String value) {
1782 setProperty('margin-right', value, ''); 1747 setProperty('margin-right', value, '');
1783 } 1748 }
1784 1749
1785 /** Gets the value of "margin-start" */ 1750 /** Gets the value of "margin-start" */
1786 String get marginStart => 1751 String get marginStart =>
1787 getPropertyValue('${_browserPrefix}margin-start'); 1752 getPropertyValue('${Device.cssPrefix}margin-start');
1788 1753
1789 /** Sets the value of "margin-start" */ 1754 /** Sets the value of "margin-start" */
1790 void set marginStart(String value) { 1755 void set marginStart(String value) {
1791 setProperty('${_browserPrefix}margin-start', value, ''); 1756 setProperty('${Device.cssPrefix}margin-start', value, '');
1792 } 1757 }
1793 1758
1794 /** Gets the value of "margin-top" */ 1759 /** Gets the value of "margin-top" */
1795 String get marginTop => 1760 String get marginTop =>
1796 getPropertyValue('margin-top'); 1761 getPropertyValue('margin-top');
1797 1762
1798 /** Sets the value of "margin-top" */ 1763 /** Sets the value of "margin-top" */
1799 void set marginTop(String value) { 1764 void set marginTop(String value) {
1800 setProperty('margin-top', value, ''); 1765 setProperty('margin-top', value, '');
1801 } 1766 }
1802 1767
1803 /** Gets the value of "margin-top-collapse" */ 1768 /** Gets the value of "margin-top-collapse" */
1804 String get marginTopCollapse => 1769 String get marginTopCollapse =>
1805 getPropertyValue('${_browserPrefix}margin-top-collapse'); 1770 getPropertyValue('${Device.cssPrefix}margin-top-collapse');
1806 1771
1807 /** Sets the value of "margin-top-collapse" */ 1772 /** Sets the value of "margin-top-collapse" */
1808 void set marginTopCollapse(String value) { 1773 void set marginTopCollapse(String value) {
1809 setProperty('${_browserPrefix}margin-top-collapse', value, ''); 1774 setProperty('${Device.cssPrefix}margin-top-collapse', value, '');
1810 } 1775 }
1811 1776
1812 /** Gets the value of "marquee" */ 1777 /** Gets the value of "marquee" */
1813 String get marquee => 1778 String get marquee =>
1814 getPropertyValue('${_browserPrefix}marquee'); 1779 getPropertyValue('${Device.cssPrefix}marquee');
1815 1780
1816 /** Sets the value of "marquee" */ 1781 /** Sets the value of "marquee" */
1817 void set marquee(String value) { 1782 void set marquee(String value) {
1818 setProperty('${_browserPrefix}marquee', value, ''); 1783 setProperty('${Device.cssPrefix}marquee', value, '');
1819 } 1784 }
1820 1785
1821 /** Gets the value of "marquee-direction" */ 1786 /** Gets the value of "marquee-direction" */
1822 String get marqueeDirection => 1787 String get marqueeDirection =>
1823 getPropertyValue('${_browserPrefix}marquee-direction'); 1788 getPropertyValue('${Device.cssPrefix}marquee-direction');
1824 1789
1825 /** Sets the value of "marquee-direction" */ 1790 /** Sets the value of "marquee-direction" */
1826 void set marqueeDirection(String value) { 1791 void set marqueeDirection(String value) {
1827 setProperty('${_browserPrefix}marquee-direction', value, ''); 1792 setProperty('${Device.cssPrefix}marquee-direction', value, '');
1828 } 1793 }
1829 1794
1830 /** Gets the value of "marquee-increment" */ 1795 /** Gets the value of "marquee-increment" */
1831 String get marqueeIncrement => 1796 String get marqueeIncrement =>
1832 getPropertyValue('${_browserPrefix}marquee-increment'); 1797 getPropertyValue('${Device.cssPrefix}marquee-increment');
1833 1798
1834 /** Sets the value of "marquee-increment" */ 1799 /** Sets the value of "marquee-increment" */
1835 void set marqueeIncrement(String value) { 1800 void set marqueeIncrement(String value) {
1836 setProperty('${_browserPrefix}marquee-increment', value, ''); 1801 setProperty('${Device.cssPrefix}marquee-increment', value, '');
1837 } 1802 }
1838 1803
1839 /** Gets the value of "marquee-repetition" */ 1804 /** Gets the value of "marquee-repetition" */
1840 String get marqueeRepetition => 1805 String get marqueeRepetition =>
1841 getPropertyValue('${_browserPrefix}marquee-repetition'); 1806 getPropertyValue('${Device.cssPrefix}marquee-repetition');
1842 1807
1843 /** Sets the value of "marquee-repetition" */ 1808 /** Sets the value of "marquee-repetition" */
1844 void set marqueeRepetition(String value) { 1809 void set marqueeRepetition(String value) {
1845 setProperty('${_browserPrefix}marquee-repetition', value, ''); 1810 setProperty('${Device.cssPrefix}marquee-repetition', value, '');
1846 } 1811 }
1847 1812
1848 /** Gets the value of "marquee-speed" */ 1813 /** Gets the value of "marquee-speed" */
1849 String get marqueeSpeed => 1814 String get marqueeSpeed =>
1850 getPropertyValue('${_browserPrefix}marquee-speed'); 1815 getPropertyValue('${Device.cssPrefix}marquee-speed');
1851 1816
1852 /** Sets the value of "marquee-speed" */ 1817 /** Sets the value of "marquee-speed" */
1853 void set marqueeSpeed(String value) { 1818 void set marqueeSpeed(String value) {
1854 setProperty('${_browserPrefix}marquee-speed', value, ''); 1819 setProperty('${Device.cssPrefix}marquee-speed', value, '');
1855 } 1820 }
1856 1821
1857 /** Gets the value of "marquee-style" */ 1822 /** Gets the value of "marquee-style" */
1858 String get marqueeStyle => 1823 String get marqueeStyle =>
1859 getPropertyValue('${_browserPrefix}marquee-style'); 1824 getPropertyValue('${Device.cssPrefix}marquee-style');
1860 1825
1861 /** Sets the value of "marquee-style" */ 1826 /** Sets the value of "marquee-style" */
1862 void set marqueeStyle(String value) { 1827 void set marqueeStyle(String value) {
1863 setProperty('${_browserPrefix}marquee-style', value, ''); 1828 setProperty('${Device.cssPrefix}marquee-style', value, '');
1864 } 1829 }
1865 1830
1866 /** Gets the value of "mask" */ 1831 /** Gets the value of "mask" */
1867 String get mask => 1832 String get mask =>
1868 getPropertyValue('${_browserPrefix}mask'); 1833 getPropertyValue('${Device.cssPrefix}mask');
1869 1834
1870 /** Sets the value of "mask" */ 1835 /** Sets the value of "mask" */
1871 void set mask(String value) { 1836 void set mask(String value) {
1872 setProperty('${_browserPrefix}mask', value, ''); 1837 setProperty('${Device.cssPrefix}mask', value, '');
1873 } 1838 }
1874 1839
1875 /** Gets the value of "mask-attachment" */ 1840 /** Gets the value of "mask-attachment" */
1876 String get maskAttachment => 1841 String get maskAttachment =>
1877 getPropertyValue('${_browserPrefix}mask-attachment'); 1842 getPropertyValue('${Device.cssPrefix}mask-attachment');
1878 1843
1879 /** Sets the value of "mask-attachment" */ 1844 /** Sets the value of "mask-attachment" */
1880 void set maskAttachment(String value) { 1845 void set maskAttachment(String value) {
1881 setProperty('${_browserPrefix}mask-attachment', value, ''); 1846 setProperty('${Device.cssPrefix}mask-attachment', value, '');
1882 } 1847 }
1883 1848
1884 /** Gets the value of "mask-box-image" */ 1849 /** Gets the value of "mask-box-image" */
1885 String get maskBoxImage => 1850 String get maskBoxImage =>
1886 getPropertyValue('${_browserPrefix}mask-box-image'); 1851 getPropertyValue('${Device.cssPrefix}mask-box-image');
1887 1852
1888 /** Sets the value of "mask-box-image" */ 1853 /** Sets the value of "mask-box-image" */
1889 void set maskBoxImage(String value) { 1854 void set maskBoxImage(String value) {
1890 setProperty('${_browserPrefix}mask-box-image', value, ''); 1855 setProperty('${Device.cssPrefix}mask-box-image', value, '');
1891 } 1856 }
1892 1857
1893 /** Gets the value of "mask-box-image-outset" */ 1858 /** Gets the value of "mask-box-image-outset" */
1894 String get maskBoxImageOutset => 1859 String get maskBoxImageOutset =>
1895 getPropertyValue('${_browserPrefix}mask-box-image-outset'); 1860 getPropertyValue('${Device.cssPrefix}mask-box-image-outset');
1896 1861
1897 /** Sets the value of "mask-box-image-outset" */ 1862 /** Sets the value of "mask-box-image-outset" */
1898 void set maskBoxImageOutset(String value) { 1863 void set maskBoxImageOutset(String value) {
1899 setProperty('${_browserPrefix}mask-box-image-outset', value, ''); 1864 setProperty('${Device.cssPrefix}mask-box-image-outset', value, '');
1900 } 1865 }
1901 1866
1902 /** Gets the value of "mask-box-image-repeat" */ 1867 /** Gets the value of "mask-box-image-repeat" */
1903 String get maskBoxImageRepeat => 1868 String get maskBoxImageRepeat =>
1904 getPropertyValue('${_browserPrefix}mask-box-image-repeat'); 1869 getPropertyValue('${Device.cssPrefix}mask-box-image-repeat');
1905 1870
1906 /** Sets the value of "mask-box-image-repeat" */ 1871 /** Sets the value of "mask-box-image-repeat" */
1907 void set maskBoxImageRepeat(String value) { 1872 void set maskBoxImageRepeat(String value) {
1908 setProperty('${_browserPrefix}mask-box-image-repeat', value, ''); 1873 setProperty('${Device.cssPrefix}mask-box-image-repeat', value, '');
1909 } 1874 }
1910 1875
1911 /** Gets the value of "mask-box-image-slice" */ 1876 /** Gets the value of "mask-box-image-slice" */
1912 String get maskBoxImageSlice => 1877 String get maskBoxImageSlice =>
1913 getPropertyValue('${_browserPrefix}mask-box-image-slice'); 1878 getPropertyValue('${Device.cssPrefix}mask-box-image-slice');
1914 1879
1915 /** Sets the value of "mask-box-image-slice" */ 1880 /** Sets the value of "mask-box-image-slice" */
1916 void set maskBoxImageSlice(String value) { 1881 void set maskBoxImageSlice(String value) {
1917 setProperty('${_browserPrefix}mask-box-image-slice', value, ''); 1882 setProperty('${Device.cssPrefix}mask-box-image-slice', value, '');
1918 } 1883 }
1919 1884
1920 /** Gets the value of "mask-box-image-source" */ 1885 /** Gets the value of "mask-box-image-source" */
1921 String get maskBoxImageSource => 1886 String get maskBoxImageSource =>
1922 getPropertyValue('${_browserPrefix}mask-box-image-source'); 1887 getPropertyValue('${Device.cssPrefix}mask-box-image-source');
1923 1888
1924 /** Sets the value of "mask-box-image-source" */ 1889 /** Sets the value of "mask-box-image-source" */
1925 void set maskBoxImageSource(String value) { 1890 void set maskBoxImageSource(String value) {
1926 setProperty('${_browserPrefix}mask-box-image-source', value, ''); 1891 setProperty('${Device.cssPrefix}mask-box-image-source', value, '');
1927 } 1892 }
1928 1893
1929 /** Gets the value of "mask-box-image-width" */ 1894 /** Gets the value of "mask-box-image-width" */
1930 String get maskBoxImageWidth => 1895 String get maskBoxImageWidth =>
1931 getPropertyValue('${_browserPrefix}mask-box-image-width'); 1896 getPropertyValue('${Device.cssPrefix}mask-box-image-width');
1932 1897
1933 /** Sets the value of "mask-box-image-width" */ 1898 /** Sets the value of "mask-box-image-width" */
1934 void set maskBoxImageWidth(String value) { 1899 void set maskBoxImageWidth(String value) {
1935 setProperty('${_browserPrefix}mask-box-image-width', value, ''); 1900 setProperty('${Device.cssPrefix}mask-box-image-width', value, '');
1936 } 1901 }
1937 1902
1938 /** Gets the value of "mask-clip" */ 1903 /** Gets the value of "mask-clip" */
1939 String get maskClip => 1904 String get maskClip =>
1940 getPropertyValue('${_browserPrefix}mask-clip'); 1905 getPropertyValue('${Device.cssPrefix}mask-clip');
1941 1906
1942 /** Sets the value of "mask-clip" */ 1907 /** Sets the value of "mask-clip" */
1943 void set maskClip(String value) { 1908 void set maskClip(String value) {
1944 setProperty('${_browserPrefix}mask-clip', value, ''); 1909 setProperty('${Device.cssPrefix}mask-clip', value, '');
1945 } 1910 }
1946 1911
1947 /** Gets the value of "mask-composite" */ 1912 /** Gets the value of "mask-composite" */
1948 String get maskComposite => 1913 String get maskComposite =>
1949 getPropertyValue('${_browserPrefix}mask-composite'); 1914 getPropertyValue('${Device.cssPrefix}mask-composite');
1950 1915
1951 /** Sets the value of "mask-composite" */ 1916 /** Sets the value of "mask-composite" */
1952 void set maskComposite(String value) { 1917 void set maskComposite(String value) {
1953 setProperty('${_browserPrefix}mask-composite', value, ''); 1918 setProperty('${Device.cssPrefix}mask-composite', value, '');
1954 } 1919 }
1955 1920
1956 /** Gets the value of "mask-image" */ 1921 /** Gets the value of "mask-image" */
1957 String get maskImage => 1922 String get maskImage =>
1958 getPropertyValue('${_browserPrefix}mask-image'); 1923 getPropertyValue('${Device.cssPrefix}mask-image');
1959 1924
1960 /** Sets the value of "mask-image" */ 1925 /** Sets the value of "mask-image" */
1961 void set maskImage(String value) { 1926 void set maskImage(String value) {
1962 setProperty('${_browserPrefix}mask-image', value, ''); 1927 setProperty('${Device.cssPrefix}mask-image', value, '');
1963 } 1928 }
1964 1929
1965 /** Gets the value of "mask-origin" */ 1930 /** Gets the value of "mask-origin" */
1966 String get maskOrigin => 1931 String get maskOrigin =>
1967 getPropertyValue('${_browserPrefix}mask-origin'); 1932 getPropertyValue('${Device.cssPrefix}mask-origin');
1968 1933
1969 /** Sets the value of "mask-origin" */ 1934 /** Sets the value of "mask-origin" */
1970 void set maskOrigin(String value) { 1935 void set maskOrigin(String value) {
1971 setProperty('${_browserPrefix}mask-origin', value, ''); 1936 setProperty('${Device.cssPrefix}mask-origin', value, '');
1972 } 1937 }
1973 1938
1974 /** Gets the value of "mask-position" */ 1939 /** Gets the value of "mask-position" */
1975 String get maskPosition => 1940 String get maskPosition =>
1976 getPropertyValue('${_browserPrefix}mask-position'); 1941 getPropertyValue('${Device.cssPrefix}mask-position');
1977 1942
1978 /** Sets the value of "mask-position" */ 1943 /** Sets the value of "mask-position" */
1979 void set maskPosition(String value) { 1944 void set maskPosition(String value) {
1980 setProperty('${_browserPrefix}mask-position', value, ''); 1945 setProperty('${Device.cssPrefix}mask-position', value, '');
1981 } 1946 }
1982 1947
1983 /** Gets the value of "mask-position-x" */ 1948 /** Gets the value of "mask-position-x" */
1984 String get maskPositionX => 1949 String get maskPositionX =>
1985 getPropertyValue('${_browserPrefix}mask-position-x'); 1950 getPropertyValue('${Device.cssPrefix}mask-position-x');
1986 1951
1987 /** Sets the value of "mask-position-x" */ 1952 /** Sets the value of "mask-position-x" */
1988 void set maskPositionX(String value) { 1953 void set maskPositionX(String value) {
1989 setProperty('${_browserPrefix}mask-position-x', value, ''); 1954 setProperty('${Device.cssPrefix}mask-position-x', value, '');
1990 } 1955 }
1991 1956
1992 /** Gets the value of "mask-position-y" */ 1957 /** Gets the value of "mask-position-y" */
1993 String get maskPositionY => 1958 String get maskPositionY =>
1994 getPropertyValue('${_browserPrefix}mask-position-y'); 1959 getPropertyValue('${Device.cssPrefix}mask-position-y');
1995 1960
1996 /** Sets the value of "mask-position-y" */ 1961 /** Sets the value of "mask-position-y" */
1997 void set maskPositionY(String value) { 1962 void set maskPositionY(String value) {
1998 setProperty('${_browserPrefix}mask-position-y', value, ''); 1963 setProperty('${Device.cssPrefix}mask-position-y', value, '');
1999 } 1964 }
2000 1965
2001 /** Gets the value of "mask-repeat" */ 1966 /** Gets the value of "mask-repeat" */
2002 String get maskRepeat => 1967 String get maskRepeat =>
2003 getPropertyValue('${_browserPrefix}mask-repeat'); 1968 getPropertyValue('${Device.cssPrefix}mask-repeat');
2004 1969
2005 /** Sets the value of "mask-repeat" */ 1970 /** Sets the value of "mask-repeat" */
2006 void set maskRepeat(String value) { 1971 void set maskRepeat(String value) {
2007 setProperty('${_browserPrefix}mask-repeat', value, ''); 1972 setProperty('${Device.cssPrefix}mask-repeat', value, '');
2008 } 1973 }
2009 1974
2010 /** Gets the value of "mask-repeat-x" */ 1975 /** Gets the value of "mask-repeat-x" */
2011 String get maskRepeatX => 1976 String get maskRepeatX =>
2012 getPropertyValue('${_browserPrefix}mask-repeat-x'); 1977 getPropertyValue('${Device.cssPrefix}mask-repeat-x');
2013 1978
2014 /** Sets the value of "mask-repeat-x" */ 1979 /** Sets the value of "mask-repeat-x" */
2015 void set maskRepeatX(String value) { 1980 void set maskRepeatX(String value) {
2016 setProperty('${_browserPrefix}mask-repeat-x', value, ''); 1981 setProperty('${Device.cssPrefix}mask-repeat-x', value, '');
2017 } 1982 }
2018 1983
2019 /** Gets the value of "mask-repeat-y" */ 1984 /** Gets the value of "mask-repeat-y" */
2020 String get maskRepeatY => 1985 String get maskRepeatY =>
2021 getPropertyValue('${_browserPrefix}mask-repeat-y'); 1986 getPropertyValue('${Device.cssPrefix}mask-repeat-y');
2022 1987
2023 /** Sets the value of "mask-repeat-y" */ 1988 /** Sets the value of "mask-repeat-y" */
2024 void set maskRepeatY(String value) { 1989 void set maskRepeatY(String value) {
2025 setProperty('${_browserPrefix}mask-repeat-y', value, ''); 1990 setProperty('${Device.cssPrefix}mask-repeat-y', value, '');
2026 } 1991 }
2027 1992
2028 /** Gets the value of "mask-size" */ 1993 /** Gets the value of "mask-size" */
2029 String get maskSize => 1994 String get maskSize =>
2030 getPropertyValue('${_browserPrefix}mask-size'); 1995 getPropertyValue('${Device.cssPrefix}mask-size');
2031 1996
2032 /** Sets the value of "mask-size" */ 1997 /** Sets the value of "mask-size" */
2033 void set maskSize(String value) { 1998 void set maskSize(String value) {
2034 setProperty('${_browserPrefix}mask-size', value, ''); 1999 setProperty('${Device.cssPrefix}mask-size', value, '');
2035 } 2000 }
2036 2001
2037 /** Gets the value of "max-height" */ 2002 /** Gets the value of "max-height" */
2038 String get maxHeight => 2003 String get maxHeight =>
2039 getPropertyValue('max-height'); 2004 getPropertyValue('max-height');
2040 2005
2041 /** Sets the value of "max-height" */ 2006 /** Sets the value of "max-height" */
2042 void set maxHeight(String value) { 2007 void set maxHeight(String value) {
2043 setProperty('max-height', value, ''); 2008 setProperty('max-height', value, '');
2044 } 2009 }
2045 2010
2046 /** Gets the value of "max-logical-height" */ 2011 /** Gets the value of "max-logical-height" */
2047 String get maxLogicalHeight => 2012 String get maxLogicalHeight =>
2048 getPropertyValue('${_browserPrefix}max-logical-height'); 2013 getPropertyValue('${Device.cssPrefix}max-logical-height');
2049 2014
2050 /** Sets the value of "max-logical-height" */ 2015 /** Sets the value of "max-logical-height" */
2051 void set maxLogicalHeight(String value) { 2016 void set maxLogicalHeight(String value) {
2052 setProperty('${_browserPrefix}max-logical-height', value, ''); 2017 setProperty('${Device.cssPrefix}max-logical-height', value, '');
2053 } 2018 }
2054 2019
2055 /** Gets the value of "max-logical-width" */ 2020 /** Gets the value of "max-logical-width" */
2056 String get maxLogicalWidth => 2021 String get maxLogicalWidth =>
2057 getPropertyValue('${_browserPrefix}max-logical-width'); 2022 getPropertyValue('${Device.cssPrefix}max-logical-width');
2058 2023
2059 /** Sets the value of "max-logical-width" */ 2024 /** Sets the value of "max-logical-width" */
2060 void set maxLogicalWidth(String value) { 2025 void set maxLogicalWidth(String value) {
2061 setProperty('${_browserPrefix}max-logical-width', value, ''); 2026 setProperty('${Device.cssPrefix}max-logical-width', value, '');
2062 } 2027 }
2063 2028
2064 /** Gets the value of "max-width" */ 2029 /** Gets the value of "max-width" */
2065 String get maxWidth => 2030 String get maxWidth =>
2066 getPropertyValue('max-width'); 2031 getPropertyValue('max-width');
2067 2032
2068 /** Sets the value of "max-width" */ 2033 /** Sets the value of "max-width" */
2069 void set maxWidth(String value) { 2034 void set maxWidth(String value) {
2070 setProperty('max-width', value, ''); 2035 setProperty('max-width', value, '');
2071 } 2036 }
(...skipping 11 matching lines...) Expand all
2083 String get minHeight => 2048 String get minHeight =>
2084 getPropertyValue('min-height'); 2049 getPropertyValue('min-height');
2085 2050
2086 /** Sets the value of "min-height" */ 2051 /** Sets the value of "min-height" */
2087 void set minHeight(String value) { 2052 void set minHeight(String value) {
2088 setProperty('min-height', value, ''); 2053 setProperty('min-height', value, '');
2089 } 2054 }
2090 2055
2091 /** Gets the value of "min-logical-height" */ 2056 /** Gets the value of "min-logical-height" */
2092 String get minLogicalHeight => 2057 String get minLogicalHeight =>
2093 getPropertyValue('${_browserPrefix}min-logical-height'); 2058 getPropertyValue('${Device.cssPrefix}min-logical-height');
2094 2059
2095 /** Sets the value of "min-logical-height" */ 2060 /** Sets the value of "min-logical-height" */
2096 void set minLogicalHeight(String value) { 2061 void set minLogicalHeight(String value) {
2097 setProperty('${_browserPrefix}min-logical-height', value, ''); 2062 setProperty('${Device.cssPrefix}min-logical-height', value, '');
2098 } 2063 }
2099 2064
2100 /** Gets the value of "min-logical-width" */ 2065 /** Gets the value of "min-logical-width" */
2101 String get minLogicalWidth => 2066 String get minLogicalWidth =>
2102 getPropertyValue('${_browserPrefix}min-logical-width'); 2067 getPropertyValue('${Device.cssPrefix}min-logical-width');
2103 2068
2104 /** Sets the value of "min-logical-width" */ 2069 /** Sets the value of "min-logical-width" */
2105 void set minLogicalWidth(String value) { 2070 void set minLogicalWidth(String value) {
2106 setProperty('${_browserPrefix}min-logical-width', value, ''); 2071 setProperty('${Device.cssPrefix}min-logical-width', value, '');
2107 } 2072 }
2108 2073
2109 /** Gets the value of "min-width" */ 2074 /** Gets the value of "min-width" */
2110 String get minWidth => 2075 String get minWidth =>
2111 getPropertyValue('min-width'); 2076 getPropertyValue('min-width');
2112 2077
2113 /** Sets the value of "min-width" */ 2078 /** Sets the value of "min-width" */
2114 void set minWidth(String value) { 2079 void set minWidth(String value) {
2115 setProperty('min-width', value, ''); 2080 setProperty('min-width', value, '');
2116 } 2081 }
2117 2082
2118 /** Gets the value of "min-zoom" */ 2083 /** Gets the value of "min-zoom" */
2119 String get minZoom => 2084 String get minZoom =>
2120 getPropertyValue('min-zoom'); 2085 getPropertyValue('min-zoom');
2121 2086
2122 /** Sets the value of "min-zoom" */ 2087 /** Sets the value of "min-zoom" */
2123 void set minZoom(String value) { 2088 void set minZoom(String value) {
2124 setProperty('min-zoom', value, ''); 2089 setProperty('min-zoom', value, '');
2125 } 2090 }
2126 2091
2127 /** Gets the value of "nbsp-mode" */ 2092 /** Gets the value of "nbsp-mode" */
2128 String get nbspMode => 2093 String get nbspMode =>
2129 getPropertyValue('${_browserPrefix}nbsp-mode'); 2094 getPropertyValue('${Device.cssPrefix}nbsp-mode');
2130 2095
2131 /** Sets the value of "nbsp-mode" */ 2096 /** Sets the value of "nbsp-mode" */
2132 void set nbspMode(String value) { 2097 void set nbspMode(String value) {
2133 setProperty('${_browserPrefix}nbsp-mode', value, ''); 2098 setProperty('${Device.cssPrefix}nbsp-mode', value, '');
2134 } 2099 }
2135 2100
2136 /** Gets the value of "opacity" */ 2101 /** Gets the value of "opacity" */
2137 String get opacity => 2102 String get opacity =>
2138 getPropertyValue('opacity'); 2103 getPropertyValue('opacity');
2139 2104
2140 /** Sets the value of "opacity" */ 2105 /** Sets the value of "opacity" */
2141 void set opacity(String value) { 2106 void set opacity(String value) {
2142 setProperty('opacity', value, ''); 2107 setProperty('opacity', value, '');
2143 } 2108 }
2144 2109
2145 /** Gets the value of "order" */ 2110 /** Gets the value of "order" */
2146 String get order => 2111 String get order =>
2147 getPropertyValue('${_browserPrefix}order'); 2112 getPropertyValue('${Device.cssPrefix}order');
2148 2113
2149 /** Sets the value of "order" */ 2114 /** Sets the value of "order" */
2150 void set order(String value) { 2115 void set order(String value) {
2151 setProperty('${_browserPrefix}order', value, ''); 2116 setProperty('${Device.cssPrefix}order', value, '');
2152 } 2117 }
2153 2118
2154 /** Gets the value of "orientation" */ 2119 /** Gets the value of "orientation" */
2155 String get orientation => 2120 String get orientation =>
2156 getPropertyValue('orientation'); 2121 getPropertyValue('orientation');
2157 2122
2158 /** Sets the value of "orientation" */ 2123 /** Sets the value of "orientation" */
2159 void set orientation(String value) { 2124 void set orientation(String value) {
2160 setProperty('orientation', value, ''); 2125 setProperty('orientation', value, '');
2161 } 2126 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
2218 String get overflow => 2183 String get overflow =>
2219 getPropertyValue('overflow'); 2184 getPropertyValue('overflow');
2220 2185
2221 /** Sets the value of "overflow" */ 2186 /** Sets the value of "overflow" */
2222 void set overflow(String value) { 2187 void set overflow(String value) {
2223 setProperty('overflow', value, ''); 2188 setProperty('overflow', value, '');
2224 } 2189 }
2225 2190
2226 /** Gets the value of "overflow-scrolling" */ 2191 /** Gets the value of "overflow-scrolling" */
2227 String get overflowScrolling => 2192 String get overflowScrolling =>
2228 getPropertyValue('${_browserPrefix}overflow-scrolling'); 2193 getPropertyValue('${Device.cssPrefix}overflow-scrolling');
2229 2194
2230 /** Sets the value of "overflow-scrolling" */ 2195 /** Sets the value of "overflow-scrolling" */
2231 void set overflowScrolling(String value) { 2196 void set overflowScrolling(String value) {
2232 setProperty('${_browserPrefix}overflow-scrolling', value, ''); 2197 setProperty('${Device.cssPrefix}overflow-scrolling', value, '');
2233 } 2198 }
2234 2199
2235 /** Gets the value of "overflow-wrap" */ 2200 /** Gets the value of "overflow-wrap" */
2236 String get overflowWrap => 2201 String get overflowWrap =>
2237 getPropertyValue('overflow-wrap'); 2202 getPropertyValue('overflow-wrap');
2238 2203
2239 /** Sets the value of "overflow-wrap" */ 2204 /** Sets the value of "overflow-wrap" */
2240 void set overflowWrap(String value) { 2205 void set overflowWrap(String value) {
2241 setProperty('overflow-wrap', value, ''); 2206 setProperty('overflow-wrap', value, '');
2242 } 2207 }
(...skipping 20 matching lines...) Expand all
2263 String get padding => 2228 String get padding =>
2264 getPropertyValue('padding'); 2229 getPropertyValue('padding');
2265 2230
2266 /** Sets the value of "padding" */ 2231 /** Sets the value of "padding" */
2267 void set padding(String value) { 2232 void set padding(String value) {
2268 setProperty('padding', value, ''); 2233 setProperty('padding', value, '');
2269 } 2234 }
2270 2235
2271 /** Gets the value of "padding-after" */ 2236 /** Gets the value of "padding-after" */
2272 String get paddingAfter => 2237 String get paddingAfter =>
2273 getPropertyValue('${_browserPrefix}padding-after'); 2238 getPropertyValue('${Device.cssPrefix}padding-after');
2274 2239
2275 /** Sets the value of "padding-after" */ 2240 /** Sets the value of "padding-after" */
2276 void set paddingAfter(String value) { 2241 void set paddingAfter(String value) {
2277 setProperty('${_browserPrefix}padding-after', value, ''); 2242 setProperty('${Device.cssPrefix}padding-after', value, '');
2278 } 2243 }
2279 2244
2280 /** Gets the value of "padding-before" */ 2245 /** Gets the value of "padding-before" */
2281 String get paddingBefore => 2246 String get paddingBefore =>
2282 getPropertyValue('${_browserPrefix}padding-before'); 2247 getPropertyValue('${Device.cssPrefix}padding-before');
2283 2248
2284 /** Sets the value of "padding-before" */ 2249 /** Sets the value of "padding-before" */
2285 void set paddingBefore(String value) { 2250 void set paddingBefore(String value) {
2286 setProperty('${_browserPrefix}padding-before', value, ''); 2251 setProperty('${Device.cssPrefix}padding-before', value, '');
2287 } 2252 }
2288 2253
2289 /** Gets the value of "padding-bottom" */ 2254 /** Gets the value of "padding-bottom" */
2290 String get paddingBottom => 2255 String get paddingBottom =>
2291 getPropertyValue('padding-bottom'); 2256 getPropertyValue('padding-bottom');
2292 2257
2293 /** Sets the value of "padding-bottom" */ 2258 /** Sets the value of "padding-bottom" */
2294 void set paddingBottom(String value) { 2259 void set paddingBottom(String value) {
2295 setProperty('padding-bottom', value, ''); 2260 setProperty('padding-bottom', value, '');
2296 } 2261 }
2297 2262
2298 /** Gets the value of "padding-end" */ 2263 /** Gets the value of "padding-end" */
2299 String get paddingEnd => 2264 String get paddingEnd =>
2300 getPropertyValue('${_browserPrefix}padding-end'); 2265 getPropertyValue('${Device.cssPrefix}padding-end');
2301 2266
2302 /** Sets the value of "padding-end" */ 2267 /** Sets the value of "padding-end" */
2303 void set paddingEnd(String value) { 2268 void set paddingEnd(String value) {
2304 setProperty('${_browserPrefix}padding-end', value, ''); 2269 setProperty('${Device.cssPrefix}padding-end', value, '');
2305 } 2270 }
2306 2271
2307 /** Gets the value of "padding-left" */ 2272 /** Gets the value of "padding-left" */
2308 String get paddingLeft => 2273 String get paddingLeft =>
2309 getPropertyValue('padding-left'); 2274 getPropertyValue('padding-left');
2310 2275
2311 /** Sets the value of "padding-left" */ 2276 /** Sets the value of "padding-left" */
2312 void set paddingLeft(String value) { 2277 void set paddingLeft(String value) {
2313 setProperty('padding-left', value, ''); 2278 setProperty('padding-left', value, '');
2314 } 2279 }
2315 2280
2316 /** Gets the value of "padding-right" */ 2281 /** Gets the value of "padding-right" */
2317 String get paddingRight => 2282 String get paddingRight =>
2318 getPropertyValue('padding-right'); 2283 getPropertyValue('padding-right');
2319 2284
2320 /** Sets the value of "padding-right" */ 2285 /** Sets the value of "padding-right" */
2321 void set paddingRight(String value) { 2286 void set paddingRight(String value) {
2322 setProperty('padding-right', value, ''); 2287 setProperty('padding-right', value, '');
2323 } 2288 }
2324 2289
2325 /** Gets the value of "padding-start" */ 2290 /** Gets the value of "padding-start" */
2326 String get paddingStart => 2291 String get paddingStart =>
2327 getPropertyValue('${_browserPrefix}padding-start'); 2292 getPropertyValue('${Device.cssPrefix}padding-start');
2328 2293
2329 /** Sets the value of "padding-start" */ 2294 /** Sets the value of "padding-start" */
2330 void set paddingStart(String value) { 2295 void set paddingStart(String value) {
2331 setProperty('${_browserPrefix}padding-start', value, ''); 2296 setProperty('${Device.cssPrefix}padding-start', value, '');
2332 } 2297 }
2333 2298
2334 /** Gets the value of "padding-top" */ 2299 /** Gets the value of "padding-top" */
2335 String get paddingTop => 2300 String get paddingTop =>
2336 getPropertyValue('padding-top'); 2301 getPropertyValue('padding-top');
2337 2302
2338 /** Sets the value of "padding-top" */ 2303 /** Sets the value of "padding-top" */
2339 void set paddingTop(String value) { 2304 void set paddingTop(String value) {
2340 setProperty('padding-top', value, ''); 2305 setProperty('padding-top', value, '');
2341 } 2306 }
(...skipping 29 matching lines...) Expand all
2371 String get pageBreakInside => 2336 String get pageBreakInside =>
2372 getPropertyValue('page-break-inside'); 2337 getPropertyValue('page-break-inside');
2373 2338
2374 /** Sets the value of "page-break-inside" */ 2339 /** Sets the value of "page-break-inside" */
2375 void set pageBreakInside(String value) { 2340 void set pageBreakInside(String value) {
2376 setProperty('page-break-inside', value, ''); 2341 setProperty('page-break-inside', value, '');
2377 } 2342 }
2378 2343
2379 /** Gets the value of "perspective" */ 2344 /** Gets the value of "perspective" */
2380 String get perspective => 2345 String get perspective =>
2381 getPropertyValue('${_browserPrefix}perspective'); 2346 getPropertyValue('${Device.cssPrefix}perspective');
2382 2347
2383 /** Sets the value of "perspective" */ 2348 /** Sets the value of "perspective" */
2384 void set perspective(String value) { 2349 void set perspective(String value) {
2385 setProperty('${_browserPrefix}perspective', value, ''); 2350 setProperty('${Device.cssPrefix}perspective', value, '');
2386 } 2351 }
2387 2352
2388 /** Gets the value of "perspective-origin" */ 2353 /** Gets the value of "perspective-origin" */
2389 String get perspectiveOrigin => 2354 String get perspectiveOrigin =>
2390 getPropertyValue('${_browserPrefix}perspective-origin'); 2355 getPropertyValue('${Device.cssPrefix}perspective-origin');
2391 2356
2392 /** Sets the value of "perspective-origin" */ 2357 /** Sets the value of "perspective-origin" */
2393 void set perspectiveOrigin(String value) { 2358 void set perspectiveOrigin(String value) {
2394 setProperty('${_browserPrefix}perspective-origin', value, ''); 2359 setProperty('${Device.cssPrefix}perspective-origin', value, '');
2395 } 2360 }
2396 2361
2397 /** Gets the value of "perspective-origin-x" */ 2362 /** Gets the value of "perspective-origin-x" */
2398 String get perspectiveOriginX => 2363 String get perspectiveOriginX =>
2399 getPropertyValue('${_browserPrefix}perspective-origin-x'); 2364 getPropertyValue('${Device.cssPrefix}perspective-origin-x');
2400 2365
2401 /** Sets the value of "perspective-origin-x" */ 2366 /** Sets the value of "perspective-origin-x" */
2402 void set perspectiveOriginX(String value) { 2367 void set perspectiveOriginX(String value) {
2403 setProperty('${_browserPrefix}perspective-origin-x', value, ''); 2368 setProperty('${Device.cssPrefix}perspective-origin-x', value, '');
2404 } 2369 }
2405 2370
2406 /** Gets the value of "perspective-origin-y" */ 2371 /** Gets the value of "perspective-origin-y" */
2407 String get perspectiveOriginY => 2372 String get perspectiveOriginY =>
2408 getPropertyValue('${_browserPrefix}perspective-origin-y'); 2373 getPropertyValue('${Device.cssPrefix}perspective-origin-y');
2409 2374
2410 /** Sets the value of "perspective-origin-y" */ 2375 /** Sets the value of "perspective-origin-y" */
2411 void set perspectiveOriginY(String value) { 2376 void set perspectiveOriginY(String value) {
2412 setProperty('${_browserPrefix}perspective-origin-y', value, ''); 2377 setProperty('${Device.cssPrefix}perspective-origin-y', value, '');
2413 } 2378 }
2414 2379
2415 /** Gets the value of "pointer-events" */ 2380 /** Gets the value of "pointer-events" */
2416 String get pointerEvents => 2381 String get pointerEvents =>
2417 getPropertyValue('pointer-events'); 2382 getPropertyValue('pointer-events');
2418 2383
2419 /** Sets the value of "pointer-events" */ 2384 /** Sets the value of "pointer-events" */
2420 void set pointerEvents(String value) { 2385 void set pointerEvents(String value) {
2421 setProperty('pointer-events', value, ''); 2386 setProperty('pointer-events', value, '');
2422 } 2387 }
2423 2388
2424 /** Gets the value of "position" */ 2389 /** Gets the value of "position" */
2425 String get position => 2390 String get position =>
2426 getPropertyValue('position'); 2391 getPropertyValue('position');
2427 2392
2428 /** Sets the value of "position" */ 2393 /** Sets the value of "position" */
2429 void set position(String value) { 2394 void set position(String value) {
2430 setProperty('position', value, ''); 2395 setProperty('position', value, '');
2431 } 2396 }
2432 2397
2433 /** Gets the value of "print-color-adjust" */ 2398 /** Gets the value of "print-color-adjust" */
2434 String get printColorAdjust => 2399 String get printColorAdjust =>
2435 getPropertyValue('${_browserPrefix}print-color-adjust'); 2400 getPropertyValue('${Device.cssPrefix}print-color-adjust');
2436 2401
2437 /** Sets the value of "print-color-adjust" */ 2402 /** Sets the value of "print-color-adjust" */
2438 void set printColorAdjust(String value) { 2403 void set printColorAdjust(String value) {
2439 setProperty('${_browserPrefix}print-color-adjust', value, ''); 2404 setProperty('${Device.cssPrefix}print-color-adjust', value, '');
2440 } 2405 }
2441 2406
2442 /** Gets the value of "quotes" */ 2407 /** Gets the value of "quotes" */
2443 String get quotes => 2408 String get quotes =>
2444 getPropertyValue('quotes'); 2409 getPropertyValue('quotes');
2445 2410
2446 /** Sets the value of "quotes" */ 2411 /** Sets the value of "quotes" */
2447 void set quotes(String value) { 2412 void set quotes(String value) {
2448 setProperty('quotes', value, ''); 2413 setProperty('quotes', value, '');
2449 } 2414 }
2450 2415
2451 /** Gets the value of "region-break-after" */ 2416 /** Gets the value of "region-break-after" */
2452 String get regionBreakAfter => 2417 String get regionBreakAfter =>
2453 getPropertyValue('${_browserPrefix}region-break-after'); 2418 getPropertyValue('${Device.cssPrefix}region-break-after');
2454 2419
2455 /** Sets the value of "region-break-after" */ 2420 /** Sets the value of "region-break-after" */
2456 void set regionBreakAfter(String value) { 2421 void set regionBreakAfter(String value) {
2457 setProperty('${_browserPrefix}region-break-after', value, ''); 2422 setProperty('${Device.cssPrefix}region-break-after', value, '');
2458 } 2423 }
2459 2424
2460 /** Gets the value of "region-break-before" */ 2425 /** Gets the value of "region-break-before" */
2461 String get regionBreakBefore => 2426 String get regionBreakBefore =>
2462 getPropertyValue('${_browserPrefix}region-break-before'); 2427 getPropertyValue('${Device.cssPrefix}region-break-before');
2463 2428
2464 /** Sets the value of "region-break-before" */ 2429 /** Sets the value of "region-break-before" */
2465 void set regionBreakBefore(String value) { 2430 void set regionBreakBefore(String value) {
2466 setProperty('${_browserPrefix}region-break-before', value, ''); 2431 setProperty('${Device.cssPrefix}region-break-before', value, '');
2467 } 2432 }
2468 2433
2469 /** Gets the value of "region-break-inside" */ 2434 /** Gets the value of "region-break-inside" */
2470 String get regionBreakInside => 2435 String get regionBreakInside =>
2471 getPropertyValue('${_browserPrefix}region-break-inside'); 2436 getPropertyValue('${Device.cssPrefix}region-break-inside');
2472 2437
2473 /** Sets the value of "region-break-inside" */ 2438 /** Sets the value of "region-break-inside" */
2474 void set regionBreakInside(String value) { 2439 void set regionBreakInside(String value) {
2475 setProperty('${_browserPrefix}region-break-inside', value, ''); 2440 setProperty('${Device.cssPrefix}region-break-inside', value, '');
2476 } 2441 }
2477 2442
2478 /** Gets the value of "region-overflow" */ 2443 /** Gets the value of "region-overflow" */
2479 String get regionOverflow => 2444 String get regionOverflow =>
2480 getPropertyValue('${_browserPrefix}region-overflow'); 2445 getPropertyValue('${Device.cssPrefix}region-overflow');
2481 2446
2482 /** Sets the value of "region-overflow" */ 2447 /** Sets the value of "region-overflow" */
2483 void set regionOverflow(String value) { 2448 void set regionOverflow(String value) {
2484 setProperty('${_browserPrefix}region-overflow', value, ''); 2449 setProperty('${Device.cssPrefix}region-overflow', value, '');
2485 } 2450 }
2486 2451
2487 /** Gets the value of "resize" */ 2452 /** Gets the value of "resize" */
2488 String get resize => 2453 String get resize =>
2489 getPropertyValue('resize'); 2454 getPropertyValue('resize');
2490 2455
2491 /** Sets the value of "resize" */ 2456 /** Sets the value of "resize" */
2492 void set resize(String value) { 2457 void set resize(String value) {
2493 setProperty('resize', value, ''); 2458 setProperty('resize', value, '');
2494 } 2459 }
2495 2460
2496 /** Gets the value of "right" */ 2461 /** Gets the value of "right" */
2497 String get right => 2462 String get right =>
2498 getPropertyValue('right'); 2463 getPropertyValue('right');
2499 2464
2500 /** Sets the value of "right" */ 2465 /** Sets the value of "right" */
2501 void set right(String value) { 2466 void set right(String value) {
2502 setProperty('right', value, ''); 2467 setProperty('right', value, '');
2503 } 2468 }
2504 2469
2505 /** Gets the value of "rtl-ordering" */ 2470 /** Gets the value of "rtl-ordering" */
2506 String get rtlOrdering => 2471 String get rtlOrdering =>
2507 getPropertyValue('${_browserPrefix}rtl-ordering'); 2472 getPropertyValue('${Device.cssPrefix}rtl-ordering');
2508 2473
2509 /** Sets the value of "rtl-ordering" */ 2474 /** Sets the value of "rtl-ordering" */
2510 void set rtlOrdering(String value) { 2475 void set rtlOrdering(String value) {
2511 setProperty('${_browserPrefix}rtl-ordering', value, ''); 2476 setProperty('${Device.cssPrefix}rtl-ordering', value, '');
2512 } 2477 }
2513 2478
2514 /** Gets the value of "shape-inside" */ 2479 /** Gets the value of "shape-inside" */
2515 String get shapeInside => 2480 String get shapeInside =>
2516 getPropertyValue('${_browserPrefix}shape-inside'); 2481 getPropertyValue('${Device.cssPrefix}shape-inside');
2517 2482
2518 /** Sets the value of "shape-inside" */ 2483 /** Sets the value of "shape-inside" */
2519 void set shapeInside(String value) { 2484 void set shapeInside(String value) {
2520 setProperty('${_browserPrefix}shape-inside', value, ''); 2485 setProperty('${Device.cssPrefix}shape-inside', value, '');
2521 } 2486 }
2522 2487
2523 /** Gets the value of "shape-margin" */ 2488 /** Gets the value of "shape-margin" */
2524 String get shapeMargin => 2489 String get shapeMargin =>
2525 getPropertyValue('${_browserPrefix}shape-margin'); 2490 getPropertyValue('${Device.cssPrefix}shape-margin');
2526 2491
2527 /** Sets the value of "shape-margin" */ 2492 /** Sets the value of "shape-margin" */
2528 void set shapeMargin(String value) { 2493 void set shapeMargin(String value) {
2529 setProperty('${_browserPrefix}shape-margin', value, ''); 2494 setProperty('${Device.cssPrefix}shape-margin', value, '');
2530 } 2495 }
2531 2496
2532 /** Gets the value of "shape-outside" */ 2497 /** Gets the value of "shape-outside" */
2533 String get shapeOutside => 2498 String get shapeOutside =>
2534 getPropertyValue('${_browserPrefix}shape-outside'); 2499 getPropertyValue('${Device.cssPrefix}shape-outside');
2535 2500
2536 /** Sets the value of "shape-outside" */ 2501 /** Sets the value of "shape-outside" */
2537 void set shapeOutside(String value) { 2502 void set shapeOutside(String value) {
2538 setProperty('${_browserPrefix}shape-outside', value, ''); 2503 setProperty('${Device.cssPrefix}shape-outside', value, '');
2539 } 2504 }
2540 2505
2541 /** Gets the value of "shape-padding" */ 2506 /** Gets the value of "shape-padding" */
2542 String get shapePadding => 2507 String get shapePadding =>
2543 getPropertyValue('${_browserPrefix}shape-padding'); 2508 getPropertyValue('${Device.cssPrefix}shape-padding');
2544 2509
2545 /** Sets the value of "shape-padding" */ 2510 /** Sets the value of "shape-padding" */
2546 void set shapePadding(String value) { 2511 void set shapePadding(String value) {
2547 setProperty('${_browserPrefix}shape-padding', value, ''); 2512 setProperty('${Device.cssPrefix}shape-padding', value, '');
2548 } 2513 }
2549 2514
2550 /** Gets the value of "size" */ 2515 /** Gets the value of "size" */
2551 String get size => 2516 String get size =>
2552 getPropertyValue('size'); 2517 getPropertyValue('size');
2553 2518
2554 /** Sets the value of "size" */ 2519 /** Sets the value of "size" */
2555 void set size(String value) { 2520 void set size(String value) {
2556 setProperty('size', value, ''); 2521 setProperty('size', value, '');
2557 } 2522 }
(...skipping 29 matching lines...) Expand all
2587 String get tableLayout => 2552 String get tableLayout =>
2588 getPropertyValue('table-layout'); 2553 getPropertyValue('table-layout');
2589 2554
2590 /** Sets the value of "table-layout" */ 2555 /** Sets the value of "table-layout" */
2591 void set tableLayout(String value) { 2556 void set tableLayout(String value) {
2592 setProperty('table-layout', value, ''); 2557 setProperty('table-layout', value, '');
2593 } 2558 }
2594 2559
2595 /** Gets the value of "tap-highlight-color" */ 2560 /** Gets the value of "tap-highlight-color" */
2596 String get tapHighlightColor => 2561 String get tapHighlightColor =>
2597 getPropertyValue('${_browserPrefix}tap-highlight-color'); 2562 getPropertyValue('${Device.cssPrefix}tap-highlight-color');
2598 2563
2599 /** Sets the value of "tap-highlight-color" */ 2564 /** Sets the value of "tap-highlight-color" */
2600 void set tapHighlightColor(String value) { 2565 void set tapHighlightColor(String value) {
2601 setProperty('${_browserPrefix}tap-highlight-color', value, ''); 2566 setProperty('${Device.cssPrefix}tap-highlight-color', value, '');
2602 } 2567 }
2603 2568
2604 /** Gets the value of "text-align" */ 2569 /** Gets the value of "text-align" */
2605 String get textAlign => 2570 String get textAlign =>
2606 getPropertyValue('text-align'); 2571 getPropertyValue('text-align');
2607 2572
2608 /** Sets the value of "text-align" */ 2573 /** Sets the value of "text-align" */
2609 void set textAlign(String value) { 2574 void set textAlign(String value) {
2610 setProperty('text-align', value, ''); 2575 setProperty('text-align', value, '');
2611 } 2576 }
2612 2577
2613 /** Gets the value of "text-align-last" */ 2578 /** Gets the value of "text-align-last" */
2614 String get textAlignLast => 2579 String get textAlignLast =>
2615 getPropertyValue('${_browserPrefix}text-align-last'); 2580 getPropertyValue('${Device.cssPrefix}text-align-last');
2616 2581
2617 /** Sets the value of "text-align-last" */ 2582 /** Sets the value of "text-align-last" */
2618 void set textAlignLast(String value) { 2583 void set textAlignLast(String value) {
2619 setProperty('${_browserPrefix}text-align-last', value, ''); 2584 setProperty('${Device.cssPrefix}text-align-last', value, '');
2620 } 2585 }
2621 2586
2622 /** Gets the value of "text-combine" */ 2587 /** Gets the value of "text-combine" */
2623 String get textCombine => 2588 String get textCombine =>
2624 getPropertyValue('${_browserPrefix}text-combine'); 2589 getPropertyValue('${Device.cssPrefix}text-combine');
2625 2590
2626 /** Sets the value of "text-combine" */ 2591 /** Sets the value of "text-combine" */
2627 void set textCombine(String value) { 2592 void set textCombine(String value) {
2628 setProperty('${_browserPrefix}text-combine', value, ''); 2593 setProperty('${Device.cssPrefix}text-combine', value, '');
2629 } 2594 }
2630 2595
2631 /** Gets the value of "text-decoration" */ 2596 /** Gets the value of "text-decoration" */
2632 String get textDecoration => 2597 String get textDecoration =>
2633 getPropertyValue('text-decoration'); 2598 getPropertyValue('text-decoration');
2634 2599
2635 /** Sets the value of "text-decoration" */ 2600 /** Sets the value of "text-decoration" */
2636 void set textDecoration(String value) { 2601 void set textDecoration(String value) {
2637 setProperty('text-decoration', value, ''); 2602 setProperty('text-decoration', value, '');
2638 } 2603 }
2639 2604
2640 /** Gets the value of "text-decoration-line" */ 2605 /** Gets the value of "text-decoration-line" */
2641 String get textDecorationLine => 2606 String get textDecorationLine =>
2642 getPropertyValue('${_browserPrefix}text-decoration-line'); 2607 getPropertyValue('${Device.cssPrefix}text-decoration-line');
2643 2608
2644 /** Sets the value of "text-decoration-line" */ 2609 /** Sets the value of "text-decoration-line" */
2645 void set textDecorationLine(String value) { 2610 void set textDecorationLine(String value) {
2646 setProperty('${_browserPrefix}text-decoration-line', value, ''); 2611 setProperty('${Device.cssPrefix}text-decoration-line', value, '');
2647 } 2612 }
2648 2613
2649 /** Gets the value of "text-decoration-style" */ 2614 /** Gets the value of "text-decoration-style" */
2650 String get textDecorationStyle => 2615 String get textDecorationStyle =>
2651 getPropertyValue('${_browserPrefix}text-decoration-style'); 2616 getPropertyValue('${Device.cssPrefix}text-decoration-style');
2652 2617
2653 /** Sets the value of "text-decoration-style" */ 2618 /** Sets the value of "text-decoration-style" */
2654 void set textDecorationStyle(String value) { 2619 void set textDecorationStyle(String value) {
2655 setProperty('${_browserPrefix}text-decoration-style', value, ''); 2620 setProperty('${Device.cssPrefix}text-decoration-style', value, '');
2656 } 2621 }
2657 2622
2658 /** Gets the value of "text-decorations-in-effect" */ 2623 /** Gets the value of "text-decorations-in-effect" */
2659 String get textDecorationsInEffect => 2624 String get textDecorationsInEffect =>
2660 getPropertyValue('${_browserPrefix}text-decorations-in-effect'); 2625 getPropertyValue('${Device.cssPrefix}text-decorations-in-effect');
2661 2626
2662 /** Sets the value of "text-decorations-in-effect" */ 2627 /** Sets the value of "text-decorations-in-effect" */
2663 void set textDecorationsInEffect(String value) { 2628 void set textDecorationsInEffect(String value) {
2664 setProperty('${_browserPrefix}text-decorations-in-effect', value, ''); 2629 setProperty('${Device.cssPrefix}text-decorations-in-effect', value, '');
2665 } 2630 }
2666 2631
2667 /** Gets the value of "text-emphasis" */ 2632 /** Gets the value of "text-emphasis" */
2668 String get textEmphasis => 2633 String get textEmphasis =>
2669 getPropertyValue('${_browserPrefix}text-emphasis'); 2634 getPropertyValue('${Device.cssPrefix}text-emphasis');
2670 2635
2671 /** Sets the value of "text-emphasis" */ 2636 /** Sets the value of "text-emphasis" */
2672 void set textEmphasis(String value) { 2637 void set textEmphasis(String value) {
2673 setProperty('${_browserPrefix}text-emphasis', value, ''); 2638 setProperty('${Device.cssPrefix}text-emphasis', value, '');
2674 } 2639 }
2675 2640
2676 /** Gets the value of "text-emphasis-color" */ 2641 /** Gets the value of "text-emphasis-color" */
2677 String get textEmphasisColor => 2642 String get textEmphasisColor =>
2678 getPropertyValue('${_browserPrefix}text-emphasis-color'); 2643 getPropertyValue('${Device.cssPrefix}text-emphasis-color');
2679 2644
2680 /** Sets the value of "text-emphasis-color" */ 2645 /** Sets the value of "text-emphasis-color" */
2681 void set textEmphasisColor(String value) { 2646 void set textEmphasisColor(String value) {
2682 setProperty('${_browserPrefix}text-emphasis-color', value, ''); 2647 setProperty('${Device.cssPrefix}text-emphasis-color', value, '');
2683 } 2648 }
2684 2649
2685 /** Gets the value of "text-emphasis-position" */ 2650 /** Gets the value of "text-emphasis-position" */
2686 String get textEmphasisPosition => 2651 String get textEmphasisPosition =>
2687 getPropertyValue('${_browserPrefix}text-emphasis-position'); 2652 getPropertyValue('${Device.cssPrefix}text-emphasis-position');
2688 2653
2689 /** Sets the value of "text-emphasis-position" */ 2654 /** Sets the value of "text-emphasis-position" */
2690 void set textEmphasisPosition(String value) { 2655 void set textEmphasisPosition(String value) {
2691 setProperty('${_browserPrefix}text-emphasis-position', value, ''); 2656 setProperty('${Device.cssPrefix}text-emphasis-position', value, '');
2692 } 2657 }
2693 2658
2694 /** Gets the value of "text-emphasis-style" */ 2659 /** Gets the value of "text-emphasis-style" */
2695 String get textEmphasisStyle => 2660 String get textEmphasisStyle =>
2696 getPropertyValue('${_browserPrefix}text-emphasis-style'); 2661 getPropertyValue('${Device.cssPrefix}text-emphasis-style');
2697 2662
2698 /** Sets the value of "text-emphasis-style" */ 2663 /** Sets the value of "text-emphasis-style" */
2699 void set textEmphasisStyle(String value) { 2664 void set textEmphasisStyle(String value) {
2700 setProperty('${_browserPrefix}text-emphasis-style', value, ''); 2665 setProperty('${Device.cssPrefix}text-emphasis-style', value, '');
2701 } 2666 }
2702 2667
2703 /** Gets the value of "text-fill-color" */ 2668 /** Gets the value of "text-fill-color" */
2704 String get textFillColor => 2669 String get textFillColor =>
2705 getPropertyValue('${_browserPrefix}text-fill-color'); 2670 getPropertyValue('${Device.cssPrefix}text-fill-color');
2706 2671
2707 /** Sets the value of "text-fill-color" */ 2672 /** Sets the value of "text-fill-color" */
2708 void set textFillColor(String value) { 2673 void set textFillColor(String value) {
2709 setProperty('${_browserPrefix}text-fill-color', value, ''); 2674 setProperty('${Device.cssPrefix}text-fill-color', value, '');
2710 } 2675 }
2711 2676
2712 /** Gets the value of "text-indent" */ 2677 /** Gets the value of "text-indent" */
2713 String get textIndent => 2678 String get textIndent =>
2714 getPropertyValue('text-indent'); 2679 getPropertyValue('text-indent');
2715 2680
2716 /** Sets the value of "text-indent" */ 2681 /** Sets the value of "text-indent" */
2717 void set textIndent(String value) { 2682 void set textIndent(String value) {
2718 setProperty('text-indent', value, ''); 2683 setProperty('text-indent', value, '');
2719 } 2684 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2758 String get textLineThroughWidth => 2723 String get textLineThroughWidth =>
2759 getPropertyValue('text-line-through-width'); 2724 getPropertyValue('text-line-through-width');
2760 2725
2761 /** Sets the value of "text-line-through-width" */ 2726 /** Sets the value of "text-line-through-width" */
2762 void set textLineThroughWidth(String value) { 2727 void set textLineThroughWidth(String value) {
2763 setProperty('text-line-through-width', value, ''); 2728 setProperty('text-line-through-width', value, '');
2764 } 2729 }
2765 2730
2766 /** Gets the value of "text-orientation" */ 2731 /** Gets the value of "text-orientation" */
2767 String get textOrientation => 2732 String get textOrientation =>
2768 getPropertyValue('${_browserPrefix}text-orientation'); 2733 getPropertyValue('${Device.cssPrefix}text-orientation');
2769 2734
2770 /** Sets the value of "text-orientation" */ 2735 /** Sets the value of "text-orientation" */
2771 void set textOrientation(String value) { 2736 void set textOrientation(String value) {
2772 setProperty('${_browserPrefix}text-orientation', value, ''); 2737 setProperty('${Device.cssPrefix}text-orientation', value, '');
2773 } 2738 }
2774 2739
2775 /** Gets the value of "text-overflow" */ 2740 /** Gets the value of "text-overflow" */
2776 String get textOverflow => 2741 String get textOverflow =>
2777 getPropertyValue('text-overflow'); 2742 getPropertyValue('text-overflow');
2778 2743
2779 /** Sets the value of "text-overflow" */ 2744 /** Sets the value of "text-overflow" */
2780 void set textOverflow(String value) { 2745 void set textOverflow(String value) {
2781 setProperty('text-overflow', value, ''); 2746 setProperty('text-overflow', value, '');
2782 } 2747 }
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
2830 String get textRendering => 2795 String get textRendering =>
2831 getPropertyValue('text-rendering'); 2796 getPropertyValue('text-rendering');
2832 2797
2833 /** Sets the value of "text-rendering" */ 2798 /** Sets the value of "text-rendering" */
2834 void set textRendering(String value) { 2799 void set textRendering(String value) {
2835 setProperty('text-rendering', value, ''); 2800 setProperty('text-rendering', value, '');
2836 } 2801 }
2837 2802
2838 /** Gets the value of "text-security" */ 2803 /** Gets the value of "text-security" */
2839 String get textSecurity => 2804 String get textSecurity =>
2840 getPropertyValue('${_browserPrefix}text-security'); 2805 getPropertyValue('${Device.cssPrefix}text-security');
2841 2806
2842 /** Sets the value of "text-security" */ 2807 /** Sets the value of "text-security" */
2843 void set textSecurity(String value) { 2808 void set textSecurity(String value) {
2844 setProperty('${_browserPrefix}text-security', value, ''); 2809 setProperty('${Device.cssPrefix}text-security', value, '');
2845 } 2810 }
2846 2811
2847 /** Gets the value of "text-shadow" */ 2812 /** Gets the value of "text-shadow" */
2848 String get textShadow => 2813 String get textShadow =>
2849 getPropertyValue('text-shadow'); 2814 getPropertyValue('text-shadow');
2850 2815
2851 /** Sets the value of "text-shadow" */ 2816 /** Sets the value of "text-shadow" */
2852 void set textShadow(String value) { 2817 void set textShadow(String value) {
2853 setProperty('text-shadow', value, ''); 2818 setProperty('text-shadow', value, '');
2854 } 2819 }
2855 2820
2856 /** Gets the value of "text-size-adjust" */ 2821 /** Gets the value of "text-size-adjust" */
2857 String get textSizeAdjust => 2822 String get textSizeAdjust =>
2858 getPropertyValue('${_browserPrefix}text-size-adjust'); 2823 getPropertyValue('${Device.cssPrefix}text-size-adjust');
2859 2824
2860 /** Sets the value of "text-size-adjust" */ 2825 /** Sets the value of "text-size-adjust" */
2861 void set textSizeAdjust(String value) { 2826 void set textSizeAdjust(String value) {
2862 setProperty('${_browserPrefix}text-size-adjust', value, ''); 2827 setProperty('${Device.cssPrefix}text-size-adjust', value, '');
2863 } 2828 }
2864 2829
2865 /** Gets the value of "text-stroke" */ 2830 /** Gets the value of "text-stroke" */
2866 String get textStroke => 2831 String get textStroke =>
2867 getPropertyValue('${_browserPrefix}text-stroke'); 2832 getPropertyValue('${Device.cssPrefix}text-stroke');
2868 2833
2869 /** Sets the value of "text-stroke" */ 2834 /** Sets the value of "text-stroke" */
2870 void set textStroke(String value) { 2835 void set textStroke(String value) {
2871 setProperty('${_browserPrefix}text-stroke', value, ''); 2836 setProperty('${Device.cssPrefix}text-stroke', value, '');
2872 } 2837 }
2873 2838
2874 /** Gets the value of "text-stroke-color" */ 2839 /** Gets the value of "text-stroke-color" */
2875 String get textStrokeColor => 2840 String get textStrokeColor =>
2876 getPropertyValue('${_browserPrefix}text-stroke-color'); 2841 getPropertyValue('${Device.cssPrefix}text-stroke-color');
2877 2842
2878 /** Sets the value of "text-stroke-color" */ 2843 /** Sets the value of "text-stroke-color" */
2879 void set textStrokeColor(String value) { 2844 void set textStrokeColor(String value) {
2880 setProperty('${_browserPrefix}text-stroke-color', value, ''); 2845 setProperty('${Device.cssPrefix}text-stroke-color', value, '');
2881 } 2846 }
2882 2847
2883 /** Gets the value of "text-stroke-width" */ 2848 /** Gets the value of "text-stroke-width" */
2884 String get textStrokeWidth => 2849 String get textStrokeWidth =>
2885 getPropertyValue('${_browserPrefix}text-stroke-width'); 2850 getPropertyValue('${Device.cssPrefix}text-stroke-width');
2886 2851
2887 /** Sets the value of "text-stroke-width" */ 2852 /** Sets the value of "text-stroke-width" */
2888 void set textStrokeWidth(String value) { 2853 void set textStrokeWidth(String value) {
2889 setProperty('${_browserPrefix}text-stroke-width', value, ''); 2854 setProperty('${Device.cssPrefix}text-stroke-width', value, '');
2890 } 2855 }
2891 2856
2892 /** Gets the value of "text-transform" */ 2857 /** Gets the value of "text-transform" */
2893 String get textTransform => 2858 String get textTransform =>
2894 getPropertyValue('text-transform'); 2859 getPropertyValue('text-transform');
2895 2860
2896 /** Sets the value of "text-transform" */ 2861 /** Sets the value of "text-transform" */
2897 void set textTransform(String value) { 2862 void set textTransform(String value) {
2898 setProperty('text-transform', value, ''); 2863 setProperty('text-transform', value, '');
2899 } 2864 }
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
2947 String get top => 2912 String get top =>
2948 getPropertyValue('top'); 2913 getPropertyValue('top');
2949 2914
2950 /** Sets the value of "top" */ 2915 /** Sets the value of "top" */
2951 void set top(String value) { 2916 void set top(String value) {
2952 setProperty('top', value, ''); 2917 setProperty('top', value, '');
2953 } 2918 }
2954 2919
2955 /** Gets the value of "transform" */ 2920 /** Gets the value of "transform" */
2956 String get transform => 2921 String get transform =>
2957 getPropertyValue('${_browserPrefix}transform'); 2922 getPropertyValue('${Device.cssPrefix}transform');
2958 2923
2959 /** Sets the value of "transform" */ 2924 /** Sets the value of "transform" */
2960 void set transform(String value) { 2925 void set transform(String value) {
2961 setProperty('${_browserPrefix}transform', value, ''); 2926 setProperty('${Device.cssPrefix}transform', value, '');
2962 } 2927 }
2963 2928
2964 /** Gets the value of "transform-origin" */ 2929 /** Gets the value of "transform-origin" */
2965 String get transformOrigin => 2930 String get transformOrigin =>
2966 getPropertyValue('${_browserPrefix}transform-origin'); 2931 getPropertyValue('${Device.cssPrefix}transform-origin');
2967 2932
2968 /** Sets the value of "transform-origin" */ 2933 /** Sets the value of "transform-origin" */
2969 void set transformOrigin(String value) { 2934 void set transformOrigin(String value) {
2970 setProperty('${_browserPrefix}transform-origin', value, ''); 2935 setProperty('${Device.cssPrefix}transform-origin', value, '');
2971 } 2936 }
2972 2937
2973 /** Gets the value of "transform-origin-x" */ 2938 /** Gets the value of "transform-origin-x" */
2974 String get transformOriginX => 2939 String get transformOriginX =>
2975 getPropertyValue('${_browserPrefix}transform-origin-x'); 2940 getPropertyValue('${Device.cssPrefix}transform-origin-x');
2976 2941
2977 /** Sets the value of "transform-origin-x" */ 2942 /** Sets the value of "transform-origin-x" */
2978 void set transformOriginX(String value) { 2943 void set transformOriginX(String value) {
2979 setProperty('${_browserPrefix}transform-origin-x', value, ''); 2944 setProperty('${Device.cssPrefix}transform-origin-x', value, '');
2980 } 2945 }
2981 2946
2982 /** Gets the value of "transform-origin-y" */ 2947 /** Gets the value of "transform-origin-y" */
2983 String get transformOriginY => 2948 String get transformOriginY =>
2984 getPropertyValue('${_browserPrefix}transform-origin-y'); 2949 getPropertyValue('${Device.cssPrefix}transform-origin-y');
2985 2950
2986 /** Sets the value of "transform-origin-y" */ 2951 /** Sets the value of "transform-origin-y" */
2987 void set transformOriginY(String value) { 2952 void set transformOriginY(String value) {
2988 setProperty('${_browserPrefix}transform-origin-y', value, ''); 2953 setProperty('${Device.cssPrefix}transform-origin-y', value, '');
2989 } 2954 }
2990 2955
2991 /** Gets the value of "transform-origin-z" */ 2956 /** Gets the value of "transform-origin-z" */
2992 String get transformOriginZ => 2957 String get transformOriginZ =>
2993 getPropertyValue('${_browserPrefix}transform-origin-z'); 2958 getPropertyValue('${Device.cssPrefix}transform-origin-z');
2994 2959
2995 /** Sets the value of "transform-origin-z" */ 2960 /** Sets the value of "transform-origin-z" */
2996 void set transformOriginZ(String value) { 2961 void set transformOriginZ(String value) {
2997 setProperty('${_browserPrefix}transform-origin-z', value, ''); 2962 setProperty('${Device.cssPrefix}transform-origin-z', value, '');
2998 } 2963 }
2999 2964
3000 /** Gets the value of "transform-style" */ 2965 /** Gets the value of "transform-style" */
3001 String get transformStyle => 2966 String get transformStyle =>
3002 getPropertyValue('${_browserPrefix}transform-style'); 2967 getPropertyValue('${Device.cssPrefix}transform-style');
3003 2968
3004 /** Sets the value of "transform-style" */ 2969 /** Sets the value of "transform-style" */
3005 void set transformStyle(String value) { 2970 void set transformStyle(String value) {
3006 setProperty('${_browserPrefix}transform-style', value, ''); 2971 setProperty('${Device.cssPrefix}transform-style', value, '');
3007 } 2972 }
3008 2973
3009 /** Gets the value of "transition" */ 2974 /** Gets the value of "transition" */
3010 @SupportedBrowser(SupportedBrowser.CHROME) 2975 @SupportedBrowser(SupportedBrowser.CHROME)
3011 @SupportedBrowser(SupportedBrowser.FIREFOX) 2976 @SupportedBrowser(SupportedBrowser.FIREFOX)
3012 @SupportedBrowser(SupportedBrowser.IE, '10') 2977 @SupportedBrowser(SupportedBrowser.IE, '10')
3013 @SupportedBrowser(SupportedBrowser.SAFARI) 2978 @SupportedBrowser(SupportedBrowser.SAFARI)
3014 String get transition => 2979 String get transition =>
3015 getPropertyValue('${_browserPrefix}transition'); 2980 getPropertyValue('${Device.cssPrefix}transition');
3016 2981
3017 /** Sets the value of "transition" */ 2982 /** Sets the value of "transition" */
3018 @SupportedBrowser(SupportedBrowser.CHROME) 2983 @SupportedBrowser(SupportedBrowser.CHROME)
3019 @SupportedBrowser(SupportedBrowser.FIREFOX) 2984 @SupportedBrowser(SupportedBrowser.FIREFOX)
3020 @SupportedBrowser(SupportedBrowser.IE, '10') 2985 @SupportedBrowser(SupportedBrowser.IE, '10')
3021 @SupportedBrowser(SupportedBrowser.SAFARI) 2986 @SupportedBrowser(SupportedBrowser.SAFARI)
3022 void set transition(String value) { 2987 void set transition(String value) {
3023 setProperty('${_browserPrefix}transition', value, ''); 2988 setProperty('${Device.cssPrefix}transition', value, '');
3024 } 2989 }
3025 2990
3026 /** Gets the value of "transition-delay" */ 2991 /** Gets the value of "transition-delay" */
3027 String get transitionDelay => 2992 String get transitionDelay =>
3028 getPropertyValue('${_browserPrefix}transition-delay'); 2993 getPropertyValue('${Device.cssPrefix}transition-delay');
3029 2994
3030 /** Sets the value of "transition-delay" */ 2995 /** Sets the value of "transition-delay" */
3031 void set transitionDelay(String value) { 2996 void set transitionDelay(String value) {
3032 setProperty('${_browserPrefix}transition-delay', value, ''); 2997 setProperty('${Device.cssPrefix}transition-delay', value, '');
3033 } 2998 }
3034 2999
3035 /** Gets the value of "transition-duration" */ 3000 /** Gets the value of "transition-duration" */
3036 String get transitionDuration => 3001 String get transitionDuration =>
3037 getPropertyValue('${_browserPrefix}transition-duration'); 3002 getPropertyValue('${Device.cssPrefix}transition-duration');
3038 3003
3039 /** Sets the value of "transition-duration" */ 3004 /** Sets the value of "transition-duration" */
3040 void set transitionDuration(String value) { 3005 void set transitionDuration(String value) {
3041 setProperty('${_browserPrefix}transition-duration', value, ''); 3006 setProperty('${Device.cssPrefix}transition-duration', value, '');
3042 } 3007 }
3043 3008
3044 /** Gets the value of "transition-property" */ 3009 /** Gets the value of "transition-property" */
3045 String get transitionProperty => 3010 String get transitionProperty =>
3046 getPropertyValue('${_browserPrefix}transition-property'); 3011 getPropertyValue('${Device.cssPrefix}transition-property');
3047 3012
3048 /** Sets the value of "transition-property" */ 3013 /** Sets the value of "transition-property" */
3049 void set transitionProperty(String value) { 3014 void set transitionProperty(String value) {
3050 setProperty('${_browserPrefix}transition-property', value, ''); 3015 setProperty('${Device.cssPrefix}transition-property', value, '');
3051 } 3016 }
3052 3017
3053 /** Gets the value of "transition-timing-function" */ 3018 /** Gets the value of "transition-timing-function" */
3054 String get transitionTimingFunction => 3019 String get transitionTimingFunction =>
3055 getPropertyValue('${_browserPrefix}transition-timing-function'); 3020 getPropertyValue('${Device.cssPrefix}transition-timing-function');
3056 3021
3057 /** Sets the value of "transition-timing-function" */ 3022 /** Sets the value of "transition-timing-function" */
3058 void set transitionTimingFunction(String value) { 3023 void set transitionTimingFunction(String value) {
3059 setProperty('${_browserPrefix}transition-timing-function', value, ''); 3024 setProperty('${Device.cssPrefix}transition-timing-function', value, '');
3060 } 3025 }
3061 3026
3062 /** Gets the value of "unicode-bidi" */ 3027 /** Gets the value of "unicode-bidi" */
3063 String get unicodeBidi => 3028 String get unicodeBidi =>
3064 getPropertyValue('unicode-bidi'); 3029 getPropertyValue('unicode-bidi');
3065 3030
3066 /** Sets the value of "unicode-bidi" */ 3031 /** Sets the value of "unicode-bidi" */
3067 void set unicodeBidi(String value) { 3032 void set unicodeBidi(String value) {
3068 setProperty('unicode-bidi', value, ''); 3033 setProperty('unicode-bidi', value, '');
3069 } 3034 }
3070 3035
3071 /** Gets the value of "unicode-range" */ 3036 /** Gets the value of "unicode-range" */
3072 String get unicodeRange => 3037 String get unicodeRange =>
3073 getPropertyValue('unicode-range'); 3038 getPropertyValue('unicode-range');
3074 3039
3075 /** Sets the value of "unicode-range" */ 3040 /** Sets the value of "unicode-range" */
3076 void set unicodeRange(String value) { 3041 void set unicodeRange(String value) {
3077 setProperty('unicode-range', value, ''); 3042 setProperty('unicode-range', value, '');
3078 } 3043 }
3079 3044
3080 /** Gets the value of "user-drag" */ 3045 /** Gets the value of "user-drag" */
3081 String get userDrag => 3046 String get userDrag =>
3082 getPropertyValue('${_browserPrefix}user-drag'); 3047 getPropertyValue('${Device.cssPrefix}user-drag');
3083 3048
3084 /** Sets the value of "user-drag" */ 3049 /** Sets the value of "user-drag" */
3085 void set userDrag(String value) { 3050 void set userDrag(String value) {
3086 setProperty('${_browserPrefix}user-drag', value, ''); 3051 setProperty('${Device.cssPrefix}user-drag', value, '');
3087 } 3052 }
3088 3053
3089 /** Gets the value of "user-modify" */ 3054 /** Gets the value of "user-modify" */
3090 String get userModify => 3055 String get userModify =>
3091 getPropertyValue('${_browserPrefix}user-modify'); 3056 getPropertyValue('${Device.cssPrefix}user-modify');
3092 3057
3093 /** Sets the value of "user-modify" */ 3058 /** Sets the value of "user-modify" */
3094 void set userModify(String value) { 3059 void set userModify(String value) {
3095 setProperty('${_browserPrefix}user-modify', value, ''); 3060 setProperty('${Device.cssPrefix}user-modify', value, '');
3096 } 3061 }
3097 3062
3098 /** Gets the value of "user-select" */ 3063 /** Gets the value of "user-select" */
3099 String get userSelect => 3064 String get userSelect =>
3100 getPropertyValue('${_browserPrefix}user-select'); 3065 getPropertyValue('${Device.cssPrefix}user-select');
3101 3066
3102 /** Sets the value of "user-select" */ 3067 /** Sets the value of "user-select" */
3103 void set userSelect(String value) { 3068 void set userSelect(String value) {
3104 setProperty('${_browserPrefix}user-select', value, ''); 3069 setProperty('${Device.cssPrefix}user-select', value, '');
3105 } 3070 }
3106 3071
3107 /** Gets the value of "user-zoom" */ 3072 /** Gets the value of "user-zoom" */
3108 String get userZoom => 3073 String get userZoom =>
3109 getPropertyValue('user-zoom'); 3074 getPropertyValue('user-zoom');
3110 3075
3111 /** Sets the value of "user-zoom" */ 3076 /** Sets the value of "user-zoom" */
3112 void set userZoom(String value) { 3077 void set userZoom(String value) {
3113 setProperty('user-zoom', value, ''); 3078 setProperty('user-zoom', value, '');
3114 } 3079 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
3180 String get wordWrap => 3145 String get wordWrap =>
3181 getPropertyValue('word-wrap'); 3146 getPropertyValue('word-wrap');
3182 3147
3183 /** Sets the value of "word-wrap" */ 3148 /** Sets the value of "word-wrap" */
3184 void set wordWrap(String value) { 3149 void set wordWrap(String value) {
3185 setProperty('word-wrap', value, ''); 3150 setProperty('word-wrap', value, '');
3186 } 3151 }
3187 3152
3188 /** Gets the value of "wrap" */ 3153 /** Gets the value of "wrap" */
3189 String get wrap => 3154 String get wrap =>
3190 getPropertyValue('${_browserPrefix}wrap'); 3155 getPropertyValue('${Device.cssPrefix}wrap');
3191 3156
3192 /** Sets the value of "wrap" */ 3157 /** Sets the value of "wrap" */
3193 void set wrap(String value) { 3158 void set wrap(String value) {
3194 setProperty('${_browserPrefix}wrap', value, ''); 3159 setProperty('${Device.cssPrefix}wrap', value, '');
3195 } 3160 }
3196 3161
3197 /** Gets the value of "wrap-flow" */ 3162 /** Gets the value of "wrap-flow" */
3198 String get wrapFlow => 3163 String get wrapFlow =>
3199 getPropertyValue('${_browserPrefix}wrap-flow'); 3164 getPropertyValue('${Device.cssPrefix}wrap-flow');
3200 3165
3201 /** Sets the value of "wrap-flow" */ 3166 /** Sets the value of "wrap-flow" */
3202 void set wrapFlow(String value) { 3167 void set wrapFlow(String value) {
3203 setProperty('${_browserPrefix}wrap-flow', value, ''); 3168 setProperty('${Device.cssPrefix}wrap-flow', value, '');
3204 } 3169 }
3205 3170
3206 /** Gets the value of "wrap-through" */ 3171 /** Gets the value of "wrap-through" */
3207 String get wrapThrough => 3172 String get wrapThrough =>
3208 getPropertyValue('${_browserPrefix}wrap-through'); 3173 getPropertyValue('${Device.cssPrefix}wrap-through');
3209 3174
3210 /** Sets the value of "wrap-through" */ 3175 /** Sets the value of "wrap-through" */
3211 void set wrapThrough(String value) { 3176 void set wrapThrough(String value) {
3212 setProperty('${_browserPrefix}wrap-through', value, ''); 3177 setProperty('${Device.cssPrefix}wrap-through', value, '');
3213 } 3178 }
3214 3179
3215 /** Gets the value of "writing-mode" */ 3180 /** Gets the value of "writing-mode" */
3216 String get writingMode => 3181 String get writingMode =>
3217 getPropertyValue('${_browserPrefix}writing-mode'); 3182 getPropertyValue('${Device.cssPrefix}writing-mode');
3218 3183
3219 /** Sets the value of "writing-mode" */ 3184 /** Sets the value of "writing-mode" */
3220 void set writingMode(String value) { 3185 void set writingMode(String value) {
3221 setProperty('${_browserPrefix}writing-mode', value, ''); 3186 setProperty('${Device.cssPrefix}writing-mode', value, '');
3222 } 3187 }
3223 3188
3224 /** Gets the value of "z-index" */ 3189 /** Gets the value of "z-index" */
3225 String get zIndex => 3190 String get zIndex =>
3226 getPropertyValue('z-index'); 3191 getPropertyValue('z-index');
3227 3192
3228 /** Sets the value of "z-index" */ 3193 /** Sets the value of "z-index" */
3229 void set zIndex(String value) { 3194 void set zIndex(String value) {
3230 setProperty('z-index', value, ''); 3195 setProperty('z-index', value, '');
3231 } 3196 }
3232 3197
3233 /** Gets the value of "zoom" */ 3198 /** Gets the value of "zoom" */
3234 String get zoom => 3199 String get zoom =>
3235 getPropertyValue('zoom'); 3200 getPropertyValue('zoom');
3236 3201
3237 /** Sets the value of "zoom" */ 3202 /** Sets the value of "zoom" */
3238 void set zoom(String value) { 3203 void set zoom(String value) {
3239 setProperty('zoom', value, ''); 3204 setProperty('zoom', value, '');
3240 } 3205 }
3241 } 3206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698