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