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

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

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

Powered by Google App Engine
This is Rietveld 408576698