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

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

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

Powered by Google App Engine
This is Rietveld 408576698