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

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

Issue 1310363006: Patched in Dartium JsInterop (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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
OLDNEW
1 1
2 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 // WARNING: DO NOT EDIT THIS TEMPLATE FILE. 6 // WARNING: DO NOT EDIT THIS TEMPLATE FILE.
7 // The template file was generated by scripts/css_code_generator.py 7 // The template file was generated by scripts/css_code_generator.py
8 8
9 // Source of CSS properties: 9 // Source of CSS properties:
10 // CSSPropertyNames.in 10 // CSSPropertyNames.in
11 11
12 part of $LIBRARYNAME; 12 part of $LIBRARYNAME;
13 13
14 $if DART2JS
15 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with 14 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with
16 $(CLASSNAME)Base $IMPLEMENTS { 15 $(CLASSNAME)Base $IMPLEMENTS {
17 $else
18 $if JSINTEROP
19 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS) class $CLASSNAME extends
20 $(CLASSNAME)Base $IMPLEMENTS {
21 $else
22 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with
23 $(CLASSNAME)Base $IMPLEMENTS {
24 $endif
25 $endif
26 factory $CLASSNAME() => new CssStyleDeclaration.css(''); 16 factory $CLASSNAME() => new CssStyleDeclaration.css('');
27 17
28 factory $CLASSNAME.css(String css) { 18 factory $CLASSNAME.css(String css) {
29 final style = new Element.tag('div').style; 19 final style = new Element.tag('div').style;
30 style.cssText = css; 20 style.cssText = css;
31 return style; 21 return style;
32 } 22 }
33 23
34 String getPropertyValue(String propertyName) { 24 String getPropertyValue(String propertyName) {
35 var propValue = _getPropertyValueHelper(propertyName); 25 var propValue = _getPropertyValueHelper(propertyName);
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 */ 140 */
151 static bool get supportsTransitions => true; 141 static bool get supportsTransitions => true;
152 $endif 142 $endif
153 $!MEMBERS 143 $!MEMBERS
154 $if DART2JS 144 $if DART2JS
155 145
156 /** Gets the value of "background" */ 146 /** Gets the value of "background" */
157 String get background => this._background; 147 String get background => this._background;
158 148
159 /** Sets the value of "background" */ 149 /** Sets the value of "background" */
160 void set background(String value) { 150 set background(String value) {
161 _background = value == null ? '' : value; 151 _background = value == null ? '' : value;
162 } 152 }
163 @Returns('String') 153 @Returns('String')
164 @JSName('background') 154 @JSName('background')
165 String _background; 155 String _background;
166 156
167 /** Gets the value of "background-attachment" */ 157 /** Gets the value of "background-attachment" */
168 String get backgroundAttachment => this._backgroundAttachment; 158 String get backgroundAttachment => this._backgroundAttachment;
169 159
170 /** Sets the value of "background-attachment" */ 160 /** Sets the value of "background-attachment" */
171 void set backgroundAttachment(String value) { 161 set backgroundAttachment(String value) {
172 _backgroundAttachment = value == null ? '' : value; 162 _backgroundAttachment = value == null ? '' : value;
173 } 163 }
174 @Returns('String') 164 @Returns('String')
175 @JSName('backgroundAttachment') 165 @JSName('backgroundAttachment')
176 String _backgroundAttachment; 166 String _backgroundAttachment;
177 167
178 /** Gets the value of "background-color" */ 168 /** Gets the value of "background-color" */
179 String get backgroundColor => this._backgroundColor; 169 String get backgroundColor => this._backgroundColor;
180 170
181 /** Sets the value of "background-color" */ 171 /** Sets the value of "background-color" */
182 void set backgroundColor(String value) { 172 set backgroundColor(String value) {
183 _backgroundColor = value == null ? '' : value; 173 _backgroundColor = value == null ? '' : value;
184 } 174 }
185 @Returns('String') 175 @Returns('String')
186 @JSName('backgroundColor') 176 @JSName('backgroundColor')
187 String _backgroundColor; 177 String _backgroundColor;
188 178
189 /** Gets the value of "background-image" */ 179 /** Gets the value of "background-image" */
190 String get backgroundImage => this._backgroundImage; 180 String get backgroundImage => this._backgroundImage;
191 181
192 /** Sets the value of "background-image" */ 182 /** Sets the value of "background-image" */
193 void set backgroundImage(String value) { 183 set backgroundImage(String value) {
194 _backgroundImage = value == null ? '' : value; 184 _backgroundImage = value == null ? '' : value;
195 } 185 }
196 @Returns('String') 186 @Returns('String')
197 @JSName('backgroundImage') 187 @JSName('backgroundImage')
198 String _backgroundImage; 188 String _backgroundImage;
199 189
200 /** Gets the value of "background-position" */ 190 /** Gets the value of "background-position" */
201 String get backgroundPosition => this._backgroundPosition; 191 String get backgroundPosition => this._backgroundPosition;
202 192
203 /** Sets the value of "background-position" */ 193 /** Sets the value of "background-position" */
204 void set backgroundPosition(String value) { 194 set backgroundPosition(String value) {
205 _backgroundPosition = value == null ? '' : value; 195 _backgroundPosition = value == null ? '' : value;
206 } 196 }
207 @Returns('String') 197 @Returns('String')
208 @JSName('backgroundPosition') 198 @JSName('backgroundPosition')
209 String _backgroundPosition; 199 String _backgroundPosition;
210 200
211 /** Gets the value of "background-repeat" */ 201 /** Gets the value of "background-repeat" */
212 String get backgroundRepeat => this._backgroundRepeat; 202 String get backgroundRepeat => this._backgroundRepeat;
213 203
214 /** Sets the value of "background-repeat" */ 204 /** Sets the value of "background-repeat" */
215 void set backgroundRepeat(String value) { 205 set backgroundRepeat(String value) {
216 _backgroundRepeat = value == null ? '' : value; 206 _backgroundRepeat = value == null ? '' : value;
217 } 207 }
218 @Returns('String') 208 @Returns('String')
219 @JSName('backgroundRepeat') 209 @JSName('backgroundRepeat')
220 String _backgroundRepeat; 210 String _backgroundRepeat;
221 211
222 /** Gets the value of "border" */ 212 /** Gets the value of "border" */
223 String get border => this._border; 213 String get border => this._border;
224 214
225 /** Sets the value of "border" */ 215 /** Sets the value of "border" */
226 void set border(String value) { 216 set border(String value) {
227 _border = value == null ? '' : value; 217 _border = value == null ? '' : value;
228 } 218 }
229 @Returns('String') 219 @Returns('String')
230 @JSName('border') 220 @JSName('border')
231 String _border; 221 String _border;
232 222
233 /** Gets the value of "border-bottom" */ 223 /** Gets the value of "border-bottom" */
234 String get borderBottom => this._borderBottom; 224 String get borderBottom => this._borderBottom;
235 225
236 /** Sets the value of "border-bottom" */ 226 /** Sets the value of "border-bottom" */
237 void set borderBottom(String value) { 227 set borderBottom(String value) {
238 _borderBottom = value == null ? '' : value; 228 _borderBottom = value == null ? '' : value;
239 } 229 }
240 @Returns('String') 230 @Returns('String')
241 @JSName('borderBottom') 231 @JSName('borderBottom')
242 String _borderBottom; 232 String _borderBottom;
243 233
244 /** Gets the value of "border-bottom-color" */ 234 /** Gets the value of "border-bottom-color" */
245 String get borderBottomColor => this._borderBottomColor; 235 String get borderBottomColor => this._borderBottomColor;
246 236
247 /** Sets the value of "border-bottom-color" */ 237 /** Sets the value of "border-bottom-color" */
248 void set borderBottomColor(String value) { 238 set borderBottomColor(String value) {
249 _borderBottomColor = value == null ? '' : value; 239 _borderBottomColor = value == null ? '' : value;
250 } 240 }
251 @Returns('String') 241 @Returns('String')
252 @JSName('borderBottomColor') 242 @JSName('borderBottomColor')
253 String _borderBottomColor; 243 String _borderBottomColor;
254 244
255 /** Gets the value of "border-bottom-style" */ 245 /** Gets the value of "border-bottom-style" */
256 String get borderBottomStyle => this._borderBottomStyle; 246 String get borderBottomStyle => this._borderBottomStyle;
257 247
258 /** Sets the value of "border-bottom-style" */ 248 /** Sets the value of "border-bottom-style" */
259 void set borderBottomStyle(String value) { 249 set borderBottomStyle(String value) {
260 _borderBottomStyle = value == null ? '' : value; 250 _borderBottomStyle = value == null ? '' : value;
261 } 251 }
262 @Returns('String') 252 @Returns('String')
263 @JSName('borderBottomStyle') 253 @JSName('borderBottomStyle')
264 String _borderBottomStyle; 254 String _borderBottomStyle;
265 255
266 /** Gets the value of "border-bottom-width" */ 256 /** Gets the value of "border-bottom-width" */
267 String get borderBottomWidth => this._borderBottomWidth; 257 String get borderBottomWidth => this._borderBottomWidth;
268 258
269 /** Sets the value of "border-bottom-width" */ 259 /** Sets the value of "border-bottom-width" */
270 void set borderBottomWidth(String value) { 260 set borderBottomWidth(String value) {
271 _borderBottomWidth = value == null ? '' : value; 261 _borderBottomWidth = value == null ? '' : value;
272 } 262 }
273 @Returns('String') 263 @Returns('String')
274 @JSName('borderBottomWidth') 264 @JSName('borderBottomWidth')
275 String _borderBottomWidth; 265 String _borderBottomWidth;
276 266
277 /** Gets the value of "border-collapse" */ 267 /** Gets the value of "border-collapse" */
278 String get borderCollapse => this._borderCollapse; 268 String get borderCollapse => this._borderCollapse;
279 269
280 /** Sets the value of "border-collapse" */ 270 /** Sets the value of "border-collapse" */
281 void set borderCollapse(String value) { 271 set borderCollapse(String value) {
282 _borderCollapse = value == null ? '' : value; 272 _borderCollapse = value == null ? '' : value;
283 } 273 }
284 @Returns('String') 274 @Returns('String')
285 @JSName('borderCollapse') 275 @JSName('borderCollapse')
286 String _borderCollapse; 276 String _borderCollapse;
287 277
288 /** Gets the value of "border-color" */ 278 /** Gets the value of "border-color" */
289 String get borderColor => this._borderColor; 279 String get borderColor => this._borderColor;
290 280
291 /** Sets the value of "border-color" */ 281 /** Sets the value of "border-color" */
292 void set borderColor(String value) { 282 set borderColor(String value) {
293 _borderColor = value == null ? '' : value; 283 _borderColor = value == null ? '' : value;
294 } 284 }
295 @Returns('String') 285 @Returns('String')
296 @JSName('borderColor') 286 @JSName('borderColor')
297 String _borderColor; 287 String _borderColor;
298 288
299 /** Gets the value of "border-left" */ 289 /** Gets the value of "border-left" */
300 String get borderLeft => this._borderLeft; 290 String get borderLeft => this._borderLeft;
301 291
302 /** Sets the value of "border-left" */ 292 /** Sets the value of "border-left" */
303 void set borderLeft(String value) { 293 set borderLeft(String value) {
304 _borderLeft = value == null ? '' : value; 294 _borderLeft = value == null ? '' : value;
305 } 295 }
306 @Returns('String') 296 @Returns('String')
307 @JSName('borderLeft') 297 @JSName('borderLeft')
308 String _borderLeft; 298 String _borderLeft;
309 299
310 /** Gets the value of "border-left-color" */ 300 /** Gets the value of "border-left-color" */
311 String get borderLeftColor => this._borderLeftColor; 301 String get borderLeftColor => this._borderLeftColor;
312 302
313 /** Sets the value of "border-left-color" */ 303 /** Sets the value of "border-left-color" */
314 void set borderLeftColor(String value) { 304 set borderLeftColor(String value) {
315 _borderLeftColor = value == null ? '' : value; 305 _borderLeftColor = value == null ? '' : value;
316 } 306 }
317 @Returns('String') 307 @Returns('String')
318 @JSName('borderLeftColor') 308 @JSName('borderLeftColor')
319 String _borderLeftColor; 309 String _borderLeftColor;
320 310
321 /** Gets the value of "border-left-style" */ 311 /** Gets the value of "border-left-style" */
322 String get borderLeftStyle => this._borderLeftStyle; 312 String get borderLeftStyle => this._borderLeftStyle;
323 313
324 /** Sets the value of "border-left-style" */ 314 /** Sets the value of "border-left-style" */
325 void set borderLeftStyle(String value) { 315 set borderLeftStyle(String value) {
326 _borderLeftStyle = value == null ? '' : value; 316 _borderLeftStyle = value == null ? '' : value;
327 } 317 }
328 @Returns('String') 318 @Returns('String')
329 @JSName('borderLeftStyle') 319 @JSName('borderLeftStyle')
330 String _borderLeftStyle; 320 String _borderLeftStyle;
331 321
332 /** Gets the value of "border-left-width" */ 322 /** Gets the value of "border-left-width" */
333 String get borderLeftWidth => this._borderLeftWidth; 323 String get borderLeftWidth => this._borderLeftWidth;
334 324
335 /** Sets the value of "border-left-width" */ 325 /** Sets the value of "border-left-width" */
336 void set borderLeftWidth(String value) { 326 set borderLeftWidth(String value) {
337 _borderLeftWidth = value == null ? '' : value; 327 _borderLeftWidth = value == null ? '' : value;
338 } 328 }
339 @Returns('String') 329 @Returns('String')
340 @JSName('borderLeftWidth') 330 @JSName('borderLeftWidth')
341 String _borderLeftWidth; 331 String _borderLeftWidth;
342 332
343 /** Gets the value of "border-right" */ 333 /** Gets the value of "border-right" */
344 String get borderRight => this._borderRight; 334 String get borderRight => this._borderRight;
345 335
346 /** Sets the value of "border-right" */ 336 /** Sets the value of "border-right" */
347 void set borderRight(String value) { 337 set borderRight(String value) {
348 _borderRight = value == null ? '' : value; 338 _borderRight = value == null ? '' : value;
349 } 339 }
350 @Returns('String') 340 @Returns('String')
351 @JSName('borderRight') 341 @JSName('borderRight')
352 String _borderRight; 342 String _borderRight;
353 343
354 /** Gets the value of "border-right-color" */ 344 /** Gets the value of "border-right-color" */
355 String get borderRightColor => this._borderRightColor; 345 String get borderRightColor => this._borderRightColor;
356 346
357 /** Sets the value of "border-right-color" */ 347 /** Sets the value of "border-right-color" */
358 void set borderRightColor(String value) { 348 set borderRightColor(String value) {
359 _borderRightColor = value == null ? '' : value; 349 _borderRightColor = value == null ? '' : value;
360 } 350 }
361 @Returns('String') 351 @Returns('String')
362 @JSName('borderRightColor') 352 @JSName('borderRightColor')
363 String _borderRightColor; 353 String _borderRightColor;
364 354
365 /** Gets the value of "border-right-style" */ 355 /** Gets the value of "border-right-style" */
366 String get borderRightStyle => this._borderRightStyle; 356 String get borderRightStyle => this._borderRightStyle;
367 357
368 /** Sets the value of "border-right-style" */ 358 /** Sets the value of "border-right-style" */
369 void set borderRightStyle(String value) { 359 set borderRightStyle(String value) {
370 _borderRightStyle = value == null ? '' : value; 360 _borderRightStyle = value == null ? '' : value;
371 } 361 }
372 @Returns('String') 362 @Returns('String')
373 @JSName('borderRightStyle') 363 @JSName('borderRightStyle')
374 String _borderRightStyle; 364 String _borderRightStyle;
375 365
376 /** Gets the value of "border-right-width" */ 366 /** Gets the value of "border-right-width" */
377 String get borderRightWidth => this._borderRightWidth; 367 String get borderRightWidth => this._borderRightWidth;
378 368
379 /** Sets the value of "border-right-width" */ 369 /** Sets the value of "border-right-width" */
380 void set borderRightWidth(String value) { 370 set borderRightWidth(String value) {
381 _borderRightWidth = value == null ? '' : value; 371 _borderRightWidth = value == null ? '' : value;
382 } 372 }
383 @Returns('String') 373 @Returns('String')
384 @JSName('borderRightWidth') 374 @JSName('borderRightWidth')
385 String _borderRightWidth; 375 String _borderRightWidth;
386 376
387 /** Gets the value of "border-spacing" */ 377 /** Gets the value of "border-spacing" */
388 String get borderSpacing => this._borderSpacing; 378 String get borderSpacing => this._borderSpacing;
389 379
390 /** Sets the value of "border-spacing" */ 380 /** Sets the value of "border-spacing" */
391 void set borderSpacing(String value) { 381 set borderSpacing(String value) {
392 _borderSpacing = value == null ? '' : value; 382 _borderSpacing = value == null ? '' : value;
393 } 383 }
394 @Returns('String') 384 @Returns('String')
395 @JSName('borderSpacing') 385 @JSName('borderSpacing')
396 String _borderSpacing; 386 String _borderSpacing;
397 387
398 /** Gets the value of "border-style" */ 388 /** Gets the value of "border-style" */
399 String get borderStyle => this._borderStyle; 389 String get borderStyle => this._borderStyle;
400 390
401 /** Sets the value of "border-style" */ 391 /** Sets the value of "border-style" */
402 void set borderStyle(String value) { 392 set borderStyle(String value) {
403 _borderStyle = value == null ? '' : value; 393 _borderStyle = value == null ? '' : value;
404 } 394 }
405 @Returns('String') 395 @Returns('String')
406 @JSName('borderStyle') 396 @JSName('borderStyle')
407 String _borderStyle; 397 String _borderStyle;
408 398
409 /** Gets the value of "border-top" */ 399 /** Gets the value of "border-top" */
410 String get borderTop => this._borderTop; 400 String get borderTop => this._borderTop;
411 401
412 /** Sets the value of "border-top" */ 402 /** Sets the value of "border-top" */
413 void set borderTop(String value) { 403 set borderTop(String value) {
414 _borderTop = value == null ? '' : value; 404 _borderTop = value == null ? '' : value;
415 } 405 }
416 @Returns('String') 406 @Returns('String')
417 @JSName('borderTop') 407 @JSName('borderTop')
418 String _borderTop; 408 String _borderTop;
419 409
420 /** Gets the value of "border-top-color" */ 410 /** Gets the value of "border-top-color" */
421 String get borderTopColor => this._borderTopColor; 411 String get borderTopColor => this._borderTopColor;
422 412
423 /** Sets the value of "border-top-color" */ 413 /** Sets the value of "border-top-color" */
424 void set borderTopColor(String value) { 414 set borderTopColor(String value) {
425 _borderTopColor = value == null ? '' : value; 415 _borderTopColor = value == null ? '' : value;
426 } 416 }
427 @Returns('String') 417 @Returns('String')
428 @JSName('borderTopColor') 418 @JSName('borderTopColor')
429 String _borderTopColor; 419 String _borderTopColor;
430 420
431 /** Gets the value of "border-top-style" */ 421 /** Gets the value of "border-top-style" */
432 String get borderTopStyle => this._borderTopStyle; 422 String get borderTopStyle => this._borderTopStyle;
433 423
434 /** Sets the value of "border-top-style" */ 424 /** Sets the value of "border-top-style" */
435 void set borderTopStyle(String value) { 425 set borderTopStyle(String value) {
436 _borderTopStyle = value == null ? '' : value; 426 _borderTopStyle = value == null ? '' : value;
437 } 427 }
438 @Returns('String') 428 @Returns('String')
439 @JSName('borderTopStyle') 429 @JSName('borderTopStyle')
440 String _borderTopStyle; 430 String _borderTopStyle;
441 431
442 /** Gets the value of "border-top-width" */ 432 /** Gets the value of "border-top-width" */
443 String get borderTopWidth => this._borderTopWidth; 433 String get borderTopWidth => this._borderTopWidth;
444 434
445 /** Sets the value of "border-top-width" */ 435 /** Sets the value of "border-top-width" */
446 void set borderTopWidth(String value) { 436 set borderTopWidth(String value) {
447 _borderTopWidth = value == null ? '' : value; 437 _borderTopWidth = value == null ? '' : value;
448 } 438 }
449 @Returns('String') 439 @Returns('String')
450 @JSName('borderTopWidth') 440 @JSName('borderTopWidth')
451 String _borderTopWidth; 441 String _borderTopWidth;
452 442
453 /** Gets the value of "border-width" */ 443 /** Gets the value of "border-width" */
454 String get borderWidth => this._borderWidth; 444 String get borderWidth => this._borderWidth;
455 445
456 /** Sets the value of "border-width" */ 446 /** Sets the value of "border-width" */
457 void set borderWidth(String value) { 447 set borderWidth(String value) {
458 _borderWidth = value == null ? '' : value; 448 _borderWidth = value == null ? '' : value;
459 } 449 }
460 @Returns('String') 450 @Returns('String')
461 @JSName('borderWidth') 451 @JSName('borderWidth')
462 String _borderWidth; 452 String _borderWidth;
463 453
464 /** Gets the value of "bottom" */ 454 /** Gets the value of "bottom" */
465 String get bottom => this._bottom; 455 String get bottom => this._bottom;
466 456
467 /** Sets the value of "bottom" */ 457 /** Sets the value of "bottom" */
468 void set bottom(String value) { 458 set bottom(String value) {
469 _bottom = value == null ? '' : value; 459 _bottom = value == null ? '' : value;
470 } 460 }
471 @Returns('String') 461 @Returns('String')
472 @JSName('bottom') 462 @JSName('bottom')
473 String _bottom; 463 String _bottom;
474 464
475 /** Gets the value of "caption-side" */ 465 /** Gets the value of "caption-side" */
476 String get captionSide => this._captionSide; 466 String get captionSide => this._captionSide;
477 467
478 /** Sets the value of "caption-side" */ 468 /** Sets the value of "caption-side" */
479 void set captionSide(String value) { 469 set captionSide(String value) {
480 _captionSide = value == null ? '' : value; 470 _captionSide = value == null ? '' : value;
481 } 471 }
482 @Returns('String') 472 @Returns('String')
483 @JSName('captionSide') 473 @JSName('captionSide')
484 String _captionSide; 474 String _captionSide;
485 475
486 /** Gets the value of "clear" */ 476 /** Gets the value of "clear" */
487 String get clear => this._clear; 477 String get clear => this._clear;
488 478
489 /** Sets the value of "clear" */ 479 /** Sets the value of "clear" */
490 void set clear(String value) { 480 set clear(String value) {
491 _clear = value == null ? '' : value; 481 _clear = value == null ? '' : value;
492 } 482 }
493 @Returns('String') 483 @Returns('String')
494 @JSName('clear') 484 @JSName('clear')
495 String _clear; 485 String _clear;
496 486
497 /** Gets the value of "clip" */ 487 /** Gets the value of "clip" */
498 String get clip => this._clip; 488 String get clip => this._clip;
499 489
500 /** Sets the value of "clip" */ 490 /** Sets the value of "clip" */
501 void set clip(String value) { 491 set clip(String value) {
502 _clip = value == null ? '' : value; 492 _clip = value == null ? '' : value;
503 } 493 }
504 @Returns('String') 494 @Returns('String')
505 @JSName('clip') 495 @JSName('clip')
506 String _clip; 496 String _clip;
507 497
508 /** Gets the value of "color" */ 498 /** Gets the value of "color" */
509 String get color => this._color; 499 String get color => this._color;
510 500
511 /** Sets the value of "color" */ 501 /** Sets the value of "color" */
512 void set color(String value) { 502 set color(String value) {
513 _color = value == null ? '' : value; 503 _color = value == null ? '' : value;
514 } 504 }
515 @Returns('String') 505 @Returns('String')
516 @JSName('color') 506 @JSName('color')
517 String _color; 507 String _color;
518 508
519 /** Gets the value of "content" */ 509 /** Gets the value of "content" */
520 String get content => this._content; 510 String get content => this._content;
521 511
522 /** Sets the value of "content" */ 512 /** Sets the value of "content" */
523 void set content(String value) { 513 set content(String value) {
524 _content = value == null ? '' : value; 514 _content = value == null ? '' : value;
525 } 515 }
526 @Returns('String') 516 @Returns('String')
527 @JSName('content') 517 @JSName('content')
528 String _content; 518 String _content;
529 519
530 /** Gets the value of "cursor" */ 520 /** Gets the value of "cursor" */
531 String get cursor => this._cursor; 521 String get cursor => this._cursor;
532 522
533 /** Sets the value of "cursor" */ 523 /** Sets the value of "cursor" */
534 void set cursor(String value) { 524 set cursor(String value) {
535 _cursor = value == null ? '' : value; 525 _cursor = value == null ? '' : value;
536 } 526 }
537 @Returns('String') 527 @Returns('String')
538 @JSName('cursor') 528 @JSName('cursor')
539 String _cursor; 529 String _cursor;
540 530
541 /** Gets the value of "direction" */ 531 /** Gets the value of "direction" */
542 String get direction => this._direction; 532 String get direction => this._direction;
543 533
544 /** Sets the value of "direction" */ 534 /** Sets the value of "direction" */
545 void set direction(String value) { 535 set direction(String value) {
546 _direction = value == null ? '' : value; 536 _direction = value == null ? '' : value;
547 } 537 }
548 @Returns('String') 538 @Returns('String')
549 @JSName('direction') 539 @JSName('direction')
550 String _direction; 540 String _direction;
551 541
552 /** Gets the value of "display" */ 542 /** Gets the value of "display" */
553 String get display => this._display; 543 String get display => this._display;
554 544
555 /** Sets the value of "display" */ 545 /** Sets the value of "display" */
556 void set display(String value) { 546 set display(String value) {
557 _display = value == null ? '' : value; 547 _display = value == null ? '' : value;
558 } 548 }
559 @Returns('String') 549 @Returns('String')
560 @JSName('display') 550 @JSName('display')
561 String _display; 551 String _display;
562 552
563 /** Gets the value of "empty-cells" */ 553 /** Gets the value of "empty-cells" */
564 String get emptyCells => this._emptyCells; 554 String get emptyCells => this._emptyCells;
565 555
566 /** Sets the value of "empty-cells" */ 556 /** Sets the value of "empty-cells" */
567 void set emptyCells(String value) { 557 set emptyCells(String value) {
568 _emptyCells = value == null ? '' : value; 558 _emptyCells = value == null ? '' : value;
569 } 559 }
570 @Returns('String') 560 @Returns('String')
571 @JSName('emptyCells') 561 @JSName('emptyCells')
572 String _emptyCells; 562 String _emptyCells;
573 563
574 /** Gets the value of "font" */ 564 /** Gets the value of "font" */
575 String get font => this._font; 565 String get font => this._font;
576 566
577 /** Sets the value of "font" */ 567 /** Sets the value of "font" */
578 void set font(String value) { 568 set font(String value) {
579 _font = value == null ? '' : value; 569 _font = value == null ? '' : value;
580 } 570 }
581 @Returns('String') 571 @Returns('String')
582 @JSName('font') 572 @JSName('font')
583 String _font; 573 String _font;
584 574
585 /** Gets the value of "font-family" */ 575 /** Gets the value of "font-family" */
586 String get fontFamily => this._fontFamily; 576 String get fontFamily => this._fontFamily;
587 577
588 /** Sets the value of "font-family" */ 578 /** Sets the value of "font-family" */
589 void set fontFamily(String value) { 579 set fontFamily(String value) {
590 _fontFamily = value == null ? '' : value; 580 _fontFamily = value == null ? '' : value;
591 } 581 }
592 @Returns('String') 582 @Returns('String')
593 @JSName('fontFamily') 583 @JSName('fontFamily')
594 String _fontFamily; 584 String _fontFamily;
595 585
596 /** Gets the value of "font-size" */ 586 /** Gets the value of "font-size" */
597 String get fontSize => this._fontSize; 587 String get fontSize => this._fontSize;
598 588
599 /** Sets the value of "font-size" */ 589 /** Sets the value of "font-size" */
600 void set fontSize(String value) { 590 set fontSize(String value) {
601 _fontSize = value == null ? '' : value; 591 _fontSize = value == null ? '' : value;
602 } 592 }
603 @Returns('String') 593 @Returns('String')
604 @JSName('fontSize') 594 @JSName('fontSize')
605 String _fontSize; 595 String _fontSize;
606 596
607 /** Gets the value of "font-style" */ 597 /** Gets the value of "font-style" */
608 String get fontStyle => this._fontStyle; 598 String get fontStyle => this._fontStyle;
609 599
610 /** Sets the value of "font-style" */ 600 /** Sets the value of "font-style" */
611 void set fontStyle(String value) { 601 set fontStyle(String value) {
612 _fontStyle = value == null ? '' : value; 602 _fontStyle = value == null ? '' : value;
613 } 603 }
614 @Returns('String') 604 @Returns('String')
615 @JSName('fontStyle') 605 @JSName('fontStyle')
616 String _fontStyle; 606 String _fontStyle;
617 607
618 /** Gets the value of "font-variant" */ 608 /** Gets the value of "font-variant" */
619 String get fontVariant => this._fontVariant; 609 String get fontVariant => this._fontVariant;
620 610
621 /** Sets the value of "font-variant" */ 611 /** Sets the value of "font-variant" */
622 void set fontVariant(String value) { 612 set fontVariant(String value) {
623 _fontVariant = value == null ? '' : value; 613 _fontVariant = value == null ? '' : value;
624 } 614 }
625 @Returns('String') 615 @Returns('String')
626 @JSName('fontVariant') 616 @JSName('fontVariant')
627 String _fontVariant; 617 String _fontVariant;
628 618
629 /** Gets the value of "font-weight" */ 619 /** Gets the value of "font-weight" */
630 String get fontWeight => this._fontWeight; 620 String get fontWeight => this._fontWeight;
631 621
632 /** Sets the value of "font-weight" */ 622 /** Sets the value of "font-weight" */
633 void set fontWeight(String value) { 623 set fontWeight(String value) {
634 _fontWeight = value == null ? '' : value; 624 _fontWeight = value == null ? '' : value;
635 } 625 }
636 @Returns('String') 626 @Returns('String')
637 @JSName('fontWeight') 627 @JSName('fontWeight')
638 String _fontWeight; 628 String _fontWeight;
639 629
640 /** Gets the value of "height" */ 630 /** Gets the value of "height" */
641 String get height => this._height; 631 String get height => this._height;
642 632
643 /** Sets the value of "height" */ 633 /** Sets the value of "height" */
644 void set height(String value) { 634 set height(String value) {
645 _height = value == null ? '' : value; 635 _height = value == null ? '' : value;
646 } 636 }
647 @Returns('String') 637 @Returns('String')
648 @JSName('height') 638 @JSName('height')
649 String _height; 639 String _height;
650 640
651 /** Gets the value of "left" */ 641 /** Gets the value of "left" */
652 String get left => this._left; 642 String get left => this._left;
653 643
654 /** Sets the value of "left" */ 644 /** Sets the value of "left" */
655 void set left(String value) { 645 set left(String value) {
656 _left = value == null ? '' : value; 646 _left = value == null ? '' : value;
657 } 647 }
658 @Returns('String') 648 @Returns('String')
659 @JSName('left') 649 @JSName('left')
660 String _left; 650 String _left;
661 651
662 /** Gets the value of "letter-spacing" */ 652 /** Gets the value of "letter-spacing" */
663 String get letterSpacing => this._letterSpacing; 653 String get letterSpacing => this._letterSpacing;
664 654
665 /** Sets the value of "letter-spacing" */ 655 /** Sets the value of "letter-spacing" */
666 void set letterSpacing(String value) { 656 set letterSpacing(String value) {
667 _letterSpacing = value == null ? '' : value; 657 _letterSpacing = value == null ? '' : value;
668 } 658 }
669 @Returns('String') 659 @Returns('String')
670 @JSName('letterSpacing') 660 @JSName('letterSpacing')
671 String _letterSpacing; 661 String _letterSpacing;
672 662
673 /** Gets the value of "line-height" */ 663 /** Gets the value of "line-height" */
674 String get lineHeight => this._lineHeight; 664 String get lineHeight => this._lineHeight;
675 665
676 /** Sets the value of "line-height" */ 666 /** Sets the value of "line-height" */
677 void set lineHeight(String value) { 667 set lineHeight(String value) {
678 _lineHeight = value == null ? '' : value; 668 _lineHeight = value == null ? '' : value;
679 } 669 }
680 @Returns('String') 670 @Returns('String')
681 @JSName('lineHeight') 671 @JSName('lineHeight')
682 String _lineHeight; 672 String _lineHeight;
683 673
684 /** Gets the value of "list-style" */ 674 /** Gets the value of "list-style" */
685 String get listStyle => this._listStyle; 675 String get listStyle => this._listStyle;
686 676
687 /** Sets the value of "list-style" */ 677 /** Sets the value of "list-style" */
688 void set listStyle(String value) { 678 set listStyle(String value) {
689 _listStyle = value == null ? '' : value; 679 _listStyle = value == null ? '' : value;
690 } 680 }
691 @Returns('String') 681 @Returns('String')
692 @JSName('listStyle') 682 @JSName('listStyle')
693 String _listStyle; 683 String _listStyle;
694 684
695 /** Gets the value of "list-style-image" */ 685 /** Gets the value of "list-style-image" */
696 String get listStyleImage => this._listStyleImage; 686 String get listStyleImage => this._listStyleImage;
697 687
698 /** Sets the value of "list-style-image" */ 688 /** Sets the value of "list-style-image" */
699 void set listStyleImage(String value) { 689 set listStyleImage(String value) {
700 _listStyleImage = value == null ? '' : value; 690 _listStyleImage = value == null ? '' : value;
701 } 691 }
702 @Returns('String') 692 @Returns('String')
703 @JSName('listStyleImage') 693 @JSName('listStyleImage')
704 String _listStyleImage; 694 String _listStyleImage;
705 695
706 /** Gets the value of "list-style-position" */ 696 /** Gets the value of "list-style-position" */
707 String get listStylePosition => this._listStylePosition; 697 String get listStylePosition => this._listStylePosition;
708 698
709 /** Sets the value of "list-style-position" */ 699 /** Sets the value of "list-style-position" */
710 void set listStylePosition(String value) { 700 set listStylePosition(String value) {
711 _listStylePosition = value == null ? '' : value; 701 _listStylePosition = value == null ? '' : value;
712 } 702 }
713 @Returns('String') 703 @Returns('String')
714 @JSName('listStylePosition') 704 @JSName('listStylePosition')
715 String _listStylePosition; 705 String _listStylePosition;
716 706
717 /** Gets the value of "list-style-type" */ 707 /** Gets the value of "list-style-type" */
718 String get listStyleType => this._listStyleType; 708 String get listStyleType => this._listStyleType;
719 709
720 /** Sets the value of "list-style-type" */ 710 /** Sets the value of "list-style-type" */
721 void set listStyleType(String value) { 711 set listStyleType(String value) {
722 _listStyleType = value == null ? '' : value; 712 _listStyleType = value == null ? '' : value;
723 } 713 }
724 @Returns('String') 714 @Returns('String')
725 @JSName('listStyleType') 715 @JSName('listStyleType')
726 String _listStyleType; 716 String _listStyleType;
727 717
728 /** Gets the value of "margin" */ 718 /** Gets the value of "margin" */
729 String get margin => this._margin; 719 String get margin => this._margin;
730 720
731 /** Sets the value of "margin" */ 721 /** Sets the value of "margin" */
732 void set margin(String value) { 722 set margin(String value) {
733 _margin = value == null ? '' : value; 723 _margin = value == null ? '' : value;
734 } 724 }
735 @Returns('String') 725 @Returns('String')
736 @JSName('margin') 726 @JSName('margin')
737 String _margin; 727 String _margin;
738 728
739 /** Gets the value of "margin-bottom" */ 729 /** Gets the value of "margin-bottom" */
740 String get marginBottom => this._marginBottom; 730 String get marginBottom => this._marginBottom;
741 731
742 /** Sets the value of "margin-bottom" */ 732 /** Sets the value of "margin-bottom" */
743 void set marginBottom(String value) { 733 set marginBottom(String value) {
744 _marginBottom = value == null ? '' : value; 734 _marginBottom = value == null ? '' : value;
745 } 735 }
746 @Returns('String') 736 @Returns('String')
747 @JSName('marginBottom') 737 @JSName('marginBottom')
748 String _marginBottom; 738 String _marginBottom;
749 739
750 /** Gets the value of "margin-left" */ 740 /** Gets the value of "margin-left" */
751 String get marginLeft => this._marginLeft; 741 String get marginLeft => this._marginLeft;
752 742
753 /** Sets the value of "margin-left" */ 743 /** Sets the value of "margin-left" */
754 void set marginLeft(String value) { 744 set marginLeft(String value) {
755 _marginLeft = value == null ? '' : value; 745 _marginLeft = value == null ? '' : value;
756 } 746 }
757 @Returns('String') 747 @Returns('String')
758 @JSName('marginLeft') 748 @JSName('marginLeft')
759 String _marginLeft; 749 String _marginLeft;
760 750
761 /** Gets the value of "margin-right" */ 751 /** Gets the value of "margin-right" */
762 String get marginRight => this._marginRight; 752 String get marginRight => this._marginRight;
763 753
764 /** Sets the value of "margin-right" */ 754 /** Sets the value of "margin-right" */
765 void set marginRight(String value) { 755 set marginRight(String value) {
766 _marginRight = value == null ? '' : value; 756 _marginRight = value == null ? '' : value;
767 } 757 }
768 @Returns('String') 758 @Returns('String')
769 @JSName('marginRight') 759 @JSName('marginRight')
770 String _marginRight; 760 String _marginRight;
771 761
772 /** Gets the value of "margin-top" */ 762 /** Gets the value of "margin-top" */
773 String get marginTop => this._marginTop; 763 String get marginTop => this._marginTop;
774 764
775 /** Sets the value of "margin-top" */ 765 /** Sets the value of "margin-top" */
776 void set marginTop(String value) { 766 set marginTop(String value) {
777 _marginTop = value == null ? '' : value; 767 _marginTop = value == null ? '' : value;
778 } 768 }
779 @Returns('String') 769 @Returns('String')
780 @JSName('marginTop') 770 @JSName('marginTop')
781 String _marginTop; 771 String _marginTop;
782 772
783 /** Gets the value of "max-height" */ 773 /** Gets the value of "max-height" */
784 String get maxHeight => this._maxHeight; 774 String get maxHeight => this._maxHeight;
785 775
786 /** Sets the value of "max-height" */ 776 /** Sets the value of "max-height" */
787 void set maxHeight(String value) { 777 set maxHeight(String value) {
788 _maxHeight = value == null ? '' : value; 778 _maxHeight = value == null ? '' : value;
789 } 779 }
790 @Returns('String') 780 @Returns('String')
791 @JSName('maxHeight') 781 @JSName('maxHeight')
792 String _maxHeight; 782 String _maxHeight;
793 783
794 /** Gets the value of "max-width" */ 784 /** Gets the value of "max-width" */
795 String get maxWidth => this._maxWidth; 785 String get maxWidth => this._maxWidth;
796 786
797 /** Sets the value of "max-width" */ 787 /** Sets the value of "max-width" */
798 void set maxWidth(String value) { 788 set maxWidth(String value) {
799 _maxWidth = value == null ? '' : value; 789 _maxWidth = value == null ? '' : value;
800 } 790 }
801 @Returns('String') 791 @Returns('String')
802 @JSName('maxWidth') 792 @JSName('maxWidth')
803 String _maxWidth; 793 String _maxWidth;
804 794
805 /** Gets the value of "min-height" */ 795 /** Gets the value of "min-height" */
806 String get minHeight => this._minHeight; 796 String get minHeight => this._minHeight;
807 797
808 /** Sets the value of "min-height" */ 798 /** Sets the value of "min-height" */
809 void set minHeight(String value) { 799 set minHeight(String value) {
810 _minHeight = value == null ? '' : value; 800 _minHeight = value == null ? '' : value;
811 } 801 }
812 @Returns('String') 802 @Returns('String')
813 @JSName('minHeight') 803 @JSName('minHeight')
814 String _minHeight; 804 String _minHeight;
815 805
816 /** Gets the value of "min-width" */ 806 /** Gets the value of "min-width" */
817 String get minWidth => this._minWidth; 807 String get minWidth => this._minWidth;
818 808
819 /** Sets the value of "min-width" */ 809 /** Sets the value of "min-width" */
820 void set minWidth(String value) { 810 set minWidth(String value) {
821 _minWidth = value == null ? '' : value; 811 _minWidth = value == null ? '' : value;
822 } 812 }
823 @Returns('String') 813 @Returns('String')
824 @JSName('minWidth') 814 @JSName('minWidth')
825 String _minWidth; 815 String _minWidth;
826 816
827 /** Gets the value of "outline" */ 817 /** Gets the value of "outline" */
828 String get outline => this._outline; 818 String get outline => this._outline;
829 819
830 /** Sets the value of "outline" */ 820 /** Sets the value of "outline" */
831 void set outline(String value) { 821 set outline(String value) {
832 _outline = value == null ? '' : value; 822 _outline = value == null ? '' : value;
833 } 823 }
834 @Returns('String') 824 @Returns('String')
835 @JSName('outline') 825 @JSName('outline')
836 String _outline; 826 String _outline;
837 827
838 /** Gets the value of "outline-color" */ 828 /** Gets the value of "outline-color" */
839 String get outlineColor => this._outlineColor; 829 String get outlineColor => this._outlineColor;
840 830
841 /** Sets the value of "outline-color" */ 831 /** Sets the value of "outline-color" */
842 void set outlineColor(String value) { 832 set outlineColor(String value) {
843 _outlineColor = value == null ? '' : value; 833 _outlineColor = value == null ? '' : value;
844 } 834 }
845 @Returns('String') 835 @Returns('String')
846 @JSName('outlineColor') 836 @JSName('outlineColor')
847 String _outlineColor; 837 String _outlineColor;
848 838
849 /** Gets the value of "outline-style" */ 839 /** Gets the value of "outline-style" */
850 String get outlineStyle => this._outlineStyle; 840 String get outlineStyle => this._outlineStyle;
851 841
852 /** Sets the value of "outline-style" */ 842 /** Sets the value of "outline-style" */
853 void set outlineStyle(String value) { 843 set outlineStyle(String value) {
854 _outlineStyle = value == null ? '' : value; 844 _outlineStyle = value == null ? '' : value;
855 } 845 }
856 @Returns('String') 846 @Returns('String')
857 @JSName('outlineStyle') 847 @JSName('outlineStyle')
858 String _outlineStyle; 848 String _outlineStyle;
859 849
860 /** Gets the value of "outline-width" */ 850 /** Gets the value of "outline-width" */
861 String get outlineWidth => this._outlineWidth; 851 String get outlineWidth => this._outlineWidth;
862 852
863 /** Sets the value of "outline-width" */ 853 /** Sets the value of "outline-width" */
864 void set outlineWidth(String value) { 854 set outlineWidth(String value) {
865 _outlineWidth = value == null ? '' : value; 855 _outlineWidth = value == null ? '' : value;
866 } 856 }
867 @Returns('String') 857 @Returns('String')
868 @JSName('outlineWidth') 858 @JSName('outlineWidth')
869 String _outlineWidth; 859 String _outlineWidth;
870 860
871 /** Gets the value of "overflow" */ 861 /** Gets the value of "overflow" */
872 String get overflow => this._overflow; 862 String get overflow => this._overflow;
873 863
874 /** Sets the value of "overflow" */ 864 /** Sets the value of "overflow" */
875 void set overflow(String value) { 865 set overflow(String value) {
876 _overflow = value == null ? '' : value; 866 _overflow = value == null ? '' : value;
877 } 867 }
878 @Returns('String') 868 @Returns('String')
879 @JSName('overflow') 869 @JSName('overflow')
880 String _overflow; 870 String _overflow;
881 871
882 /** Gets the value of "padding" */ 872 /** Gets the value of "padding" */
883 String get padding => this._padding; 873 String get padding => this._padding;
884 874
885 /** Sets the value of "padding" */ 875 /** Sets the value of "padding" */
886 void set padding(String value) { 876 set padding(String value) {
887 _padding = value == null ? '' : value; 877 _padding = value == null ? '' : value;
888 } 878 }
889 @Returns('String') 879 @Returns('String')
890 @JSName('padding') 880 @JSName('padding')
891 String _padding; 881 String _padding;
892 882
893 /** Gets the value of "padding-bottom" */ 883 /** Gets the value of "padding-bottom" */
894 String get paddingBottom => this._paddingBottom; 884 String get paddingBottom => this._paddingBottom;
895 885
896 /** Sets the value of "padding-bottom" */ 886 /** Sets the value of "padding-bottom" */
897 void set paddingBottom(String value) { 887 set paddingBottom(String value) {
898 _paddingBottom = value == null ? '' : value; 888 _paddingBottom = value == null ? '' : value;
899 } 889 }
900 @Returns('String') 890 @Returns('String')
901 @JSName('paddingBottom') 891 @JSName('paddingBottom')
902 String _paddingBottom; 892 String _paddingBottom;
903 893
904 /** Gets the value of "padding-left" */ 894 /** Gets the value of "padding-left" */
905 String get paddingLeft => this._paddingLeft; 895 String get paddingLeft => this._paddingLeft;
906 896
907 /** Sets the value of "padding-left" */ 897 /** Sets the value of "padding-left" */
908 void set paddingLeft(String value) { 898 set paddingLeft(String value) {
909 _paddingLeft = value == null ? '' : value; 899 _paddingLeft = value == null ? '' : value;
910 } 900 }
911 @Returns('String') 901 @Returns('String')
912 @JSName('paddingLeft') 902 @JSName('paddingLeft')
913 String _paddingLeft; 903 String _paddingLeft;
914 904
915 /** Gets the value of "padding-right" */ 905 /** Gets the value of "padding-right" */
916 String get paddingRight => this._paddingRight; 906 String get paddingRight => this._paddingRight;
917 907
918 /** Sets the value of "padding-right" */ 908 /** Sets the value of "padding-right" */
919 void set paddingRight(String value) { 909 set paddingRight(String value) {
920 _paddingRight = value == null ? '' : value; 910 _paddingRight = value == null ? '' : value;
921 } 911 }
922 @Returns('String') 912 @Returns('String')
923 @JSName('paddingRight') 913 @JSName('paddingRight')
924 String _paddingRight; 914 String _paddingRight;
925 915
926 /** Gets the value of "padding-top" */ 916 /** Gets the value of "padding-top" */
927 String get paddingTop => this._paddingTop; 917 String get paddingTop => this._paddingTop;
928 918
929 /** Sets the value of "padding-top" */ 919 /** Sets the value of "padding-top" */
930 void set paddingTop(String value) { 920 set paddingTop(String value) {
931 _paddingTop = value == null ? '' : value; 921 _paddingTop = value == null ? '' : value;
932 } 922 }
933 @Returns('String') 923 @Returns('String')
934 @JSName('paddingTop') 924 @JSName('paddingTop')
935 String _paddingTop; 925 String _paddingTop;
936 926
937 /** Gets the value of "page-break-after" */ 927 /** Gets the value of "page-break-after" */
938 String get pageBreakAfter => this._pageBreakAfter; 928 String get pageBreakAfter => this._pageBreakAfter;
939 929
940 /** Sets the value of "page-break-after" */ 930 /** Sets the value of "page-break-after" */
941 void set pageBreakAfter(String value) { 931 set pageBreakAfter(String value) {
942 _pageBreakAfter = value == null ? '' : value; 932 _pageBreakAfter = value == null ? '' : value;
943 } 933 }
944 @Returns('String') 934 @Returns('String')
945 @JSName('pageBreakAfter') 935 @JSName('pageBreakAfter')
946 String _pageBreakAfter; 936 String _pageBreakAfter;
947 937
948 /** Gets the value of "page-break-before" */ 938 /** Gets the value of "page-break-before" */
949 String get pageBreakBefore => this._pageBreakBefore; 939 String get pageBreakBefore => this._pageBreakBefore;
950 940
951 /** Sets the value of "page-break-before" */ 941 /** Sets the value of "page-break-before" */
952 void set pageBreakBefore(String value) { 942 set pageBreakBefore(String value) {
953 _pageBreakBefore = value == null ? '' : value; 943 _pageBreakBefore = value == null ? '' : value;
954 } 944 }
955 @Returns('String') 945 @Returns('String')
956 @JSName('pageBreakBefore') 946 @JSName('pageBreakBefore')
957 String _pageBreakBefore; 947 String _pageBreakBefore;
958 948
959 /** Gets the value of "page-break-inside" */ 949 /** Gets the value of "page-break-inside" */
960 String get pageBreakInside => this._pageBreakInside; 950 String get pageBreakInside => this._pageBreakInside;
961 951
962 /** Sets the value of "page-break-inside" */ 952 /** Sets the value of "page-break-inside" */
963 void set pageBreakInside(String value) { 953 set pageBreakInside(String value) {
964 _pageBreakInside = value == null ? '' : value; 954 _pageBreakInside = value == null ? '' : value;
965 } 955 }
966 @Returns('String') 956 @Returns('String')
967 @JSName('pageBreakInside') 957 @JSName('pageBreakInside')
968 String _pageBreakInside; 958 String _pageBreakInside;
969 959
970 /** Gets the value of "position" */ 960 /** Gets the value of "position" */
971 String get position => this._position; 961 String get position => this._position;
972 962
973 /** Sets the value of "position" */ 963 /** Sets the value of "position" */
974 void set position(String value) { 964 set position(String value) {
975 _position = value == null ? '' : value; 965 _position = value == null ? '' : value;
976 } 966 }
977 @Returns('String') 967 @Returns('String')
978 @JSName('position') 968 @JSName('position')
979 String _position; 969 String _position;
980 970
981 /** Gets the value of "quotes" */ 971 /** Gets the value of "quotes" */
982 String get quotes => this._quotes; 972 String get quotes => this._quotes;
983 973
984 /** Sets the value of "quotes" */ 974 /** Sets the value of "quotes" */
985 void set quotes(String value) { 975 set quotes(String value) {
986 _quotes = value == null ? '' : value; 976 _quotes = value == null ? '' : value;
987 } 977 }
988 @Returns('String') 978 @Returns('String')
989 @JSName('quotes') 979 @JSName('quotes')
990 String _quotes; 980 String _quotes;
991 981
992 /** Gets the value of "right" */ 982 /** Gets the value of "right" */
993 String get right => this._right; 983 String get right => this._right;
994 984
995 /** Sets the value of "right" */ 985 /** Sets the value of "right" */
996 void set right(String value) { 986 set right(String value) {
997 _right = value == null ? '' : value; 987 _right = value == null ? '' : value;
998 } 988 }
999 @Returns('String') 989 @Returns('String')
1000 @JSName('right') 990 @JSName('right')
1001 String _right; 991 String _right;
1002 992
1003 /** Gets the value of "table-layout" */ 993 /** Gets the value of "table-layout" */
1004 String get tableLayout => this._tableLayout; 994 String get tableLayout => this._tableLayout;
1005 995
1006 /** Sets the value of "table-layout" */ 996 /** Sets the value of "table-layout" */
1007 void set tableLayout(String value) { 997 set tableLayout(String value) {
1008 _tableLayout = value == null ? '' : value; 998 _tableLayout = value == null ? '' : value;
1009 } 999 }
1010 @Returns('String') 1000 @Returns('String')
1011 @JSName('tableLayout') 1001 @JSName('tableLayout')
1012 String _tableLayout; 1002 String _tableLayout;
1013 1003
1014 /** Gets the value of "text-align" */ 1004 /** Gets the value of "text-align" */
1015 String get textAlign => this._textAlign; 1005 String get textAlign => this._textAlign;
1016 1006
1017 /** Sets the value of "text-align" */ 1007 /** Sets the value of "text-align" */
1018 void set textAlign(String value) { 1008 set textAlign(String value) {
1019 _textAlign = value == null ? '' : value; 1009 _textAlign = value == null ? '' : value;
1020 } 1010 }
1021 @Returns('String') 1011 @Returns('String')
1022 @JSName('textAlign') 1012 @JSName('textAlign')
1023 String _textAlign; 1013 String _textAlign;
1024 1014
1025 /** Gets the value of "text-decoration" */ 1015 /** Gets the value of "text-decoration" */
1026 String get textDecoration => this._textDecoration; 1016 String get textDecoration => this._textDecoration;
1027 1017
1028 /** Sets the value of "text-decoration" */ 1018 /** Sets the value of "text-decoration" */
1029 void set textDecoration(String value) { 1019 set textDecoration(String value) {
1030 _textDecoration = value == null ? '' : value; 1020 _textDecoration = value == null ? '' : value;
1031 } 1021 }
1032 @Returns('String') 1022 @Returns('String')
1033 @JSName('textDecoration') 1023 @JSName('textDecoration')
1034 String _textDecoration; 1024 String _textDecoration;
1035 1025
1036 /** Gets the value of "text-indent" */ 1026 /** Gets the value of "text-indent" */
1037 String get textIndent => this._textIndent; 1027 String get textIndent => this._textIndent;
1038 1028
1039 /** Sets the value of "text-indent" */ 1029 /** Sets the value of "text-indent" */
1040 void set textIndent(String value) { 1030 set textIndent(String value) {
1041 _textIndent = value == null ? '' : value; 1031 _textIndent = value == null ? '' : value;
1042 } 1032 }
1043 @Returns('String') 1033 @Returns('String')
1044 @JSName('textIndent') 1034 @JSName('textIndent')
1045 String _textIndent; 1035 String _textIndent;
1046 1036
1047 /** Gets the value of "text-transform" */ 1037 /** Gets the value of "text-transform" */
1048 String get textTransform => this._textTransform; 1038 String get textTransform => this._textTransform;
1049 1039
1050 /** Sets the value of "text-transform" */ 1040 /** Sets the value of "text-transform" */
1051 void set textTransform(String value) { 1041 set textTransform(String value) {
1052 _textTransform = value == null ? '' : value; 1042 _textTransform = value == null ? '' : value;
1053 } 1043 }
1054 @Returns('String') 1044 @Returns('String')
1055 @JSName('textTransform') 1045 @JSName('textTransform')
1056 String _textTransform; 1046 String _textTransform;
1057 1047
1058 /** Gets the value of "top" */ 1048 /** Gets the value of "top" */
1059 String get top => this._top; 1049 String get top => this._top;
1060 1050
1061 /** Sets the value of "top" */ 1051 /** Sets the value of "top" */
1062 void set top(String value) { 1052 set top(String value) {
1063 _top = value == null ? '' : value; 1053 _top = value == null ? '' : value;
1064 } 1054 }
1065 @Returns('String') 1055 @Returns('String')
1066 @JSName('top') 1056 @JSName('top')
1067 String _top; 1057 String _top;
1068 1058
1069 /** Gets the value of "unicode-bidi" */ 1059 /** Gets the value of "unicode-bidi" */
1070 String get unicodeBidi => this._unicodeBidi; 1060 String get unicodeBidi => this._unicodeBidi;
1071 1061
1072 /** Sets the value of "unicode-bidi" */ 1062 /** Sets the value of "unicode-bidi" */
1073 void set unicodeBidi(String value) { 1063 set unicodeBidi(String value) {
1074 _unicodeBidi = value == null ? '' : value; 1064 _unicodeBidi = value == null ? '' : value;
1075 } 1065 }
1076 @Returns('String') 1066 @Returns('String')
1077 @JSName('unicodeBidi') 1067 @JSName('unicodeBidi')
1078 String _unicodeBidi; 1068 String _unicodeBidi;
1079 1069
1080 /** Gets the value of "vertical-align" */ 1070 /** Gets the value of "vertical-align" */
1081 String get verticalAlign => this._verticalAlign; 1071 String get verticalAlign => this._verticalAlign;
1082 1072
1083 /** Sets the value of "vertical-align" */ 1073 /** Sets the value of "vertical-align" */
1084 void set verticalAlign(String value) { 1074 set verticalAlign(String value) {
1085 _verticalAlign = value == null ? '' : value; 1075 _verticalAlign = value == null ? '' : value;
1086 } 1076 }
1087 @Returns('String') 1077 @Returns('String')
1088 @JSName('verticalAlign') 1078 @JSName('verticalAlign')
1089 String _verticalAlign; 1079 String _verticalAlign;
1090 1080
1091 /** Gets the value of "visibility" */ 1081 /** Gets the value of "visibility" */
1092 String get visibility => this._visibility; 1082 String get visibility => this._visibility;
1093 1083
1094 /** Sets the value of "visibility" */ 1084 /** Sets the value of "visibility" */
1095 void set visibility(String value) { 1085 set visibility(String value) {
1096 _visibility = value == null ? '' : value; 1086 _visibility = value == null ? '' : value;
1097 } 1087 }
1098 @Returns('String') 1088 @Returns('String')
1099 @JSName('visibility') 1089 @JSName('visibility')
1100 String _visibility; 1090 String _visibility;
1101 1091
1102 /** Gets the value of "white-space" */ 1092 /** Gets the value of "white-space" */
1103 String get whiteSpace => this._whiteSpace; 1093 String get whiteSpace => this._whiteSpace;
1104 1094
1105 /** Sets the value of "white-space" */ 1095 /** Sets the value of "white-space" */
1106 void set whiteSpace(String value) { 1096 set whiteSpace(String value) {
1107 _whiteSpace = value == null ? '' : value; 1097 _whiteSpace = value == null ? '' : value;
1108 } 1098 }
1109 @Returns('String') 1099 @Returns('String')
1110 @JSName('whiteSpace') 1100 @JSName('whiteSpace')
1111 String _whiteSpace; 1101 String _whiteSpace;
1112 1102
1113 /** Gets the value of "width" */ 1103 /** Gets the value of "width" */
1114 String get width => this._width; 1104 String get width => this._width;
1115 1105
1116 /** Sets the value of "width" */ 1106 /** Sets the value of "width" */
1117 void set width(String value) { 1107 set width(String value) {
1118 _width = value == null ? '' : value; 1108 _width = value == null ? '' : value;
1119 } 1109 }
1120 @Returns('String') 1110 @Returns('String')
1121 @JSName('width') 1111 @JSName('width')
1122 String _width; 1112 String _width;
1123 1113
1124 /** Gets the value of "word-spacing" */ 1114 /** Gets the value of "word-spacing" */
1125 String get wordSpacing => this._wordSpacing; 1115 String get wordSpacing => this._wordSpacing;
1126 1116
1127 /** Sets the value of "word-spacing" */ 1117 /** Sets the value of "word-spacing" */
1128 void set wordSpacing(String value) { 1118 set wordSpacing(String value) {
1129 _wordSpacing = value == null ? '' : value; 1119 _wordSpacing = value == null ? '' : value;
1130 } 1120 }
1131 @Returns('String') 1121 @Returns('String')
1132 @JSName('wordSpacing') 1122 @JSName('wordSpacing')
1133 String _wordSpacing; 1123 String _wordSpacing;
1134 1124
1135 /** Gets the value of "z-index" */ 1125 /** Gets the value of "z-index" */
1136 String get zIndex => this._zIndex; 1126 String get zIndex => this._zIndex;
1137 1127
1138 /** Sets the value of "z-index" */ 1128 /** Sets the value of "z-index" */
1139 void set zIndex(String value) { 1129 set zIndex(String value) {
1140 _zIndex = value == null ? '' : value; 1130 _zIndex = value == null ? '' : value;
1141 } 1131 }
1142 @Returns('String') 1132 @Returns('String')
1143 @JSName('zIndex') 1133 @JSName('zIndex')
1144 String _zIndex; 1134 String _zIndex;
1145 1135
1146 $endif 1136 $endif
1147 } 1137 }
1148 1138
1149 $if DART2JS
1150 class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase { 1139 class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase {
1151 $else
1152 $if JSINTEROP
1153 class _CssStyleDeclarationSet extends CssStyleDeclarationBase {
1154 $else
1155 class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase {
1156 $endif
1157 $endif
1158 final Iterable<Element> _elementIterable; 1140 final Iterable<Element> _elementIterable;
1159 Iterable<CssStyleDeclaration> _elementCssStyleDeclarationSetIterable; 1141 Iterable<CssStyleDeclaration> _elementCssStyleDeclarationSetIterable;
1160 1142
1161 _CssStyleDeclarationSet(this._elementIterable) { 1143 _CssStyleDeclarationSet(this._elementIterable) {
1162 _elementCssStyleDeclarationSetIterable = new List.from( 1144 _elementCssStyleDeclarationSetIterable = new List.from(
1163 _elementIterable).map((e) => e.style); 1145 _elementIterable).map((e) => e.style);
1164 } 1146 }
1165 1147
1166 String getPropertyValue(String propertyName) => 1148 String getPropertyValue(String propertyName) =>
1167 _elementCssStyleDeclarationSetIterable.first.getPropertyValue( 1149 _elementCssStyleDeclarationSetIterable.first.getPropertyValue(
1168 propertyName); 1150 propertyName);
1169 1151
1170 void setProperty(String propertyName, String value, [String priority]) { 1152 void setProperty(String propertyName, String value, [String priority]) {
1171 _elementCssStyleDeclarationSetIterable.forEach((e) => 1153 _elementCssStyleDeclarationSetIterable.forEach((e) =>
1172 e.setProperty(propertyName, value, priority)); 1154 e.setProperty(propertyName, value, priority));
1173 } 1155 }
1174 1156
1175 1157
1176 $if DART2JS 1158 $if DART2JS
1177 void _setAll(String propertyName, String value) { 1159 void _setAll(String propertyName, String value) {
1178 value = value == null ? '' : value; 1160 value = value == null ? '' : value;
1179 for (Element element in _elementIterable) { 1161 for (Element element in _elementIterable) {
1180 JS('void', '#.style[#] = #', element, propertyName, value); 1162 JS('void', '#.style[#] = #', element, propertyName, value);
1181 } 1163 }
1182 } 1164 }
1183 1165
1184 /** Sets the value of "background" */ 1166 /** Sets the value of "background" */
1185 void set background(String value) { 1167 set background(String value) {
1186 _setAll('background', value); 1168 _setAll('background', value);
1187 } 1169 }
1188 1170
1189 /** Sets the value of "background-attachment" */ 1171 /** Sets the value of "background-attachment" */
1190 void set backgroundAttachment(String value) { 1172 set backgroundAttachment(String value) {
1191 _setAll('backgroundAttachment', value); 1173 _setAll('backgroundAttachment', value);
1192 } 1174 }
1193 1175
1194 /** Sets the value of "background-color" */ 1176 /** Sets the value of "background-color" */
1195 void set backgroundColor(String value) { 1177 set backgroundColor(String value) {
1196 _setAll('backgroundColor', value); 1178 _setAll('backgroundColor', value);
1197 } 1179 }
1198 1180
1199 /** Sets the value of "background-image" */ 1181 /** Sets the value of "background-image" */
1200 void set backgroundImage(String value) { 1182 set backgroundImage(String value) {
1201 _setAll('backgroundImage', value); 1183 _setAll('backgroundImage', value);
1202 } 1184 }
1203 1185
1204 /** Sets the value of "background-position" */ 1186 /** Sets the value of "background-position" */
1205 void set backgroundPosition(String value) { 1187 set backgroundPosition(String value) {
1206 _setAll('backgroundPosition', value); 1188 _setAll('backgroundPosition', value);
1207 } 1189 }
1208 1190
1209 /** Sets the value of "background-repeat" */ 1191 /** Sets the value of "background-repeat" */
1210 void set backgroundRepeat(String value) { 1192 set backgroundRepeat(String value) {
1211 _setAll('backgroundRepeat', value); 1193 _setAll('backgroundRepeat', value);
1212 } 1194 }
1213 1195
1214 /** Sets the value of "border" */ 1196 /** Sets the value of "border" */
1215 void set border(String value) { 1197 set border(String value) {
1216 _setAll('border', value); 1198 _setAll('border', value);
1217 } 1199 }
1218 1200
1219 /** Sets the value of "border-bottom" */ 1201 /** Sets the value of "border-bottom" */
1220 void set borderBottom(String value) { 1202 set borderBottom(String value) {
1221 _setAll('borderBottom', value); 1203 _setAll('borderBottom', value);
1222 } 1204 }
1223 1205
1224 /** Sets the value of "border-bottom-color" */ 1206 /** Sets the value of "border-bottom-color" */
1225 void set borderBottomColor(String value) { 1207 set borderBottomColor(String value) {
1226 _setAll('borderBottomColor', value); 1208 _setAll('borderBottomColor', value);
1227 } 1209 }
1228 1210
1229 /** Sets the value of "border-bottom-style" */ 1211 /** Sets the value of "border-bottom-style" */
1230 void set borderBottomStyle(String value) { 1212 set borderBottomStyle(String value) {
1231 _setAll('borderBottomStyle', value); 1213 _setAll('borderBottomStyle', value);
1232 } 1214 }
1233 1215
1234 /** Sets the value of "border-bottom-width" */ 1216 /** Sets the value of "border-bottom-width" */
1235 void set borderBottomWidth(String value) { 1217 set borderBottomWidth(String value) {
1236 _setAll('borderBottomWidth', value); 1218 _setAll('borderBottomWidth', value);
1237 } 1219 }
1238 1220
1239 /** Sets the value of "border-collapse" */ 1221 /** Sets the value of "border-collapse" */
1240 void set borderCollapse(String value) { 1222 set borderCollapse(String value) {
1241 _setAll('borderCollapse', value); 1223 _setAll('borderCollapse', value);
1242 } 1224 }
1243 1225
1244 /** Sets the value of "border-color" */ 1226 /** Sets the value of "border-color" */
1245 void set borderColor(String value) { 1227 set borderColor(String value) {
1246 _setAll('borderColor', value); 1228 _setAll('borderColor', value);
1247 } 1229 }
1248 1230
1249 /** Sets the value of "border-left" */ 1231 /** Sets the value of "border-left" */
1250 void set borderLeft(String value) { 1232 set borderLeft(String value) {
1251 _setAll('borderLeft', value); 1233 _setAll('borderLeft', value);
1252 } 1234 }
1253 1235
1254 /** Sets the value of "border-left-color" */ 1236 /** Sets the value of "border-left-color" */
1255 void set borderLeftColor(String value) { 1237 set borderLeftColor(String value) {
1256 _setAll('borderLeftColor', value); 1238 _setAll('borderLeftColor', value);
1257 } 1239 }
1258 1240
1259 /** Sets the value of "border-left-style" */ 1241 /** Sets the value of "border-left-style" */
1260 void set borderLeftStyle(String value) { 1242 set borderLeftStyle(String value) {
1261 _setAll('borderLeftStyle', value); 1243 _setAll('borderLeftStyle', value);
1262 } 1244 }
1263 1245
1264 /** Sets the value of "border-left-width" */ 1246 /** Sets the value of "border-left-width" */
1265 void set borderLeftWidth(String value) { 1247 set borderLeftWidth(String value) {
1266 _setAll('borderLeftWidth', value); 1248 _setAll('borderLeftWidth', value);
1267 } 1249 }
1268 1250
1269 /** Sets the value of "border-right" */ 1251 /** Sets the value of "border-right" */
1270 void set borderRight(String value) { 1252 set borderRight(String value) {
1271 _setAll('borderRight', value); 1253 _setAll('borderRight', value);
1272 } 1254 }
1273 1255
1274 /** Sets the value of "border-right-color" */ 1256 /** Sets the value of "border-right-color" */
1275 void set borderRightColor(String value) { 1257 set borderRightColor(String value) {
1276 _setAll('borderRightColor', value); 1258 _setAll('borderRightColor', value);
1277 } 1259 }
1278 1260
1279 /** Sets the value of "border-right-style" */ 1261 /** Sets the value of "border-right-style" */
1280 void set borderRightStyle(String value) { 1262 set borderRightStyle(String value) {
1281 _setAll('borderRightStyle', value); 1263 _setAll('borderRightStyle', value);
1282 } 1264 }
1283 1265
1284 /** Sets the value of "border-right-width" */ 1266 /** Sets the value of "border-right-width" */
1285 void set borderRightWidth(String value) { 1267 set borderRightWidth(String value) {
1286 _setAll('borderRightWidth', value); 1268 _setAll('borderRightWidth', value);
1287 } 1269 }
1288 1270
1289 /** Sets the value of "border-spacing" */ 1271 /** Sets the value of "border-spacing" */
1290 void set borderSpacing(String value) { 1272 set borderSpacing(String value) {
1291 _setAll('borderSpacing', value); 1273 _setAll('borderSpacing', value);
1292 } 1274 }
1293 1275
1294 /** Sets the value of "border-style" */ 1276 /** Sets the value of "border-style" */
1295 void set borderStyle(String value) { 1277 set borderStyle(String value) {
1296 _setAll('borderStyle', value); 1278 _setAll('borderStyle', value);
1297 } 1279 }
1298 1280
1299 /** Sets the value of "border-top" */ 1281 /** Sets the value of "border-top" */
1300 void set borderTop(String value) { 1282 set borderTop(String value) {
1301 _setAll('borderTop', value); 1283 _setAll('borderTop', value);
1302 } 1284 }
1303 1285
1304 /** Sets the value of "border-top-color" */ 1286 /** Sets the value of "border-top-color" */
1305 void set borderTopColor(String value) { 1287 set borderTopColor(String value) {
1306 _setAll('borderTopColor', value); 1288 _setAll('borderTopColor', value);
1307 } 1289 }
1308 1290
1309 /** Sets the value of "border-top-style" */ 1291 /** Sets the value of "border-top-style" */
1310 void set borderTopStyle(String value) { 1292 set borderTopStyle(String value) {
1311 _setAll('borderTopStyle', value); 1293 _setAll('borderTopStyle', value);
1312 } 1294 }
1313 1295
1314 /** Sets the value of "border-top-width" */ 1296 /** Sets the value of "border-top-width" */
1315 void set borderTopWidth(String value) { 1297 set borderTopWidth(String value) {
1316 _setAll('borderTopWidth', value); 1298 _setAll('borderTopWidth', value);
1317 } 1299 }
1318 1300
1319 /** Sets the value of "border-width" */ 1301 /** Sets the value of "border-width" */
1320 void set borderWidth(String value) { 1302 set borderWidth(String value) {
1321 _setAll('borderWidth', value); 1303 _setAll('borderWidth', value);
1322 } 1304 }
1323 1305
1324 /** Sets the value of "bottom" */ 1306 /** Sets the value of "bottom" */
1325 void set bottom(String value) { 1307 set bottom(String value) {
1326 _setAll('bottom', value); 1308 _setAll('bottom', value);
1327 } 1309 }
1328 1310
1329 /** Sets the value of "caption-side" */ 1311 /** Sets the value of "caption-side" */
1330 void set captionSide(String value) { 1312 set captionSide(String value) {
1331 _setAll('captionSide', value); 1313 _setAll('captionSide', value);
1332 } 1314 }
1333 1315
1334 /** Sets the value of "clear" */ 1316 /** Sets the value of "clear" */
1335 void set clear(String value) { 1317 set clear(String value) {
1336 _setAll('clear', value); 1318 _setAll('clear', value);
1337 } 1319 }
1338 1320
1339 /** Sets the value of "clip" */ 1321 /** Sets the value of "clip" */
1340 void set clip(String value) { 1322 set clip(String value) {
1341 _setAll('clip', value); 1323 _setAll('clip', value);
1342 } 1324 }
1343 1325
1344 /** Sets the value of "color" */ 1326 /** Sets the value of "color" */
1345 void set color(String value) { 1327 set color(String value) {
1346 _setAll('color', value); 1328 _setAll('color', value);
1347 } 1329 }
1348 1330
1349 /** Sets the value of "content" */ 1331 /** Sets the value of "content" */
1350 void set content(String value) { 1332 set content(String value) {
1351 _setAll('content', value); 1333 _setAll('content', value);
1352 } 1334 }
1353 1335
1354 /** Sets the value of "cursor" */ 1336 /** Sets the value of "cursor" */
1355 void set cursor(String value) { 1337 set cursor(String value) {
1356 _setAll('cursor', value); 1338 _setAll('cursor', value);
1357 } 1339 }
1358 1340
1359 /** Sets the value of "direction" */ 1341 /** Sets the value of "direction" */
1360 void set direction(String value) { 1342 set direction(String value) {
1361 _setAll('direction', value); 1343 _setAll('direction', value);
1362 } 1344 }
1363 1345
1364 /** Sets the value of "display" */ 1346 /** Sets the value of "display" */
1365 void set display(String value) { 1347 set display(String value) {
1366 _setAll('display', value); 1348 _setAll('display', value);
1367 } 1349 }
1368 1350
1369 /** Sets the value of "empty-cells" */ 1351 /** Sets the value of "empty-cells" */
1370 void set emptyCells(String value) { 1352 set emptyCells(String value) {
1371 _setAll('emptyCells', value); 1353 _setAll('emptyCells', value);
1372 } 1354 }
1373 1355
1374 /** Sets the value of "font" */ 1356 /** Sets the value of "font" */
1375 void set font(String value) { 1357 set font(String value) {
1376 _setAll('font', value); 1358 _setAll('font', value);
1377 } 1359 }
1378 1360
1379 /** Sets the value of "font-family" */ 1361 /** Sets the value of "font-family" */
1380 void set fontFamily(String value) { 1362 set fontFamily(String value) {
1381 _setAll('fontFamily', value); 1363 _setAll('fontFamily', value);
1382 } 1364 }
1383 1365
1384 /** Sets the value of "font-size" */ 1366 /** Sets the value of "font-size" */
1385 void set fontSize(String value) { 1367 set fontSize(String value) {
1386 _setAll('fontSize', value); 1368 _setAll('fontSize', value);
1387 } 1369 }
1388 1370
1389 /** Sets the value of "font-style" */ 1371 /** Sets the value of "font-style" */
1390 void set fontStyle(String value) { 1372 set fontStyle(String value) {
1391 _setAll('fontStyle', value); 1373 _setAll('fontStyle', value);
1392 } 1374 }
1393 1375
1394 /** Sets the value of "font-variant" */ 1376 /** Sets the value of "font-variant" */
1395 void set fontVariant(String value) { 1377 set fontVariant(String value) {
1396 _setAll('fontVariant', value); 1378 _setAll('fontVariant', value);
1397 } 1379 }
1398 1380
1399 /** Sets the value of "font-weight" */ 1381 /** Sets the value of "font-weight" */
1400 void set fontWeight(String value) { 1382 set fontWeight(String value) {
1401 _setAll('fontWeight', value); 1383 _setAll('fontWeight', value);
1402 } 1384 }
1403 1385
1404 /** Sets the value of "height" */ 1386 /** Sets the value of "height" */
1405 void set height(String value) { 1387 set height(String value) {
1406 _setAll('height', value); 1388 _setAll('height', value);
1407 } 1389 }
1408 1390
1409 /** Sets the value of "left" */ 1391 /** Sets the value of "left" */
1410 void set left(String value) { 1392 set left(String value) {
1411 _setAll('left', value); 1393 _setAll('left', value);
1412 } 1394 }
1413 1395
1414 /** Sets the value of "letter-spacing" */ 1396 /** Sets the value of "letter-spacing" */
1415 void set letterSpacing(String value) { 1397 set letterSpacing(String value) {
1416 _setAll('letterSpacing', value); 1398 _setAll('letterSpacing', value);
1417 } 1399 }
1418 1400
1419 /** Sets the value of "line-height" */ 1401 /** Sets the value of "line-height" */
1420 void set lineHeight(String value) { 1402 set lineHeight(String value) {
1421 _setAll('lineHeight', value); 1403 _setAll('lineHeight', value);
1422 } 1404 }
1423 1405
1424 /** Sets the value of "list-style" */ 1406 /** Sets the value of "list-style" */
1425 void set listStyle(String value) { 1407 set listStyle(String value) {
1426 _setAll('listStyle', value); 1408 _setAll('listStyle', value);
1427 } 1409 }
1428 1410
1429 /** Sets the value of "list-style-image" */ 1411 /** Sets the value of "list-style-image" */
1430 void set listStyleImage(String value) { 1412 set listStyleImage(String value) {
1431 _setAll('listStyleImage', value); 1413 _setAll('listStyleImage', value);
1432 } 1414 }
1433 1415
1434 /** Sets the value of "list-style-position" */ 1416 /** Sets the value of "list-style-position" */
1435 void set listStylePosition(String value) { 1417 set listStylePosition(String value) {
1436 _setAll('listStylePosition', value); 1418 _setAll('listStylePosition', value);
1437 } 1419 }
1438 1420
1439 /** Sets the value of "list-style-type" */ 1421 /** Sets the value of "list-style-type" */
1440 void set listStyleType(String value) { 1422 set listStyleType(String value) {
1441 _setAll('listStyleType', value); 1423 _setAll('listStyleType', value);
1442 } 1424 }
1443 1425
1444 /** Sets the value of "margin" */ 1426 /** Sets the value of "margin" */
1445 void set margin(String value) { 1427 set margin(String value) {
1446 _setAll('margin', value); 1428 _setAll('margin', value);
1447 } 1429 }
1448 1430
1449 /** Sets the value of "margin-bottom" */ 1431 /** Sets the value of "margin-bottom" */
1450 void set marginBottom(String value) { 1432 set marginBottom(String value) {
1451 _setAll('marginBottom', value); 1433 _setAll('marginBottom', value);
1452 } 1434 }
1453 1435
1454 /** Sets the value of "margin-left" */ 1436 /** Sets the value of "margin-left" */
1455 void set marginLeft(String value) { 1437 set marginLeft(String value) {
1456 _setAll('marginLeft', value); 1438 _setAll('marginLeft', value);
1457 } 1439 }
1458 1440
1459 /** Sets the value of "margin-right" */ 1441 /** Sets the value of "margin-right" */
1460 void set marginRight(String value) { 1442 set marginRight(String value) {
1461 _setAll('marginRight', value); 1443 _setAll('marginRight', value);
1462 } 1444 }
1463 1445
1464 /** Sets the value of "margin-top" */ 1446 /** Sets the value of "margin-top" */
1465 void set marginTop(String value) { 1447 set marginTop(String value) {
1466 _setAll('marginTop', value); 1448 _setAll('marginTop', value);
1467 } 1449 }
1468 1450
1469 /** Sets the value of "max-height" */ 1451 /** Sets the value of "max-height" */
1470 void set maxHeight(String value) { 1452 set maxHeight(String value) {
1471 _setAll('maxHeight', value); 1453 _setAll('maxHeight', value);
1472 } 1454 }
1473 1455
1474 /** Sets the value of "max-width" */ 1456 /** Sets the value of "max-width" */
1475 void set maxWidth(String value) { 1457 set maxWidth(String value) {
1476 _setAll('maxWidth', value); 1458 _setAll('maxWidth', value);
1477 } 1459 }
1478 1460
1479 /** Sets the value of "min-height" */ 1461 /** Sets the value of "min-height" */
1480 void set minHeight(String value) { 1462 set minHeight(String value) {
1481 _setAll('minHeight', value); 1463 _setAll('minHeight', value);
1482 } 1464 }
1483 1465
1484 /** Sets the value of "min-width" */ 1466 /** Sets the value of "min-width" */
1485 void set minWidth(String value) { 1467 set minWidth(String value) {
1486 _setAll('minWidth', value); 1468 _setAll('minWidth', value);
1487 } 1469 }
1488 1470
1489 /** Sets the value of "outline" */ 1471 /** Sets the value of "outline" */
1490 void set outline(String value) { 1472 set outline(String value) {
1491 _setAll('outline', value); 1473 _setAll('outline', value);
1492 } 1474 }
1493 1475
1494 /** Sets the value of "outline-color" */ 1476 /** Sets the value of "outline-color" */
1495 void set outlineColor(String value) { 1477 set outlineColor(String value) {
1496 _setAll('outlineColor', value); 1478 _setAll('outlineColor', value);
1497 } 1479 }
1498 1480
1499 /** Sets the value of "outline-style" */ 1481 /** Sets the value of "outline-style" */
1500 void set outlineStyle(String value) { 1482 set outlineStyle(String value) {
1501 _setAll('outlineStyle', value); 1483 _setAll('outlineStyle', value);
1502 } 1484 }
1503 1485
1504 /** Sets the value of "outline-width" */ 1486 /** Sets the value of "outline-width" */
1505 void set outlineWidth(String value) { 1487 set outlineWidth(String value) {
1506 _setAll('outlineWidth', value); 1488 _setAll('outlineWidth', value);
1507 } 1489 }
1508 1490
1509 /** Sets the value of "overflow" */ 1491 /** Sets the value of "overflow" */
1510 void set overflow(String value) { 1492 set overflow(String value) {
1511 _setAll('overflow', value); 1493 _setAll('overflow', value);
1512 } 1494 }
1513 1495
1514 /** Sets the value of "padding" */ 1496 /** Sets the value of "padding" */
1515 void set padding(String value) { 1497 set padding(String value) {
1516 _setAll('padding', value); 1498 _setAll('padding', value);
1517 } 1499 }
1518 1500
1519 /** Sets the value of "padding-bottom" */ 1501 /** Sets the value of "padding-bottom" */
1520 void set paddingBottom(String value) { 1502 set paddingBottom(String value) {
1521 _setAll('paddingBottom', value); 1503 _setAll('paddingBottom', value);
1522 } 1504 }
1523 1505
1524 /** Sets the value of "padding-left" */ 1506 /** Sets the value of "padding-left" */
1525 void set paddingLeft(String value) { 1507 set paddingLeft(String value) {
1526 _setAll('paddingLeft', value); 1508 _setAll('paddingLeft', value);
1527 } 1509 }
1528 1510
1529 /** Sets the value of "padding-right" */ 1511 /** Sets the value of "padding-right" */
1530 void set paddingRight(String value) { 1512 set paddingRight(String value) {
1531 _setAll('paddingRight', value); 1513 _setAll('paddingRight', value);
1532 } 1514 }
1533 1515
1534 /** Sets the value of "padding-top" */ 1516 /** Sets the value of "padding-top" */
1535 void set paddingTop(String value) { 1517 set paddingTop(String value) {
1536 _setAll('paddingTop', value); 1518 _setAll('paddingTop', value);
1537 } 1519 }
1538 1520
1539 /** Sets the value of "page-break-after" */ 1521 /** Sets the value of "page-break-after" */
1540 void set pageBreakAfter(String value) { 1522 set pageBreakAfter(String value) {
1541 _setAll('pageBreakAfter', value); 1523 _setAll('pageBreakAfter', value);
1542 } 1524 }
1543 1525
1544 /** Sets the value of "page-break-before" */ 1526 /** Sets the value of "page-break-before" */
1545 void set pageBreakBefore(String value) { 1527 set pageBreakBefore(String value) {
1546 _setAll('pageBreakBefore', value); 1528 _setAll('pageBreakBefore', value);
1547 } 1529 }
1548 1530
1549 /** Sets the value of "page-break-inside" */ 1531 /** Sets the value of "page-break-inside" */
1550 void set pageBreakInside(String value) { 1532 set pageBreakInside(String value) {
1551 _setAll('pageBreakInside', value); 1533 _setAll('pageBreakInside', value);
1552 } 1534 }
1553 1535
1554 /** Sets the value of "position" */ 1536 /** Sets the value of "position" */
1555 void set position(String value) { 1537 set position(String value) {
1556 _setAll('position', value); 1538 _setAll('position', value);
1557 } 1539 }
1558 1540
1559 /** Sets the value of "quotes" */ 1541 /** Sets the value of "quotes" */
1560 void set quotes(String value) { 1542 set quotes(String value) {
1561 _setAll('quotes', value); 1543 _setAll('quotes', value);
1562 } 1544 }
1563 1545
1564 /** Sets the value of "right" */ 1546 /** Sets the value of "right" */
1565 void set right(String value) { 1547 set right(String value) {
1566 _setAll('right', value); 1548 _setAll('right', value);
1567 } 1549 }
1568 1550
1569 /** Sets the value of "table-layout" */ 1551 /** Sets the value of "table-layout" */
1570 void set tableLayout(String value) { 1552 set tableLayout(String value) {
1571 _setAll('tableLayout', value); 1553 _setAll('tableLayout', value);
1572 } 1554 }
1573 1555
1574 /** Sets the value of "text-align" */ 1556 /** Sets the value of "text-align" */
1575 void set textAlign(String value) { 1557 set textAlign(String value) {
1576 _setAll('textAlign', value); 1558 _setAll('textAlign', value);
1577 } 1559 }
1578 1560
1579 /** Sets the value of "text-decoration" */ 1561 /** Sets the value of "text-decoration" */
1580 void set textDecoration(String value) { 1562 set textDecoration(String value) {
1581 _setAll('textDecoration', value); 1563 _setAll('textDecoration', value);
1582 } 1564 }
1583 1565
1584 /** Sets the value of "text-indent" */ 1566 /** Sets the value of "text-indent" */
1585 void set textIndent(String value) { 1567 set textIndent(String value) {
1586 _setAll('textIndent', value); 1568 _setAll('textIndent', value);
1587 } 1569 }
1588 1570
1589 /** Sets the value of "text-transform" */ 1571 /** Sets the value of "text-transform" */
1590 void set textTransform(String value) { 1572 set textTransform(String value) {
1591 _setAll('textTransform', value); 1573 _setAll('textTransform', value);
1592 } 1574 }
1593 1575
1594 /** Sets the value of "top" */ 1576 /** Sets the value of "top" */
1595 void set top(String value) { 1577 set top(String value) {
1596 _setAll('top', value); 1578 _setAll('top', value);
1597 } 1579 }
1598 1580
1599 /** Sets the value of "unicode-bidi" */ 1581 /** Sets the value of "unicode-bidi" */
1600 void set unicodeBidi(String value) { 1582 set unicodeBidi(String value) {
1601 _setAll('unicodeBidi', value); 1583 _setAll('unicodeBidi', value);
1602 } 1584 }
1603 1585
1604 /** Sets the value of "vertical-align" */ 1586 /** Sets the value of "vertical-align" */
1605 void set verticalAlign(String value) { 1587 set verticalAlign(String value) {
1606 _setAll('verticalAlign', value); 1588 _setAll('verticalAlign', value);
1607 } 1589 }
1608 1590
1609 /** Sets the value of "visibility" */ 1591 /** Sets the value of "visibility" */
1610 void set visibility(String value) { 1592 set visibility(String value) {
1611 _setAll('visibility', value); 1593 _setAll('visibility', value);
1612 } 1594 }
1613 1595
1614 /** Sets the value of "white-space" */ 1596 /** Sets the value of "white-space" */
1615 void set whiteSpace(String value) { 1597 set whiteSpace(String value) {
1616 _setAll('whiteSpace', value); 1598 _setAll('whiteSpace', value);
1617 } 1599 }
1618 1600
1619 /** Sets the value of "width" */ 1601 /** Sets the value of "width" */
1620 void set width(String value) { 1602 set width(String value) {
1621 _setAll('width', value); 1603 _setAll('width', value);
1622 } 1604 }
1623 1605
1624 /** Sets the value of "word-spacing" */ 1606 /** Sets the value of "word-spacing" */
1625 void set wordSpacing(String value) { 1607 set wordSpacing(String value) {
1626 _setAll('wordSpacing', value); 1608 _setAll('wordSpacing', value);
1627 } 1609 }
1628 1610
1629 /** Sets the value of "z-index" */ 1611 /** Sets the value of "z-index" */
1630 void set zIndex(String value) { 1612 set zIndex(String value) {
1631 _setAll('zIndex', value); 1613 _setAll('zIndex', value);
1632 } 1614 }
1633 1615
1634 $endif 1616 $endif
1635 1617
1636 // Important note: CssStyleDeclarationSet does NOT implement every method 1618 // Important note: CssStyleDeclarationSet does NOT implement every method
1637 // available in CssStyleDeclaration. Some of the methods don't make so much 1619 // available in CssStyleDeclaration. Some of the methods don't make so much
1638 // sense in terms of having a resonable value to return when you're 1620 // sense in terms of having a resonable value to return when you're
1639 // considering a list of Elements. You will need to manually add any of the 1621 // considering a list of Elements. You will need to manually add any of the
1640 // items in the MEMBERS set if you want that functionality. 1622 // items in the MEMBERS set if you want that functionality.
(...skipping 15 matching lines...) Expand all
1656 String getPropertyValue(String propertyName); 1638 String getPropertyValue(String propertyName);
1657 void setProperty(String propertyName, String value, [String priority]); 1639 void setProperty(String propertyName, String value, [String priority]);
1658 $endif 1640 $endif
1659 $endif 1641 $endif
1660 1642
1661 /** Gets the value of "align-content" */ 1643 /** Gets the value of "align-content" */
1662 String get alignContent => 1644 String get alignContent =>
1663 getPropertyValue('align-content'); 1645 getPropertyValue('align-content');
1664 1646
1665 /** Sets the value of "align-content" */ 1647 /** Sets the value of "align-content" */
1666 void set alignContent(String value) { 1648 set alignContent(String value) {
1667 setProperty('align-content', value, ''); 1649 setProperty('align-content', value, '');
1668 } 1650 }
1669 1651
1670 /** Gets the value of "align-items" */ 1652 /** Gets the value of "align-items" */
1671 String get alignItems => 1653 String get alignItems =>
1672 getPropertyValue('align-items'); 1654 getPropertyValue('align-items');
1673 1655
1674 /** Sets the value of "align-items" */ 1656 /** Sets the value of "align-items" */
1675 void set alignItems(String value) { 1657 set alignItems(String value) {
1676 setProperty('align-items', value, ''); 1658 setProperty('align-items', value, '');
1677 } 1659 }
1678 1660
1679 /** Gets the value of "align-self" */ 1661 /** Gets the value of "align-self" */
1680 String get alignSelf => 1662 String get alignSelf =>
1681 getPropertyValue('align-self'); 1663 getPropertyValue('align-self');
1682 1664
1683 /** Sets the value of "align-self" */ 1665 /** Sets the value of "align-self" */
1684 void set alignSelf(String value) { 1666 set alignSelf(String value) {
1685 setProperty('align-self', value, ''); 1667 setProperty('align-self', value, '');
1686 } 1668 }
1687 1669
1688 /** Gets the value of "animation" */ 1670 /** Gets the value of "animation" */
1689 String get animation => 1671 String get animation =>
1690 getPropertyValue('animation'); 1672 getPropertyValue('animation');
1691 1673
1692 /** Sets the value of "animation" */ 1674 /** Sets the value of "animation" */
1693 void set animation(String value) { 1675 set animation(String value) {
1694 setProperty('animation', value, ''); 1676 setProperty('animation', value, '');
1695 } 1677 }
1696 1678
1697 /** Gets the value of "animation-delay" */ 1679 /** Gets the value of "animation-delay" */
1698 String get animationDelay => 1680 String get animationDelay =>
1699 getPropertyValue('animation-delay'); 1681 getPropertyValue('animation-delay');
1700 1682
1701 /** Sets the value of "animation-delay" */ 1683 /** Sets the value of "animation-delay" */
1702 void set animationDelay(String value) { 1684 set animationDelay(String value) {
1703 setProperty('animation-delay', value, ''); 1685 setProperty('animation-delay', value, '');
1704 } 1686 }
1705 1687
1706 /** Gets the value of "animation-direction" */ 1688 /** Gets the value of "animation-direction" */
1707 String get animationDirection => 1689 String get animationDirection =>
1708 getPropertyValue('animation-direction'); 1690 getPropertyValue('animation-direction');
1709 1691
1710 /** Sets the value of "animation-direction" */ 1692 /** Sets the value of "animation-direction" */
1711 void set animationDirection(String value) { 1693 set animationDirection(String value) {
1712 setProperty('animation-direction', value, ''); 1694 setProperty('animation-direction', value, '');
1713 } 1695 }
1714 1696
1715 /** Gets the value of "animation-duration" */ 1697 /** Gets the value of "animation-duration" */
1716 String get animationDuration => 1698 String get animationDuration =>
1717 getPropertyValue('animation-duration'); 1699 getPropertyValue('animation-duration');
1718 1700
1719 /** Sets the value of "animation-duration" */ 1701 /** Sets the value of "animation-duration" */
1720 void set animationDuration(String value) { 1702 set animationDuration(String value) {
1721 setProperty('animation-duration', value, ''); 1703 setProperty('animation-duration', value, '');
1722 } 1704 }
1723 1705
1724 /** Gets the value of "animation-fill-mode" */ 1706 /** Gets the value of "animation-fill-mode" */
1725 String get animationFillMode => 1707 String get animationFillMode =>
1726 getPropertyValue('animation-fill-mode'); 1708 getPropertyValue('animation-fill-mode');
1727 1709
1728 /** Sets the value of "animation-fill-mode" */ 1710 /** Sets the value of "animation-fill-mode" */
1729 void set animationFillMode(String value) { 1711 set animationFillMode(String value) {
1730 setProperty('animation-fill-mode', value, ''); 1712 setProperty('animation-fill-mode', value, '');
1731 } 1713 }
1732 1714
1733 /** Gets the value of "animation-iteration-count" */ 1715 /** Gets the value of "animation-iteration-count" */
1734 String get animationIterationCount => 1716 String get animationIterationCount =>
1735 getPropertyValue('animation-iteration-count'); 1717 getPropertyValue('animation-iteration-count');
1736 1718
1737 /** Sets the value of "animation-iteration-count" */ 1719 /** Sets the value of "animation-iteration-count" */
1738 void set animationIterationCount(String value) { 1720 set animationIterationCount(String value) {
1739 setProperty('animation-iteration-count', value, ''); 1721 setProperty('animation-iteration-count', value, '');
1740 } 1722 }
1741 1723
1742 /** Gets the value of "animation-name" */ 1724 /** Gets the value of "animation-name" */
1743 String get animationName => 1725 String get animationName =>
1744 getPropertyValue('animation-name'); 1726 getPropertyValue('animation-name');
1745 1727
1746 /** Sets the value of "animation-name" */ 1728 /** Sets the value of "animation-name" */
1747 void set animationName(String value) { 1729 set animationName(String value) {
1748 setProperty('animation-name', value, ''); 1730 setProperty('animation-name', value, '');
1749 } 1731 }
1750 1732
1751 /** Gets the value of "animation-play-state" */ 1733 /** Gets the value of "animation-play-state" */
1752 String get animationPlayState => 1734 String get animationPlayState =>
1753 getPropertyValue('animation-play-state'); 1735 getPropertyValue('animation-play-state');
1754 1736
1755 /** Sets the value of "animation-play-state" */ 1737 /** Sets the value of "animation-play-state" */
1756 void set animationPlayState(String value) { 1738 set animationPlayState(String value) {
1757 setProperty('animation-play-state', value, ''); 1739 setProperty('animation-play-state', value, '');
1758 } 1740 }
1759 1741
1760 /** Gets the value of "animation-timing-function" */ 1742 /** Gets the value of "animation-timing-function" */
1761 String get animationTimingFunction => 1743 String get animationTimingFunction =>
1762 getPropertyValue('animation-timing-function'); 1744 getPropertyValue('animation-timing-function');
1763 1745
1764 /** Sets the value of "animation-timing-function" */ 1746 /** Sets the value of "animation-timing-function" */
1765 void set animationTimingFunction(String value) { 1747 set animationTimingFunction(String value) {
1766 setProperty('animation-timing-function', value, ''); 1748 setProperty('animation-timing-function', value, '');
1767 } 1749 }
1768 1750
1769 /** Gets the value of "app-region" */ 1751 /** Gets the value of "app-region" */
1770 String get appRegion => 1752 String get appRegion =>
1771 getPropertyValue('app-region'); 1753 getPropertyValue('app-region');
1772 1754
1773 /** Sets the value of "app-region" */ 1755 /** Sets the value of "app-region" */
1774 void set appRegion(String value) { 1756 set appRegion(String value) {
1775 setProperty('app-region', value, ''); 1757 setProperty('app-region', value, '');
1776 } 1758 }
1777 1759
1778 /** Gets the value of "appearance" */ 1760 /** Gets the value of "appearance" */
1779 String get appearance => 1761 String get appearance =>
1780 getPropertyValue('appearance'); 1762 getPropertyValue('appearance');
1781 1763
1782 /** Sets the value of "appearance" */ 1764 /** Sets the value of "appearance" */
1783 void set appearance(String value) { 1765 set appearance(String value) {
1784 setProperty('appearance', value, ''); 1766 setProperty('appearance', value, '');
1785 } 1767 }
1786 1768
1787 /** Gets the value of "aspect-ratio" */ 1769 /** Gets the value of "aspect-ratio" */
1788 String get aspectRatio => 1770 String get aspectRatio =>
1789 getPropertyValue('aspect-ratio'); 1771 getPropertyValue('aspect-ratio');
1790 1772
1791 /** Sets the value of "aspect-ratio" */ 1773 /** Sets the value of "aspect-ratio" */
1792 void set aspectRatio(String value) { 1774 set aspectRatio(String value) {
1793 setProperty('aspect-ratio', value, ''); 1775 setProperty('aspect-ratio', value, '');
1794 } 1776 }
1795 1777
1796 /** Gets the value of "backface-visibility" */ 1778 /** Gets the value of "backface-visibility" */
1797 String get backfaceVisibility => 1779 String get backfaceVisibility =>
1798 getPropertyValue('backface-visibility'); 1780 getPropertyValue('backface-visibility');
1799 1781
1800 /** Sets the value of "backface-visibility" */ 1782 /** Sets the value of "backface-visibility" */
1801 void set backfaceVisibility(String value) { 1783 set backfaceVisibility(String value) {
1802 setProperty('backface-visibility', value, ''); 1784 setProperty('backface-visibility', value, '');
1803 } 1785 }
1804 1786
1805 /** Gets the value of "background" */ 1787 /** Gets the value of "background" */
1806 String get background => 1788 String get background =>
1807 getPropertyValue('background'); 1789 getPropertyValue('background');
1808 1790
1809 /** Sets the value of "background" */ 1791 /** Sets the value of "background" */
1810 void set background(String value) { 1792 set background(String value) {
1811 setProperty('background', value, ''); 1793 setProperty('background', value, '');
1812 } 1794 }
1813 1795
1814 /** Gets the value of "background-attachment" */ 1796 /** Gets the value of "background-attachment" */
1815 String get backgroundAttachment => 1797 String get backgroundAttachment =>
1816 getPropertyValue('background-attachment'); 1798 getPropertyValue('background-attachment');
1817 1799
1818 /** Sets the value of "background-attachment" */ 1800 /** Sets the value of "background-attachment" */
1819 void set backgroundAttachment(String value) { 1801 set backgroundAttachment(String value) {
1820 setProperty('background-attachment', value, ''); 1802 setProperty('background-attachment', value, '');
1821 } 1803 }
1822 1804
1823 /** Gets the value of "background-blend-mode" */ 1805 /** Gets the value of "background-blend-mode" */
1824 String get backgroundBlendMode => 1806 String get backgroundBlendMode =>
1825 getPropertyValue('background-blend-mode'); 1807 getPropertyValue('background-blend-mode');
1826 1808
1827 /** Sets the value of "background-blend-mode" */ 1809 /** Sets the value of "background-blend-mode" */
1828 void set backgroundBlendMode(String value) { 1810 set backgroundBlendMode(String value) {
1829 setProperty('background-blend-mode', value, ''); 1811 setProperty('background-blend-mode', value, '');
1830 } 1812 }
1831 1813
1832 /** Gets the value of "background-clip" */ 1814 /** Gets the value of "background-clip" */
1833 String get backgroundClip => 1815 String get backgroundClip =>
1834 getPropertyValue('background-clip'); 1816 getPropertyValue('background-clip');
1835 1817
1836 /** Sets the value of "background-clip" */ 1818 /** Sets the value of "background-clip" */
1837 void set backgroundClip(String value) { 1819 set backgroundClip(String value) {
1838 setProperty('background-clip', value, ''); 1820 setProperty('background-clip', value, '');
1839 } 1821 }
1840 1822
1841 /** Gets the value of "background-color" */ 1823 /** Gets the value of "background-color" */
1842 String get backgroundColor => 1824 String get backgroundColor =>
1843 getPropertyValue('background-color'); 1825 getPropertyValue('background-color');
1844 1826
1845 /** Sets the value of "background-color" */ 1827 /** Sets the value of "background-color" */
1846 void set backgroundColor(String value) { 1828 set backgroundColor(String value) {
1847 setProperty('background-color', value, ''); 1829 setProperty('background-color', value, '');
1848 } 1830 }
1849 1831
1850 /** Gets the value of "background-composite" */ 1832 /** Gets the value of "background-composite" */
1851 String get backgroundComposite => 1833 String get backgroundComposite =>
1852 getPropertyValue('background-composite'); 1834 getPropertyValue('background-composite');
1853 1835
1854 /** Sets the value of "background-composite" */ 1836 /** Sets the value of "background-composite" */
1855 void set backgroundComposite(String value) { 1837 set backgroundComposite(String value) {
1856 setProperty('background-composite', value, ''); 1838 setProperty('background-composite', value, '');
1857 } 1839 }
1858 1840
1859 /** Gets the value of "background-image" */ 1841 /** Gets the value of "background-image" */
1860 String get backgroundImage => 1842 String get backgroundImage =>
1861 getPropertyValue('background-image'); 1843 getPropertyValue('background-image');
1862 1844
1863 /** Sets the value of "background-image" */ 1845 /** Sets the value of "background-image" */
1864 void set backgroundImage(String value) { 1846 set backgroundImage(String value) {
1865 setProperty('background-image', value, ''); 1847 setProperty('background-image', value, '');
1866 } 1848 }
1867 1849
1868 /** Gets the value of "background-origin" */ 1850 /** Gets the value of "background-origin" */
1869 String get backgroundOrigin => 1851 String get backgroundOrigin =>
1870 getPropertyValue('background-origin'); 1852 getPropertyValue('background-origin');
1871 1853
1872 /** Sets the value of "background-origin" */ 1854 /** Sets the value of "background-origin" */
1873 void set backgroundOrigin(String value) { 1855 set backgroundOrigin(String value) {
1874 setProperty('background-origin', value, ''); 1856 setProperty('background-origin', value, '');
1875 } 1857 }
1876 1858
1877 /** Gets the value of "background-position" */ 1859 /** Gets the value of "background-position" */
1878 String get backgroundPosition => 1860 String get backgroundPosition =>
1879 getPropertyValue('background-position'); 1861 getPropertyValue('background-position');
1880 1862
1881 /** Sets the value of "background-position" */ 1863 /** Sets the value of "background-position" */
1882 void set backgroundPosition(String value) { 1864 set backgroundPosition(String value) {
1883 setProperty('background-position', value, ''); 1865 setProperty('background-position', value, '');
1884 } 1866 }
1885 1867
1886 /** Gets the value of "background-position-x" */ 1868 /** Gets the value of "background-position-x" */
1887 String get backgroundPositionX => 1869 String get backgroundPositionX =>
1888 getPropertyValue('background-position-x'); 1870 getPropertyValue('background-position-x');
1889 1871
1890 /** Sets the value of "background-position-x" */ 1872 /** Sets the value of "background-position-x" */
1891 void set backgroundPositionX(String value) { 1873 set backgroundPositionX(String value) {
1892 setProperty('background-position-x', value, ''); 1874 setProperty('background-position-x', value, '');
1893 } 1875 }
1894 1876
1895 /** Gets the value of "background-position-y" */ 1877 /** Gets the value of "background-position-y" */
1896 String get backgroundPositionY => 1878 String get backgroundPositionY =>
1897 getPropertyValue('background-position-y'); 1879 getPropertyValue('background-position-y');
1898 1880
1899 /** Sets the value of "background-position-y" */ 1881 /** Sets the value of "background-position-y" */
1900 void set backgroundPositionY(String value) { 1882 set backgroundPositionY(String value) {
1901 setProperty('background-position-y', value, ''); 1883 setProperty('background-position-y', value, '');
1902 } 1884 }
1903 1885
1904 /** Gets the value of "background-repeat" */ 1886 /** Gets the value of "background-repeat" */
1905 String get backgroundRepeat => 1887 String get backgroundRepeat =>
1906 getPropertyValue('background-repeat'); 1888 getPropertyValue('background-repeat');
1907 1889
1908 /** Sets the value of "background-repeat" */ 1890 /** Sets the value of "background-repeat" */
1909 void set backgroundRepeat(String value) { 1891 set backgroundRepeat(String value) {
1910 setProperty('background-repeat', value, ''); 1892 setProperty('background-repeat', value, '');
1911 } 1893 }
1912 1894
1913 /** Gets the value of "background-repeat-x" */ 1895 /** Gets the value of "background-repeat-x" */
1914 String get backgroundRepeatX => 1896 String get backgroundRepeatX =>
1915 getPropertyValue('background-repeat-x'); 1897 getPropertyValue('background-repeat-x');
1916 1898
1917 /** Sets the value of "background-repeat-x" */ 1899 /** Sets the value of "background-repeat-x" */
1918 void set backgroundRepeatX(String value) { 1900 set backgroundRepeatX(String value) {
1919 setProperty('background-repeat-x', value, ''); 1901 setProperty('background-repeat-x', value, '');
1920 } 1902 }
1921 1903
1922 /** Gets the value of "background-repeat-y" */ 1904 /** Gets the value of "background-repeat-y" */
1923 String get backgroundRepeatY => 1905 String get backgroundRepeatY =>
1924 getPropertyValue('background-repeat-y'); 1906 getPropertyValue('background-repeat-y');
1925 1907
1926 /** Sets the value of "background-repeat-y" */ 1908 /** Sets the value of "background-repeat-y" */
1927 void set backgroundRepeatY(String value) { 1909 set backgroundRepeatY(String value) {
1928 setProperty('background-repeat-y', value, ''); 1910 setProperty('background-repeat-y', value, '');
1929 } 1911 }
1930 1912
1931 /** Gets the value of "background-size" */ 1913 /** Gets the value of "background-size" */
1932 String get backgroundSize => 1914 String get backgroundSize =>
1933 getPropertyValue('background-size'); 1915 getPropertyValue('background-size');
1934 1916
1935 /** Sets the value of "background-size" */ 1917 /** Sets the value of "background-size" */
1936 void set backgroundSize(String value) { 1918 set backgroundSize(String value) {
1937 setProperty('background-size', value, ''); 1919 setProperty('background-size', value, '');
1938 } 1920 }
1939 1921
1940 /** Gets the value of "border" */ 1922 /** Gets the value of "border" */
1941 String get border => 1923 String get border =>
1942 getPropertyValue('border'); 1924 getPropertyValue('border');
1943 1925
1944 /** Sets the value of "border" */ 1926 /** Sets the value of "border" */
1945 void set border(String value) { 1927 set border(String value) {
1946 setProperty('border', value, ''); 1928 setProperty('border', value, '');
1947 } 1929 }
1948 1930
1949 /** Gets the value of "border-after" */ 1931 /** Gets the value of "border-after" */
1950 String get borderAfter => 1932 String get borderAfter =>
1951 getPropertyValue('border-after'); 1933 getPropertyValue('border-after');
1952 1934
1953 /** Sets the value of "border-after" */ 1935 /** Sets the value of "border-after" */
1954 void set borderAfter(String value) { 1936 set borderAfter(String value) {
1955 setProperty('border-after', value, ''); 1937 setProperty('border-after', value, '');
1956 } 1938 }
1957 1939
1958 /** Gets the value of "border-after-color" */ 1940 /** Gets the value of "border-after-color" */
1959 String get borderAfterColor => 1941 String get borderAfterColor =>
1960 getPropertyValue('border-after-color'); 1942 getPropertyValue('border-after-color');
1961 1943
1962 /** Sets the value of "border-after-color" */ 1944 /** Sets the value of "border-after-color" */
1963 void set borderAfterColor(String value) { 1945 set borderAfterColor(String value) {
1964 setProperty('border-after-color', value, ''); 1946 setProperty('border-after-color', value, '');
1965 } 1947 }
1966 1948
1967 /** Gets the value of "border-after-style" */ 1949 /** Gets the value of "border-after-style" */
1968 String get borderAfterStyle => 1950 String get borderAfterStyle =>
1969 getPropertyValue('border-after-style'); 1951 getPropertyValue('border-after-style');
1970 1952
1971 /** Sets the value of "border-after-style" */ 1953 /** Sets the value of "border-after-style" */
1972 void set borderAfterStyle(String value) { 1954 set borderAfterStyle(String value) {
1973 setProperty('border-after-style', value, ''); 1955 setProperty('border-after-style', value, '');
1974 } 1956 }
1975 1957
1976 /** Gets the value of "border-after-width" */ 1958 /** Gets the value of "border-after-width" */
1977 String get borderAfterWidth => 1959 String get borderAfterWidth =>
1978 getPropertyValue('border-after-width'); 1960 getPropertyValue('border-after-width');
1979 1961
1980 /** Sets the value of "border-after-width" */ 1962 /** Sets the value of "border-after-width" */
1981 void set borderAfterWidth(String value) { 1963 set borderAfterWidth(String value) {
1982 setProperty('border-after-width', value, ''); 1964 setProperty('border-after-width', value, '');
1983 } 1965 }
1984 1966
1985 /** Gets the value of "border-before" */ 1967 /** Gets the value of "border-before" */
1986 String get borderBefore => 1968 String get borderBefore =>
1987 getPropertyValue('border-before'); 1969 getPropertyValue('border-before');
1988 1970
1989 /** Sets the value of "border-before" */ 1971 /** Sets the value of "border-before" */
1990 void set borderBefore(String value) { 1972 set borderBefore(String value) {
1991 setProperty('border-before', value, ''); 1973 setProperty('border-before', value, '');
1992 } 1974 }
1993 1975
1994 /** Gets the value of "border-before-color" */ 1976 /** Gets the value of "border-before-color" */
1995 String get borderBeforeColor => 1977 String get borderBeforeColor =>
1996 getPropertyValue('border-before-color'); 1978 getPropertyValue('border-before-color');
1997 1979
1998 /** Sets the value of "border-before-color" */ 1980 /** Sets the value of "border-before-color" */
1999 void set borderBeforeColor(String value) { 1981 set borderBeforeColor(String value) {
2000 setProperty('border-before-color', value, ''); 1982 setProperty('border-before-color', value, '');
2001 } 1983 }
2002 1984
2003 /** Gets the value of "border-before-style" */ 1985 /** Gets the value of "border-before-style" */
2004 String get borderBeforeStyle => 1986 String get borderBeforeStyle =>
2005 getPropertyValue('border-before-style'); 1987 getPropertyValue('border-before-style');
2006 1988
2007 /** Sets the value of "border-before-style" */ 1989 /** Sets the value of "border-before-style" */
2008 void set borderBeforeStyle(String value) { 1990 set borderBeforeStyle(String value) {
2009 setProperty('border-before-style', value, ''); 1991 setProperty('border-before-style', value, '');
2010 } 1992 }
2011 1993
2012 /** Gets the value of "border-before-width" */ 1994 /** Gets the value of "border-before-width" */
2013 String get borderBeforeWidth => 1995 String get borderBeforeWidth =>
2014 getPropertyValue('border-before-width'); 1996 getPropertyValue('border-before-width');
2015 1997
2016 /** Sets the value of "border-before-width" */ 1998 /** Sets the value of "border-before-width" */
2017 void set borderBeforeWidth(String value) { 1999 set borderBeforeWidth(String value) {
2018 setProperty('border-before-width', value, ''); 2000 setProperty('border-before-width', value, '');
2019 } 2001 }
2020 2002
2021 /** Gets the value of "border-bottom" */ 2003 /** Gets the value of "border-bottom" */
2022 String get borderBottom => 2004 String get borderBottom =>
2023 getPropertyValue('border-bottom'); 2005 getPropertyValue('border-bottom');
2024 2006
2025 /** Sets the value of "border-bottom" */ 2007 /** Sets the value of "border-bottom" */
2026 void set borderBottom(String value) { 2008 set borderBottom(String value) {
2027 setProperty('border-bottom', value, ''); 2009 setProperty('border-bottom', value, '');
2028 } 2010 }
2029 2011
2030 /** Gets the value of "border-bottom-color" */ 2012 /** Gets the value of "border-bottom-color" */
2031 String get borderBottomColor => 2013 String get borderBottomColor =>
2032 getPropertyValue('border-bottom-color'); 2014 getPropertyValue('border-bottom-color');
2033 2015
2034 /** Sets the value of "border-bottom-color" */ 2016 /** Sets the value of "border-bottom-color" */
2035 void set borderBottomColor(String value) { 2017 set borderBottomColor(String value) {
2036 setProperty('border-bottom-color', value, ''); 2018 setProperty('border-bottom-color', value, '');
2037 } 2019 }
2038 2020
2039 /** Gets the value of "border-bottom-left-radius" */ 2021 /** Gets the value of "border-bottom-left-radius" */
2040 String get borderBottomLeftRadius => 2022 String get borderBottomLeftRadius =>
2041 getPropertyValue('border-bottom-left-radius'); 2023 getPropertyValue('border-bottom-left-radius');
2042 2024
2043 /** Sets the value of "border-bottom-left-radius" */ 2025 /** Sets the value of "border-bottom-left-radius" */
2044 void set borderBottomLeftRadius(String value) { 2026 set borderBottomLeftRadius(String value) {
2045 setProperty('border-bottom-left-radius', value, ''); 2027 setProperty('border-bottom-left-radius', value, '');
2046 } 2028 }
2047 2029
2048 /** Gets the value of "border-bottom-right-radius" */ 2030 /** Gets the value of "border-bottom-right-radius" */
2049 String get borderBottomRightRadius => 2031 String get borderBottomRightRadius =>
2050 getPropertyValue('border-bottom-right-radius'); 2032 getPropertyValue('border-bottom-right-radius');
2051 2033
2052 /** Sets the value of "border-bottom-right-radius" */ 2034 /** Sets the value of "border-bottom-right-radius" */
2053 void set borderBottomRightRadius(String value) { 2035 set borderBottomRightRadius(String value) {
2054 setProperty('border-bottom-right-radius', value, ''); 2036 setProperty('border-bottom-right-radius', value, '');
2055 } 2037 }
2056 2038
2057 /** Gets the value of "border-bottom-style" */ 2039 /** Gets the value of "border-bottom-style" */
2058 String get borderBottomStyle => 2040 String get borderBottomStyle =>
2059 getPropertyValue('border-bottom-style'); 2041 getPropertyValue('border-bottom-style');
2060 2042
2061 /** Sets the value of "border-bottom-style" */ 2043 /** Sets the value of "border-bottom-style" */
2062 void set borderBottomStyle(String value) { 2044 set borderBottomStyle(String value) {
2063 setProperty('border-bottom-style', value, ''); 2045 setProperty('border-bottom-style', value, '');
2064 } 2046 }
2065 2047
2066 /** Gets the value of "border-bottom-width" */ 2048 /** Gets the value of "border-bottom-width" */
2067 String get borderBottomWidth => 2049 String get borderBottomWidth =>
2068 getPropertyValue('border-bottom-width'); 2050 getPropertyValue('border-bottom-width');
2069 2051
2070 /** Sets the value of "border-bottom-width" */ 2052 /** Sets the value of "border-bottom-width" */
2071 void set borderBottomWidth(String value) { 2053 set borderBottomWidth(String value) {
2072 setProperty('border-bottom-width', value, ''); 2054 setProperty('border-bottom-width', value, '');
2073 } 2055 }
2074 2056
2075 /** Gets the value of "border-collapse" */ 2057 /** Gets the value of "border-collapse" */
2076 String get borderCollapse => 2058 String get borderCollapse =>
2077 getPropertyValue('border-collapse'); 2059 getPropertyValue('border-collapse');
2078 2060
2079 /** Sets the value of "border-collapse" */ 2061 /** Sets the value of "border-collapse" */
2080 void set borderCollapse(String value) { 2062 set borderCollapse(String value) {
2081 setProperty('border-collapse', value, ''); 2063 setProperty('border-collapse', value, '');
2082 } 2064 }
2083 2065
2084 /** Gets the value of "border-color" */ 2066 /** Gets the value of "border-color" */
2085 String get borderColor => 2067 String get borderColor =>
2086 getPropertyValue('border-color'); 2068 getPropertyValue('border-color');
2087 2069
2088 /** Sets the value of "border-color" */ 2070 /** Sets the value of "border-color" */
2089 void set borderColor(String value) { 2071 set borderColor(String value) {
2090 setProperty('border-color', value, ''); 2072 setProperty('border-color', value, '');
2091 } 2073 }
2092 2074
2093 /** Gets the value of "border-end" */ 2075 /** Gets the value of "border-end" */
2094 String get borderEnd => 2076 String get borderEnd =>
2095 getPropertyValue('border-end'); 2077 getPropertyValue('border-end');
2096 2078
2097 /** Sets the value of "border-end" */ 2079 /** Sets the value of "border-end" */
2098 void set borderEnd(String value) { 2080 set borderEnd(String value) {
2099 setProperty('border-end', value, ''); 2081 setProperty('border-end', value, '');
2100 } 2082 }
2101 2083
2102 /** Gets the value of "border-end-color" */ 2084 /** Gets the value of "border-end-color" */
2103 String get borderEndColor => 2085 String get borderEndColor =>
2104 getPropertyValue('border-end-color'); 2086 getPropertyValue('border-end-color');
2105 2087
2106 /** Sets the value of "border-end-color" */ 2088 /** Sets the value of "border-end-color" */
2107 void set borderEndColor(String value) { 2089 set borderEndColor(String value) {
2108 setProperty('border-end-color', value, ''); 2090 setProperty('border-end-color', value, '');
2109 } 2091 }
2110 2092
2111 /** Gets the value of "border-end-style" */ 2093 /** Gets the value of "border-end-style" */
2112 String get borderEndStyle => 2094 String get borderEndStyle =>
2113 getPropertyValue('border-end-style'); 2095 getPropertyValue('border-end-style');
2114 2096
2115 /** Sets the value of "border-end-style" */ 2097 /** Sets the value of "border-end-style" */
2116 void set borderEndStyle(String value) { 2098 set borderEndStyle(String value) {
2117 setProperty('border-end-style', value, ''); 2099 setProperty('border-end-style', value, '');
2118 } 2100 }
2119 2101
2120 /** Gets the value of "border-end-width" */ 2102 /** Gets the value of "border-end-width" */
2121 String get borderEndWidth => 2103 String get borderEndWidth =>
2122 getPropertyValue('border-end-width'); 2104 getPropertyValue('border-end-width');
2123 2105
2124 /** Sets the value of "border-end-width" */ 2106 /** Sets the value of "border-end-width" */
2125 void set borderEndWidth(String value) { 2107 set borderEndWidth(String value) {
2126 setProperty('border-end-width', value, ''); 2108 setProperty('border-end-width', value, '');
2127 } 2109 }
2128 2110
2129 /** Gets the value of "border-fit" */ 2111 /** Gets the value of "border-fit" */
2130 String get borderFit => 2112 String get borderFit =>
2131 getPropertyValue('border-fit'); 2113 getPropertyValue('border-fit');
2132 2114
2133 /** Sets the value of "border-fit" */ 2115 /** Sets the value of "border-fit" */
2134 void set borderFit(String value) { 2116 set borderFit(String value) {
2135 setProperty('border-fit', value, ''); 2117 setProperty('border-fit', value, '');
2136 } 2118 }
2137 2119
2138 /** Gets the value of "border-horizontal-spacing" */ 2120 /** Gets the value of "border-horizontal-spacing" */
2139 String get borderHorizontalSpacing => 2121 String get borderHorizontalSpacing =>
2140 getPropertyValue('border-horizontal-spacing'); 2122 getPropertyValue('border-horizontal-spacing');
2141 2123
2142 /** Sets the value of "border-horizontal-spacing" */ 2124 /** Sets the value of "border-horizontal-spacing" */
2143 void set borderHorizontalSpacing(String value) { 2125 set borderHorizontalSpacing(String value) {
2144 setProperty('border-horizontal-spacing', value, ''); 2126 setProperty('border-horizontal-spacing', value, '');
2145 } 2127 }
2146 2128
2147 /** Gets the value of "border-image" */ 2129 /** Gets the value of "border-image" */
2148 String get borderImage => 2130 String get borderImage =>
2149 getPropertyValue('border-image'); 2131 getPropertyValue('border-image');
2150 2132
2151 /** Sets the value of "border-image" */ 2133 /** Sets the value of "border-image" */
2152 void set borderImage(String value) { 2134 set borderImage(String value) {
2153 setProperty('border-image', value, ''); 2135 setProperty('border-image', value, '');
2154 } 2136 }
2155 2137
2156 /** Gets the value of "border-image-outset" */ 2138 /** Gets the value of "border-image-outset" */
2157 String get borderImageOutset => 2139 String get borderImageOutset =>
2158 getPropertyValue('border-image-outset'); 2140 getPropertyValue('border-image-outset');
2159 2141
2160 /** Sets the value of "border-image-outset" */ 2142 /** Sets the value of "border-image-outset" */
2161 void set borderImageOutset(String value) { 2143 set borderImageOutset(String value) {
2162 setProperty('border-image-outset', value, ''); 2144 setProperty('border-image-outset', value, '');
2163 } 2145 }
2164 2146
2165 /** Gets the value of "border-image-repeat" */ 2147 /** Gets the value of "border-image-repeat" */
2166 String get borderImageRepeat => 2148 String get borderImageRepeat =>
2167 getPropertyValue('border-image-repeat'); 2149 getPropertyValue('border-image-repeat');
2168 2150
2169 /** Sets the value of "border-image-repeat" */ 2151 /** Sets the value of "border-image-repeat" */
2170 void set borderImageRepeat(String value) { 2152 set borderImageRepeat(String value) {
2171 setProperty('border-image-repeat', value, ''); 2153 setProperty('border-image-repeat', value, '');
2172 } 2154 }
2173 2155
2174 /** Gets the value of "border-image-slice" */ 2156 /** Gets the value of "border-image-slice" */
2175 String get borderImageSlice => 2157 String get borderImageSlice =>
2176 getPropertyValue('border-image-slice'); 2158 getPropertyValue('border-image-slice');
2177 2159
2178 /** Sets the value of "border-image-slice" */ 2160 /** Sets the value of "border-image-slice" */
2179 void set borderImageSlice(String value) { 2161 set borderImageSlice(String value) {
2180 setProperty('border-image-slice', value, ''); 2162 setProperty('border-image-slice', value, '');
2181 } 2163 }
2182 2164
2183 /** Gets the value of "border-image-source" */ 2165 /** Gets the value of "border-image-source" */
2184 String get borderImageSource => 2166 String get borderImageSource =>
2185 getPropertyValue('border-image-source'); 2167 getPropertyValue('border-image-source');
2186 2168
2187 /** Sets the value of "border-image-source" */ 2169 /** Sets the value of "border-image-source" */
2188 void set borderImageSource(String value) { 2170 set borderImageSource(String value) {
2189 setProperty('border-image-source', value, ''); 2171 setProperty('border-image-source', value, '');
2190 } 2172 }
2191 2173
2192 /** Gets the value of "border-image-width" */ 2174 /** Gets the value of "border-image-width" */
2193 String get borderImageWidth => 2175 String get borderImageWidth =>
2194 getPropertyValue('border-image-width'); 2176 getPropertyValue('border-image-width');
2195 2177
2196 /** Sets the value of "border-image-width" */ 2178 /** Sets the value of "border-image-width" */
2197 void set borderImageWidth(String value) { 2179 set borderImageWidth(String value) {
2198 setProperty('border-image-width', value, ''); 2180 setProperty('border-image-width', value, '');
2199 } 2181 }
2200 2182
2201 /** Gets the value of "border-left" */ 2183 /** Gets the value of "border-left" */
2202 String get borderLeft => 2184 String get borderLeft =>
2203 getPropertyValue('border-left'); 2185 getPropertyValue('border-left');
2204 2186
2205 /** Sets the value of "border-left" */ 2187 /** Sets the value of "border-left" */
2206 void set borderLeft(String value) { 2188 set borderLeft(String value) {
2207 setProperty('border-left', value, ''); 2189 setProperty('border-left', value, '');
2208 } 2190 }
2209 2191
2210 /** Gets the value of "border-left-color" */ 2192 /** Gets the value of "border-left-color" */
2211 String get borderLeftColor => 2193 String get borderLeftColor =>
2212 getPropertyValue('border-left-color'); 2194 getPropertyValue('border-left-color');
2213 2195
2214 /** Sets the value of "border-left-color" */ 2196 /** Sets the value of "border-left-color" */
2215 void set borderLeftColor(String value) { 2197 set borderLeftColor(String value) {
2216 setProperty('border-left-color', value, ''); 2198 setProperty('border-left-color', value, '');
2217 } 2199 }
2218 2200
2219 /** Gets the value of "border-left-style" */ 2201 /** Gets the value of "border-left-style" */
2220 String get borderLeftStyle => 2202 String get borderLeftStyle =>
2221 getPropertyValue('border-left-style'); 2203 getPropertyValue('border-left-style');
2222 2204
2223 /** Sets the value of "border-left-style" */ 2205 /** Sets the value of "border-left-style" */
2224 void set borderLeftStyle(String value) { 2206 set borderLeftStyle(String value) {
2225 setProperty('border-left-style', value, ''); 2207 setProperty('border-left-style', value, '');
2226 } 2208 }
2227 2209
2228 /** Gets the value of "border-left-width" */ 2210 /** Gets the value of "border-left-width" */
2229 String get borderLeftWidth => 2211 String get borderLeftWidth =>
2230 getPropertyValue('border-left-width'); 2212 getPropertyValue('border-left-width');
2231 2213
2232 /** Sets the value of "border-left-width" */ 2214 /** Sets the value of "border-left-width" */
2233 void set borderLeftWidth(String value) { 2215 set borderLeftWidth(String value) {
2234 setProperty('border-left-width', value, ''); 2216 setProperty('border-left-width', value, '');
2235 } 2217 }
2236 2218
2237 /** Gets the value of "border-radius" */ 2219 /** Gets the value of "border-radius" */
2238 String get borderRadius => 2220 String get borderRadius =>
2239 getPropertyValue('border-radius'); 2221 getPropertyValue('border-radius');
2240 2222
2241 /** Sets the value of "border-radius" */ 2223 /** Sets the value of "border-radius" */
2242 void set borderRadius(String value) { 2224 set borderRadius(String value) {
2243 setProperty('border-radius', value, ''); 2225 setProperty('border-radius', value, '');
2244 } 2226 }
2245 2227
2246 /** Gets the value of "border-right" */ 2228 /** Gets the value of "border-right" */
2247 String get borderRight => 2229 String get borderRight =>
2248 getPropertyValue('border-right'); 2230 getPropertyValue('border-right');
2249 2231
2250 /** Sets the value of "border-right" */ 2232 /** Sets the value of "border-right" */
2251 void set borderRight(String value) { 2233 set borderRight(String value) {
2252 setProperty('border-right', value, ''); 2234 setProperty('border-right', value, '');
2253 } 2235 }
2254 2236
2255 /** Gets the value of "border-right-color" */ 2237 /** Gets the value of "border-right-color" */
2256 String get borderRightColor => 2238 String get borderRightColor =>
2257 getPropertyValue('border-right-color'); 2239 getPropertyValue('border-right-color');
2258 2240
2259 /** Sets the value of "border-right-color" */ 2241 /** Sets the value of "border-right-color" */
2260 void set borderRightColor(String value) { 2242 set borderRightColor(String value) {
2261 setProperty('border-right-color', value, ''); 2243 setProperty('border-right-color', value, '');
2262 } 2244 }
2263 2245
2264 /** Gets the value of "border-right-style" */ 2246 /** Gets the value of "border-right-style" */
2265 String get borderRightStyle => 2247 String get borderRightStyle =>
2266 getPropertyValue('border-right-style'); 2248 getPropertyValue('border-right-style');
2267 2249
2268 /** Sets the value of "border-right-style" */ 2250 /** Sets the value of "border-right-style" */
2269 void set borderRightStyle(String value) { 2251 set borderRightStyle(String value) {
2270 setProperty('border-right-style', value, ''); 2252 setProperty('border-right-style', value, '');
2271 } 2253 }
2272 2254
2273 /** Gets the value of "border-right-width" */ 2255 /** Gets the value of "border-right-width" */
2274 String get borderRightWidth => 2256 String get borderRightWidth =>
2275 getPropertyValue('border-right-width'); 2257 getPropertyValue('border-right-width');
2276 2258
2277 /** Sets the value of "border-right-width" */ 2259 /** Sets the value of "border-right-width" */
2278 void set borderRightWidth(String value) { 2260 set borderRightWidth(String value) {
2279 setProperty('border-right-width', value, ''); 2261 setProperty('border-right-width', value, '');
2280 } 2262 }
2281 2263
2282 /** Gets the value of "border-spacing" */ 2264 /** Gets the value of "border-spacing" */
2283 String get borderSpacing => 2265 String get borderSpacing =>
2284 getPropertyValue('border-spacing'); 2266 getPropertyValue('border-spacing');
2285 2267
2286 /** Sets the value of "border-spacing" */ 2268 /** Sets the value of "border-spacing" */
2287 void set borderSpacing(String value) { 2269 set borderSpacing(String value) {
2288 setProperty('border-spacing', value, ''); 2270 setProperty('border-spacing', value, '');
2289 } 2271 }
2290 2272
2291 /** Gets the value of "border-start" */ 2273 /** Gets the value of "border-start" */
2292 String get borderStart => 2274 String get borderStart =>
2293 getPropertyValue('border-start'); 2275 getPropertyValue('border-start');
2294 2276
2295 /** Sets the value of "border-start" */ 2277 /** Sets the value of "border-start" */
2296 void set borderStart(String value) { 2278 set borderStart(String value) {
2297 setProperty('border-start', value, ''); 2279 setProperty('border-start', value, '');
2298 } 2280 }
2299 2281
2300 /** Gets the value of "border-start-color" */ 2282 /** Gets the value of "border-start-color" */
2301 String get borderStartColor => 2283 String get borderStartColor =>
2302 getPropertyValue('border-start-color'); 2284 getPropertyValue('border-start-color');
2303 2285
2304 /** Sets the value of "border-start-color" */ 2286 /** Sets the value of "border-start-color" */
2305 void set borderStartColor(String value) { 2287 set borderStartColor(String value) {
2306 setProperty('border-start-color', value, ''); 2288 setProperty('border-start-color', value, '');
2307 } 2289 }
2308 2290
2309 /** Gets the value of "border-start-style" */ 2291 /** Gets the value of "border-start-style" */
2310 String get borderStartStyle => 2292 String get borderStartStyle =>
2311 getPropertyValue('border-start-style'); 2293 getPropertyValue('border-start-style');
2312 2294
2313 /** Sets the value of "border-start-style" */ 2295 /** Sets the value of "border-start-style" */
2314 void set borderStartStyle(String value) { 2296 set borderStartStyle(String value) {
2315 setProperty('border-start-style', value, ''); 2297 setProperty('border-start-style', value, '');
2316 } 2298 }
2317 2299
2318 /** Gets the value of "border-start-width" */ 2300 /** Gets the value of "border-start-width" */
2319 String get borderStartWidth => 2301 String get borderStartWidth =>
2320 getPropertyValue('border-start-width'); 2302 getPropertyValue('border-start-width');
2321 2303
2322 /** Sets the value of "border-start-width" */ 2304 /** Sets the value of "border-start-width" */
2323 void set borderStartWidth(String value) { 2305 set borderStartWidth(String value) {
2324 setProperty('border-start-width', value, ''); 2306 setProperty('border-start-width', value, '');
2325 } 2307 }
2326 2308
2327 /** Gets the value of "border-style" */ 2309 /** Gets the value of "border-style" */
2328 String get borderStyle => 2310 String get borderStyle =>
2329 getPropertyValue('border-style'); 2311 getPropertyValue('border-style');
2330 2312
2331 /** Sets the value of "border-style" */ 2313 /** Sets the value of "border-style" */
2332 void set borderStyle(String value) { 2314 set borderStyle(String value) {
2333 setProperty('border-style', value, ''); 2315 setProperty('border-style', value, '');
2334 } 2316 }
2335 2317
2336 /** Gets the value of "border-top" */ 2318 /** Gets the value of "border-top" */
2337 String get borderTop => 2319 String get borderTop =>
2338 getPropertyValue('border-top'); 2320 getPropertyValue('border-top');
2339 2321
2340 /** Sets the value of "border-top" */ 2322 /** Sets the value of "border-top" */
2341 void set borderTop(String value) { 2323 set borderTop(String value) {
2342 setProperty('border-top', value, ''); 2324 setProperty('border-top', value, '');
2343 } 2325 }
2344 2326
2345 /** Gets the value of "border-top-color" */ 2327 /** Gets the value of "border-top-color" */
2346 String get borderTopColor => 2328 String get borderTopColor =>
2347 getPropertyValue('border-top-color'); 2329 getPropertyValue('border-top-color');
2348 2330
2349 /** Sets the value of "border-top-color" */ 2331 /** Sets the value of "border-top-color" */
2350 void set borderTopColor(String value) { 2332 set borderTopColor(String value) {
2351 setProperty('border-top-color', value, ''); 2333 setProperty('border-top-color', value, '');
2352 } 2334 }
2353 2335
2354 /** Gets the value of "border-top-left-radius" */ 2336 /** Gets the value of "border-top-left-radius" */
2355 String get borderTopLeftRadius => 2337 String get borderTopLeftRadius =>
2356 getPropertyValue('border-top-left-radius'); 2338 getPropertyValue('border-top-left-radius');
2357 2339
2358 /** Sets the value of "border-top-left-radius" */ 2340 /** Sets the value of "border-top-left-radius" */
2359 void set borderTopLeftRadius(String value) { 2341 set borderTopLeftRadius(String value) {
2360 setProperty('border-top-left-radius', value, ''); 2342 setProperty('border-top-left-radius', value, '');
2361 } 2343 }
2362 2344
2363 /** Gets the value of "border-top-right-radius" */ 2345 /** Gets the value of "border-top-right-radius" */
2364 String get borderTopRightRadius => 2346 String get borderTopRightRadius =>
2365 getPropertyValue('border-top-right-radius'); 2347 getPropertyValue('border-top-right-radius');
2366 2348
2367 /** Sets the value of "border-top-right-radius" */ 2349 /** Sets the value of "border-top-right-radius" */
2368 void set borderTopRightRadius(String value) { 2350 set borderTopRightRadius(String value) {
2369 setProperty('border-top-right-radius', value, ''); 2351 setProperty('border-top-right-radius', value, '');
2370 } 2352 }
2371 2353
2372 /** Gets the value of "border-top-style" */ 2354 /** Gets the value of "border-top-style" */
2373 String get borderTopStyle => 2355 String get borderTopStyle =>
2374 getPropertyValue('border-top-style'); 2356 getPropertyValue('border-top-style');
2375 2357
2376 /** Sets the value of "border-top-style" */ 2358 /** Sets the value of "border-top-style" */
2377 void set borderTopStyle(String value) { 2359 set borderTopStyle(String value) {
2378 setProperty('border-top-style', value, ''); 2360 setProperty('border-top-style', value, '');
2379 } 2361 }
2380 2362
2381 /** Gets the value of "border-top-width" */ 2363 /** Gets the value of "border-top-width" */
2382 String get borderTopWidth => 2364 String get borderTopWidth =>
2383 getPropertyValue('border-top-width'); 2365 getPropertyValue('border-top-width');
2384 2366
2385 /** Sets the value of "border-top-width" */ 2367 /** Sets the value of "border-top-width" */
2386 void set borderTopWidth(String value) { 2368 set borderTopWidth(String value) {
2387 setProperty('border-top-width', value, ''); 2369 setProperty('border-top-width', value, '');
2388 } 2370 }
2389 2371
2390 /** Gets the value of "border-vertical-spacing" */ 2372 /** Gets the value of "border-vertical-spacing" */
2391 String get borderVerticalSpacing => 2373 String get borderVerticalSpacing =>
2392 getPropertyValue('border-vertical-spacing'); 2374 getPropertyValue('border-vertical-spacing');
2393 2375
2394 /** Sets the value of "border-vertical-spacing" */ 2376 /** Sets the value of "border-vertical-spacing" */
2395 void set borderVerticalSpacing(String value) { 2377 set borderVerticalSpacing(String value) {
2396 setProperty('border-vertical-spacing', value, ''); 2378 setProperty('border-vertical-spacing', value, '');
2397 } 2379 }
2398 2380
2399 /** Gets the value of "border-width" */ 2381 /** Gets the value of "border-width" */
2400 String get borderWidth => 2382 String get borderWidth =>
2401 getPropertyValue('border-width'); 2383 getPropertyValue('border-width');
2402 2384
2403 /** Sets the value of "border-width" */ 2385 /** Sets the value of "border-width" */
2404 void set borderWidth(String value) { 2386 set borderWidth(String value) {
2405 setProperty('border-width', value, ''); 2387 setProperty('border-width', value, '');
2406 } 2388 }
2407 2389
2408 /** Gets the value of "bottom" */ 2390 /** Gets the value of "bottom" */
2409 String get bottom => 2391 String get bottom =>
2410 getPropertyValue('bottom'); 2392 getPropertyValue('bottom');
2411 2393
2412 /** Sets the value of "bottom" */ 2394 /** Sets the value of "bottom" */
2413 void set bottom(String value) { 2395 set bottom(String value) {
2414 setProperty('bottom', value, ''); 2396 setProperty('bottom', value, '');
2415 } 2397 }
2416 2398
2417 /** Gets the value of "box-align" */ 2399 /** Gets the value of "box-align" */
2418 String get boxAlign => 2400 String get boxAlign =>
2419 getPropertyValue('box-align'); 2401 getPropertyValue('box-align');
2420 2402
2421 /** Sets the value of "box-align" */ 2403 /** Sets the value of "box-align" */
2422 void set boxAlign(String value) { 2404 set boxAlign(String value) {
2423 setProperty('box-align', value, ''); 2405 setProperty('box-align', value, '');
2424 } 2406 }
2425 2407
2426 /** Gets the value of "box-decoration-break" */ 2408 /** Gets the value of "box-decoration-break" */
2427 String get boxDecorationBreak => 2409 String get boxDecorationBreak =>
2428 getPropertyValue('box-decoration-break'); 2410 getPropertyValue('box-decoration-break');
2429 2411
2430 /** Sets the value of "box-decoration-break" */ 2412 /** Sets the value of "box-decoration-break" */
2431 void set boxDecorationBreak(String value) { 2413 set boxDecorationBreak(String value) {
2432 setProperty('box-decoration-break', value, ''); 2414 setProperty('box-decoration-break', value, '');
2433 } 2415 }
2434 2416
2435 /** Gets the value of "box-direction" */ 2417 /** Gets the value of "box-direction" */
2436 String get boxDirection => 2418 String get boxDirection =>
2437 getPropertyValue('box-direction'); 2419 getPropertyValue('box-direction');
2438 2420
2439 /** Sets the value of "box-direction" */ 2421 /** Sets the value of "box-direction" */
2440 void set boxDirection(String value) { 2422 set boxDirection(String value) {
2441 setProperty('box-direction', value, ''); 2423 setProperty('box-direction', value, '');
2442 } 2424 }
2443 2425
2444 /** Gets the value of "box-flex" */ 2426 /** Gets the value of "box-flex" */
2445 String get boxFlex => 2427 String get boxFlex =>
2446 getPropertyValue('box-flex'); 2428 getPropertyValue('box-flex');
2447 2429
2448 /** Sets the value of "box-flex" */ 2430 /** Sets the value of "box-flex" */
2449 void set boxFlex(String value) { 2431 set boxFlex(String value) {
2450 setProperty('box-flex', value, ''); 2432 setProperty('box-flex', value, '');
2451 } 2433 }
2452 2434
2453 /** Gets the value of "box-flex-group" */ 2435 /** Gets the value of "box-flex-group" */
2454 String get boxFlexGroup => 2436 String get boxFlexGroup =>
2455 getPropertyValue('box-flex-group'); 2437 getPropertyValue('box-flex-group');
2456 2438
2457 /** Sets the value of "box-flex-group" */ 2439 /** Sets the value of "box-flex-group" */
2458 void set boxFlexGroup(String value) { 2440 set boxFlexGroup(String value) {
2459 setProperty('box-flex-group', value, ''); 2441 setProperty('box-flex-group', value, '');
2460 } 2442 }
2461 2443
2462 /** Gets the value of "box-lines" */ 2444 /** Gets the value of "box-lines" */
2463 String get boxLines => 2445 String get boxLines =>
2464 getPropertyValue('box-lines'); 2446 getPropertyValue('box-lines');
2465 2447
2466 /** Sets the value of "box-lines" */ 2448 /** Sets the value of "box-lines" */
2467 void set boxLines(String value) { 2449 set boxLines(String value) {
2468 setProperty('box-lines', value, ''); 2450 setProperty('box-lines', value, '');
2469 } 2451 }
2470 2452
2471 /** Gets the value of "box-ordinal-group" */ 2453 /** Gets the value of "box-ordinal-group" */
2472 String get boxOrdinalGroup => 2454 String get boxOrdinalGroup =>
2473 getPropertyValue('box-ordinal-group'); 2455 getPropertyValue('box-ordinal-group');
2474 2456
2475 /** Sets the value of "box-ordinal-group" */ 2457 /** Sets the value of "box-ordinal-group" */
2476 void set boxOrdinalGroup(String value) { 2458 set boxOrdinalGroup(String value) {
2477 setProperty('box-ordinal-group', value, ''); 2459 setProperty('box-ordinal-group', value, '');
2478 } 2460 }
2479 2461
2480 /** Gets the value of "box-orient" */ 2462 /** Gets the value of "box-orient" */
2481 String get boxOrient => 2463 String get boxOrient =>
2482 getPropertyValue('box-orient'); 2464 getPropertyValue('box-orient');
2483 2465
2484 /** Sets the value of "box-orient" */ 2466 /** Sets the value of "box-orient" */
2485 void set boxOrient(String value) { 2467 set boxOrient(String value) {
2486 setProperty('box-orient', value, ''); 2468 setProperty('box-orient', value, '');
2487 } 2469 }
2488 2470
2489 /** Gets the value of "box-pack" */ 2471 /** Gets the value of "box-pack" */
2490 String get boxPack => 2472 String get boxPack =>
2491 getPropertyValue('box-pack'); 2473 getPropertyValue('box-pack');
2492 2474
2493 /** Sets the value of "box-pack" */ 2475 /** Sets the value of "box-pack" */
2494 void set boxPack(String value) { 2476 set boxPack(String value) {
2495 setProperty('box-pack', value, ''); 2477 setProperty('box-pack', value, '');
2496 } 2478 }
2497 2479
2498 /** Gets the value of "box-reflect" */ 2480 /** Gets the value of "box-reflect" */
2499 String get boxReflect => 2481 String get boxReflect =>
2500 getPropertyValue('box-reflect'); 2482 getPropertyValue('box-reflect');
2501 2483
2502 /** Sets the value of "box-reflect" */ 2484 /** Sets the value of "box-reflect" */
2503 void set boxReflect(String value) { 2485 set boxReflect(String value) {
2504 setProperty('box-reflect', value, ''); 2486 setProperty('box-reflect', value, '');
2505 } 2487 }
2506 2488
2507 /** Gets the value of "box-shadow" */ 2489 /** Gets the value of "box-shadow" */
2508 String get boxShadow => 2490 String get boxShadow =>
2509 getPropertyValue('box-shadow'); 2491 getPropertyValue('box-shadow');
2510 2492
2511 /** Sets the value of "box-shadow" */ 2493 /** Sets the value of "box-shadow" */
2512 void set boxShadow(String value) { 2494 set boxShadow(String value) {
2513 setProperty('box-shadow', value, ''); 2495 setProperty('box-shadow', value, '');
2514 } 2496 }
2515 2497
2516 /** Gets the value of "box-sizing" */ 2498 /** Gets the value of "box-sizing" */
2517 String get boxSizing => 2499 String get boxSizing =>
2518 getPropertyValue('box-sizing'); 2500 getPropertyValue('box-sizing');
2519 2501
2520 /** Sets the value of "box-sizing" */ 2502 /** Sets the value of "box-sizing" */
2521 void set boxSizing(String value) { 2503 set boxSizing(String value) {
2522 setProperty('box-sizing', value, ''); 2504 setProperty('box-sizing', value, '');
2523 } 2505 }
2524 2506
2525 /** Gets the value of "caption-side" */ 2507 /** Gets the value of "caption-side" */
2526 String get captionSide => 2508 String get captionSide =>
2527 getPropertyValue('caption-side'); 2509 getPropertyValue('caption-side');
2528 2510
2529 /** Sets the value of "caption-side" */ 2511 /** Sets the value of "caption-side" */
2530 void set captionSide(String value) { 2512 set captionSide(String value) {
2531 setProperty('caption-side', value, ''); 2513 setProperty('caption-side', value, '');
2532 } 2514 }
2533 2515
2534 /** Gets the value of "clear" */ 2516 /** Gets the value of "clear" */
2535 String get clear => 2517 String get clear =>
2536 getPropertyValue('clear'); 2518 getPropertyValue('clear');
2537 2519
2538 /** Sets the value of "clear" */ 2520 /** Sets the value of "clear" */
2539 void set clear(String value) { 2521 set clear(String value) {
2540 setProperty('clear', value, ''); 2522 setProperty('clear', value, '');
2541 } 2523 }
2542 2524
2543 /** Gets the value of "clip" */ 2525 /** Gets the value of "clip" */
2544 String get clip => 2526 String get clip =>
2545 getPropertyValue('clip'); 2527 getPropertyValue('clip');
2546 2528
2547 /** Sets the value of "clip" */ 2529 /** Sets the value of "clip" */
2548 void set clip(String value) { 2530 set clip(String value) {
2549 setProperty('clip', value, ''); 2531 setProperty('clip', value, '');
2550 } 2532 }
2551 2533
2552 /** Gets the value of "clip-path" */ 2534 /** Gets the value of "clip-path" */
2553 String get clipPath => 2535 String get clipPath =>
2554 getPropertyValue('clip-path'); 2536 getPropertyValue('clip-path');
2555 2537
2556 /** Sets the value of "clip-path" */ 2538 /** Sets the value of "clip-path" */
2557 void set clipPath(String value) { 2539 set clipPath(String value) {
2558 setProperty('clip-path', value, ''); 2540 setProperty('clip-path', value, '');
2559 } 2541 }
2560 2542
2561 /** Gets the value of "color" */ 2543 /** Gets the value of "color" */
2562 String get color => 2544 String get color =>
2563 getPropertyValue('color'); 2545 getPropertyValue('color');
2564 2546
2565 /** Sets the value of "color" */ 2547 /** Sets the value of "color" */
2566 void set color(String value) { 2548 set color(String value) {
2567 setProperty('color', value, ''); 2549 setProperty('color', value, '');
2568 } 2550 }
2569 2551
2570 /** Gets the value of "column-break-after" */ 2552 /** Gets the value of "column-break-after" */
2571 String get columnBreakAfter => 2553 String get columnBreakAfter =>
2572 getPropertyValue('column-break-after'); 2554 getPropertyValue('column-break-after');
2573 2555
2574 /** Sets the value of "column-break-after" */ 2556 /** Sets the value of "column-break-after" */
2575 void set columnBreakAfter(String value) { 2557 set columnBreakAfter(String value) {
2576 setProperty('column-break-after', value, ''); 2558 setProperty('column-break-after', value, '');
2577 } 2559 }
2578 2560
2579 /** Gets the value of "column-break-before" */ 2561 /** Gets the value of "column-break-before" */
2580 String get columnBreakBefore => 2562 String get columnBreakBefore =>
2581 getPropertyValue('column-break-before'); 2563 getPropertyValue('column-break-before');
2582 2564
2583 /** Sets the value of "column-break-before" */ 2565 /** Sets the value of "column-break-before" */
2584 void set columnBreakBefore(String value) { 2566 set columnBreakBefore(String value) {
2585 setProperty('column-break-before', value, ''); 2567 setProperty('column-break-before', value, '');
2586 } 2568 }
2587 2569
2588 /** Gets the value of "column-break-inside" */ 2570 /** Gets the value of "column-break-inside" */
2589 String get columnBreakInside => 2571 String get columnBreakInside =>
2590 getPropertyValue('column-break-inside'); 2572 getPropertyValue('column-break-inside');
2591 2573
2592 /** Sets the value of "column-break-inside" */ 2574 /** Sets the value of "column-break-inside" */
2593 void set columnBreakInside(String value) { 2575 set columnBreakInside(String value) {
2594 setProperty('column-break-inside', value, ''); 2576 setProperty('column-break-inside', value, '');
2595 } 2577 }
2596 2578
2597 /** Gets the value of "column-count" */ 2579 /** Gets the value of "column-count" */
2598 String get columnCount => 2580 String get columnCount =>
2599 getPropertyValue('column-count'); 2581 getPropertyValue('column-count');
2600 2582
2601 /** Sets the value of "column-count" */ 2583 /** Sets the value of "column-count" */
2602 void set columnCount(String value) { 2584 set columnCount(String value) {
2603 setProperty('column-count', value, ''); 2585 setProperty('column-count', value, '');
2604 } 2586 }
2605 2587
2606 /** Gets the value of "column-fill" */ 2588 /** Gets the value of "column-fill" */
2607 String get columnFill => 2589 String get columnFill =>
2608 getPropertyValue('column-fill'); 2590 getPropertyValue('column-fill');
2609 2591
2610 /** Sets the value of "column-fill" */ 2592 /** Sets the value of "column-fill" */
2611 void set columnFill(String value) { 2593 set columnFill(String value) {
2612 setProperty('column-fill', value, ''); 2594 setProperty('column-fill', value, '');
2613 } 2595 }
2614 2596
2615 /** Gets the value of "column-gap" */ 2597 /** Gets the value of "column-gap" */
2616 String get columnGap => 2598 String get columnGap =>
2617 getPropertyValue('column-gap'); 2599 getPropertyValue('column-gap');
2618 2600
2619 /** Sets the value of "column-gap" */ 2601 /** Sets the value of "column-gap" */
2620 void set columnGap(String value) { 2602 set columnGap(String value) {
2621 setProperty('column-gap', value, ''); 2603 setProperty('column-gap', value, '');
2622 } 2604 }
2623 2605
2624 /** Gets the value of "column-rule" */ 2606 /** Gets the value of "column-rule" */
2625 String get columnRule => 2607 String get columnRule =>
2626 getPropertyValue('column-rule'); 2608 getPropertyValue('column-rule');
2627 2609
2628 /** Sets the value of "column-rule" */ 2610 /** Sets the value of "column-rule" */
2629 void set columnRule(String value) { 2611 set columnRule(String value) {
2630 setProperty('column-rule', value, ''); 2612 setProperty('column-rule', value, '');
2631 } 2613 }
2632 2614
2633 /** Gets the value of "column-rule-color" */ 2615 /** Gets the value of "column-rule-color" */
2634 String get columnRuleColor => 2616 String get columnRuleColor =>
2635 getPropertyValue('column-rule-color'); 2617 getPropertyValue('column-rule-color');
2636 2618
2637 /** Sets the value of "column-rule-color" */ 2619 /** Sets the value of "column-rule-color" */
2638 void set columnRuleColor(String value) { 2620 set columnRuleColor(String value) {
2639 setProperty('column-rule-color', value, ''); 2621 setProperty('column-rule-color', value, '');
2640 } 2622 }
2641 2623
2642 /** Gets the value of "column-rule-style" */ 2624 /** Gets the value of "column-rule-style" */
2643 String get columnRuleStyle => 2625 String get columnRuleStyle =>
2644 getPropertyValue('column-rule-style'); 2626 getPropertyValue('column-rule-style');
2645 2627
2646 /** Sets the value of "column-rule-style" */ 2628 /** Sets the value of "column-rule-style" */
2647 void set columnRuleStyle(String value) { 2629 set columnRuleStyle(String value) {
2648 setProperty('column-rule-style', value, ''); 2630 setProperty('column-rule-style', value, '');
2649 } 2631 }
2650 2632
2651 /** Gets the value of "column-rule-width" */ 2633 /** Gets the value of "column-rule-width" */
2652 String get columnRuleWidth => 2634 String get columnRuleWidth =>
2653 getPropertyValue('column-rule-width'); 2635 getPropertyValue('column-rule-width');
2654 2636
2655 /** Sets the value of "column-rule-width" */ 2637 /** Sets the value of "column-rule-width" */
2656 void set columnRuleWidth(String value) { 2638 set columnRuleWidth(String value) {
2657 setProperty('column-rule-width', value, ''); 2639 setProperty('column-rule-width', value, '');
2658 } 2640 }
2659 2641
2660 /** Gets the value of "column-span" */ 2642 /** Gets the value of "column-span" */
2661 String get columnSpan => 2643 String get columnSpan =>
2662 getPropertyValue('column-span'); 2644 getPropertyValue('column-span');
2663 2645
2664 /** Sets the value of "column-span" */ 2646 /** Sets the value of "column-span" */
2665 void set columnSpan(String value) { 2647 set columnSpan(String value) {
2666 setProperty('column-span', value, ''); 2648 setProperty('column-span', value, '');
2667 } 2649 }
2668 2650
2669 /** Gets the value of "column-width" */ 2651 /** Gets the value of "column-width" */
2670 String get columnWidth => 2652 String get columnWidth =>
2671 getPropertyValue('column-width'); 2653 getPropertyValue('column-width');
2672 2654
2673 /** Sets the value of "column-width" */ 2655 /** Sets the value of "column-width" */
2674 void set columnWidth(String value) { 2656 set columnWidth(String value) {
2675 setProperty('column-width', value, ''); 2657 setProperty('column-width', value, '');
2676 } 2658 }
2677 2659
2678 /** Gets the value of "columns" */ 2660 /** Gets the value of "columns" */
2679 String get columns => 2661 String get columns =>
2680 getPropertyValue('columns'); 2662 getPropertyValue('columns');
2681 2663
2682 /** Sets the value of "columns" */ 2664 /** Sets the value of "columns" */
2683 void set columns(String value) { 2665 set columns(String value) {
2684 setProperty('columns', value, ''); 2666 setProperty('columns', value, '');
2685 } 2667 }
2686 2668
2687 /** Gets the value of "content" */ 2669 /** Gets the value of "content" */
2688 String get content => 2670 String get content =>
2689 getPropertyValue('content'); 2671 getPropertyValue('content');
2690 2672
2691 /** Sets the value of "content" */ 2673 /** Sets the value of "content" */
2692 void set content(String value) { 2674 set content(String value) {
2693 setProperty('content', value, ''); 2675 setProperty('content', value, '');
2694 } 2676 }
2695 2677
2696 /** Gets the value of "counter-increment" */ 2678 /** Gets the value of "counter-increment" */
2697 String get counterIncrement => 2679 String get counterIncrement =>
2698 getPropertyValue('counter-increment'); 2680 getPropertyValue('counter-increment');
2699 2681
2700 /** Sets the value of "counter-increment" */ 2682 /** Sets the value of "counter-increment" */
2701 void set counterIncrement(String value) { 2683 set counterIncrement(String value) {
2702 setProperty('counter-increment', value, ''); 2684 setProperty('counter-increment', value, '');
2703 } 2685 }
2704 2686
2705 /** Gets the value of "counter-reset" */ 2687 /** Gets the value of "counter-reset" */
2706 String get counterReset => 2688 String get counterReset =>
2707 getPropertyValue('counter-reset'); 2689 getPropertyValue('counter-reset');
2708 2690
2709 /** Sets the value of "counter-reset" */ 2691 /** Sets the value of "counter-reset" */
2710 void set counterReset(String value) { 2692 set counterReset(String value) {
2711 setProperty('counter-reset', value, ''); 2693 setProperty('counter-reset', value, '');
2712 } 2694 }
2713 2695
2714 /** Gets the value of "cursor" */ 2696 /** Gets the value of "cursor" */
2715 String get cursor => 2697 String get cursor =>
2716 getPropertyValue('cursor'); 2698 getPropertyValue('cursor');
2717 2699
2718 /** Sets the value of "cursor" */ 2700 /** Sets the value of "cursor" */
2719 void set cursor(String value) { 2701 set cursor(String value) {
2720 setProperty('cursor', value, ''); 2702 setProperty('cursor', value, '');
2721 } 2703 }
2722 2704
2723 /** Gets the value of "direction" */ 2705 /** Gets the value of "direction" */
2724 String get direction => 2706 String get direction =>
2725 getPropertyValue('direction'); 2707 getPropertyValue('direction');
2726 2708
2727 /** Sets the value of "direction" */ 2709 /** Sets the value of "direction" */
2728 void set direction(String value) { 2710 set direction(String value) {
2729 setProperty('direction', value, ''); 2711 setProperty('direction', value, '');
2730 } 2712 }
2731 2713
2732 /** Gets the value of "display" */ 2714 /** Gets the value of "display" */
2733 String get display => 2715 String get display =>
2734 getPropertyValue('display'); 2716 getPropertyValue('display');
2735 2717
2736 /** Sets the value of "display" */ 2718 /** Sets the value of "display" */
2737 void set display(String value) { 2719 set display(String value) {
2738 setProperty('display', value, ''); 2720 setProperty('display', value, '');
2739 } 2721 }
2740 2722
2741 /** Gets the value of "empty-cells" */ 2723 /** Gets the value of "empty-cells" */
2742 String get emptyCells => 2724 String get emptyCells =>
2743 getPropertyValue('empty-cells'); 2725 getPropertyValue('empty-cells');
2744 2726
2745 /** Sets the value of "empty-cells" */ 2727 /** Sets the value of "empty-cells" */
2746 void set emptyCells(String value) { 2728 set emptyCells(String value) {
2747 setProperty('empty-cells', value, ''); 2729 setProperty('empty-cells', value, '');
2748 } 2730 }
2749 2731
2750 /** Gets the value of "filter" */ 2732 /** Gets the value of "filter" */
2751 String get filter => 2733 String get filter =>
2752 getPropertyValue('filter'); 2734 getPropertyValue('filter');
2753 2735
2754 /** Sets the value of "filter" */ 2736 /** Sets the value of "filter" */
2755 void set filter(String value) { 2737 set filter(String value) {
2756 setProperty('filter', value, ''); 2738 setProperty('filter', value, '');
2757 } 2739 }
2758 2740
2759 /** Gets the value of "flex" */ 2741 /** Gets the value of "flex" */
2760 String get flex => 2742 String get flex =>
2761 getPropertyValue('flex'); 2743 getPropertyValue('flex');
2762 2744
2763 /** Sets the value of "flex" */ 2745 /** Sets the value of "flex" */
2764 void set flex(String value) { 2746 set flex(String value) {
2765 setProperty('flex', value, ''); 2747 setProperty('flex', value, '');
2766 } 2748 }
2767 2749
2768 /** Gets the value of "flex-basis" */ 2750 /** Gets the value of "flex-basis" */
2769 String get flexBasis => 2751 String get flexBasis =>
2770 getPropertyValue('flex-basis'); 2752 getPropertyValue('flex-basis');
2771 2753
2772 /** Sets the value of "flex-basis" */ 2754 /** Sets the value of "flex-basis" */
2773 void set flexBasis(String value) { 2755 set flexBasis(String value) {
2774 setProperty('flex-basis', value, ''); 2756 setProperty('flex-basis', value, '');
2775 } 2757 }
2776 2758
2777 /** Gets the value of "flex-direction" */ 2759 /** Gets the value of "flex-direction" */
2778 String get flexDirection => 2760 String get flexDirection =>
2779 getPropertyValue('flex-direction'); 2761 getPropertyValue('flex-direction');
2780 2762
2781 /** Sets the value of "flex-direction" */ 2763 /** Sets the value of "flex-direction" */
2782 void set flexDirection(String value) { 2764 set flexDirection(String value) {
2783 setProperty('flex-direction', value, ''); 2765 setProperty('flex-direction', value, '');
2784 } 2766 }
2785 2767
2786 /** Gets the value of "flex-flow" */ 2768 /** Gets the value of "flex-flow" */
2787 String get flexFlow => 2769 String get flexFlow =>
2788 getPropertyValue('flex-flow'); 2770 getPropertyValue('flex-flow');
2789 2771
2790 /** Sets the value of "flex-flow" */ 2772 /** Sets the value of "flex-flow" */
2791 void set flexFlow(String value) { 2773 set flexFlow(String value) {
2792 setProperty('flex-flow', value, ''); 2774 setProperty('flex-flow', value, '');
2793 } 2775 }
2794 2776
2795 /** Gets the value of "flex-grow" */ 2777 /** Gets the value of "flex-grow" */
2796 String get flexGrow => 2778 String get flexGrow =>
2797 getPropertyValue('flex-grow'); 2779 getPropertyValue('flex-grow');
2798 2780
2799 /** Sets the value of "flex-grow" */ 2781 /** Sets the value of "flex-grow" */
2800 void set flexGrow(String value) { 2782 set flexGrow(String value) {
2801 setProperty('flex-grow', value, ''); 2783 setProperty('flex-grow', value, '');
2802 } 2784 }
2803 2785
2804 /** Gets the value of "flex-shrink" */ 2786 /** Gets the value of "flex-shrink" */
2805 String get flexShrink => 2787 String get flexShrink =>
2806 getPropertyValue('flex-shrink'); 2788 getPropertyValue('flex-shrink');
2807 2789
2808 /** Sets the value of "flex-shrink" */ 2790 /** Sets the value of "flex-shrink" */
2809 void set flexShrink(String value) { 2791 set flexShrink(String value) {
2810 setProperty('flex-shrink', value, ''); 2792 setProperty('flex-shrink', value, '');
2811 } 2793 }
2812 2794
2813 /** Gets the value of "flex-wrap" */ 2795 /** Gets the value of "flex-wrap" */
2814 String get flexWrap => 2796 String get flexWrap =>
2815 getPropertyValue('flex-wrap'); 2797 getPropertyValue('flex-wrap');
2816 2798
2817 /** Sets the value of "flex-wrap" */ 2799 /** Sets the value of "flex-wrap" */
2818 void set flexWrap(String value) { 2800 set flexWrap(String value) {
2819 setProperty('flex-wrap', value, ''); 2801 setProperty('flex-wrap', value, '');
2820 } 2802 }
2821 2803
2822 /** Gets the value of "float" */ 2804 /** Gets the value of "float" */
2823 String get float => 2805 String get float =>
2824 getPropertyValue('float'); 2806 getPropertyValue('float');
2825 2807
2826 /** Sets the value of "float" */ 2808 /** Sets the value of "float" */
2827 void set float(String value) { 2809 set float(String value) {
2828 setProperty('float', value, ''); 2810 setProperty('float', value, '');
2829 } 2811 }
2830 2812
2831 /** Gets the value of "font" */ 2813 /** Gets the value of "font" */
2832 String get font => 2814 String get font =>
2833 getPropertyValue('font'); 2815 getPropertyValue('font');
2834 2816
2835 /** Sets the value of "font" */ 2817 /** Sets the value of "font" */
2836 void set font(String value) { 2818 set font(String value) {
2837 setProperty('font', value, ''); 2819 setProperty('font', value, '');
2838 } 2820 }
2839 2821
2840 /** Gets the value of "font-family" */ 2822 /** Gets the value of "font-family" */
2841 String get fontFamily => 2823 String get fontFamily =>
2842 getPropertyValue('font-family'); 2824 getPropertyValue('font-family');
2843 2825
2844 /** Sets the value of "font-family" */ 2826 /** Sets the value of "font-family" */
2845 void set fontFamily(String value) { 2827 set fontFamily(String value) {
2846 setProperty('font-family', value, ''); 2828 setProperty('font-family', value, '');
2847 } 2829 }
2848 2830
2849 /** Gets the value of "font-feature-settings" */ 2831 /** Gets the value of "font-feature-settings" */
2850 String get fontFeatureSettings => 2832 String get fontFeatureSettings =>
2851 getPropertyValue('font-feature-settings'); 2833 getPropertyValue('font-feature-settings');
2852 2834
2853 /** Sets the value of "font-feature-settings" */ 2835 /** Sets the value of "font-feature-settings" */
2854 void set fontFeatureSettings(String value) { 2836 set fontFeatureSettings(String value) {
2855 setProperty('font-feature-settings', value, ''); 2837 setProperty('font-feature-settings', value, '');
2856 } 2838 }
2857 2839
2858 /** Gets the value of "font-kerning" */ 2840 /** Gets the value of "font-kerning" */
2859 String get fontKerning => 2841 String get fontKerning =>
2860 getPropertyValue('font-kerning'); 2842 getPropertyValue('font-kerning');
2861 2843
2862 /** Sets the value of "font-kerning" */ 2844 /** Sets the value of "font-kerning" */
2863 void set fontKerning(String value) { 2845 set fontKerning(String value) {
2864 setProperty('font-kerning', value, ''); 2846 setProperty('font-kerning', value, '');
2865 } 2847 }
2866 2848
2867 /** Gets the value of "font-size" */ 2849 /** Gets the value of "font-size" */
2868 String get fontSize => 2850 String get fontSize =>
2869 getPropertyValue('font-size'); 2851 getPropertyValue('font-size');
2870 2852
2871 /** Sets the value of "font-size" */ 2853 /** Sets the value of "font-size" */
2872 void set fontSize(String value) { 2854 set fontSize(String value) {
2873 setProperty('font-size', value, ''); 2855 setProperty('font-size', value, '');
2874 } 2856 }
2875 2857
2876 /** Gets the value of "font-size-delta" */ 2858 /** Gets the value of "font-size-delta" */
2877 String get fontSizeDelta => 2859 String get fontSizeDelta =>
2878 getPropertyValue('font-size-delta'); 2860 getPropertyValue('font-size-delta');
2879 2861
2880 /** Sets the value of "font-size-delta" */ 2862 /** Sets the value of "font-size-delta" */
2881 void set fontSizeDelta(String value) { 2863 set fontSizeDelta(String value) {
2882 setProperty('font-size-delta', value, ''); 2864 setProperty('font-size-delta', value, '');
2883 } 2865 }
2884 2866
2885 /** Gets the value of "font-smoothing" */ 2867 /** Gets the value of "font-smoothing" */
2886 String get fontSmoothing => 2868 String get fontSmoothing =>
2887 getPropertyValue('font-smoothing'); 2869 getPropertyValue('font-smoothing');
2888 2870
2889 /** Sets the value of "font-smoothing" */ 2871 /** Sets the value of "font-smoothing" */
2890 void set fontSmoothing(String value) { 2872 set fontSmoothing(String value) {
2891 setProperty('font-smoothing', value, ''); 2873 setProperty('font-smoothing', value, '');
2892 } 2874 }
2893 2875
2894 /** Gets the value of "font-stretch" */ 2876 /** Gets the value of "font-stretch" */
2895 String get fontStretch => 2877 String get fontStretch =>
2896 getPropertyValue('font-stretch'); 2878 getPropertyValue('font-stretch');
2897 2879
2898 /** Sets the value of "font-stretch" */ 2880 /** Sets the value of "font-stretch" */
2899 void set fontStretch(String value) { 2881 set fontStretch(String value) {
2900 setProperty('font-stretch', value, ''); 2882 setProperty('font-stretch', value, '');
2901 } 2883 }
2902 2884
2903 /** Gets the value of "font-style" */ 2885 /** Gets the value of "font-style" */
2904 String get fontStyle => 2886 String get fontStyle =>
2905 getPropertyValue('font-style'); 2887 getPropertyValue('font-style');
2906 2888
2907 /** Sets the value of "font-style" */ 2889 /** Sets the value of "font-style" */
2908 void set fontStyle(String value) { 2890 set fontStyle(String value) {
2909 setProperty('font-style', value, ''); 2891 setProperty('font-style', value, '');
2910 } 2892 }
2911 2893
2912 /** Gets the value of "font-variant" */ 2894 /** Gets the value of "font-variant" */
2913 String get fontVariant => 2895 String get fontVariant =>
2914 getPropertyValue('font-variant'); 2896 getPropertyValue('font-variant');
2915 2897
2916 /** Sets the value of "font-variant" */ 2898 /** Sets the value of "font-variant" */
2917 void set fontVariant(String value) { 2899 set fontVariant(String value) {
2918 setProperty('font-variant', value, ''); 2900 setProperty('font-variant', value, '');
2919 } 2901 }
2920 2902
2921 /** Gets the value of "font-variant-ligatures" */ 2903 /** Gets the value of "font-variant-ligatures" */
2922 String get fontVariantLigatures => 2904 String get fontVariantLigatures =>
2923 getPropertyValue('font-variant-ligatures'); 2905 getPropertyValue('font-variant-ligatures');
2924 2906
2925 /** Sets the value of "font-variant-ligatures" */ 2907 /** Sets the value of "font-variant-ligatures" */
2926 void set fontVariantLigatures(String value) { 2908 set fontVariantLigatures(String value) {
2927 setProperty('font-variant-ligatures', value, ''); 2909 setProperty('font-variant-ligatures', value, '');
2928 } 2910 }
2929 2911
2930 /** Gets the value of "font-weight" */ 2912 /** Gets the value of "font-weight" */
2931 String get fontWeight => 2913 String get fontWeight =>
2932 getPropertyValue('font-weight'); 2914 getPropertyValue('font-weight');
2933 2915
2934 /** Sets the value of "font-weight" */ 2916 /** Sets the value of "font-weight" */
2935 void set fontWeight(String value) { 2917 set fontWeight(String value) {
2936 setProperty('font-weight', value, ''); 2918 setProperty('font-weight', value, '');
2937 } 2919 }
2938 2920
2939 /** Gets the value of "grid" */ 2921 /** Gets the value of "grid" */
2940 String get grid => 2922 String get grid =>
2941 getPropertyValue('grid'); 2923 getPropertyValue('grid');
2942 2924
2943 /** Sets the value of "grid" */ 2925 /** Sets the value of "grid" */
2944 void set grid(String value) { 2926 set grid(String value) {
2945 setProperty('grid', value, ''); 2927 setProperty('grid', value, '');
2946 } 2928 }
2947 2929
2948 /** Gets the value of "grid-area" */ 2930 /** Gets the value of "grid-area" */
2949 String get gridArea => 2931 String get gridArea =>
2950 getPropertyValue('grid-area'); 2932 getPropertyValue('grid-area');
2951 2933
2952 /** Sets the value of "grid-area" */ 2934 /** Sets the value of "grid-area" */
2953 void set gridArea(String value) { 2935 set gridArea(String value) {
2954 setProperty('grid-area', value, ''); 2936 setProperty('grid-area', value, '');
2955 } 2937 }
2956 2938
2957 /** Gets the value of "grid-auto-columns" */ 2939 /** Gets the value of "grid-auto-columns" */
2958 String get gridAutoColumns => 2940 String get gridAutoColumns =>
2959 getPropertyValue('grid-auto-columns'); 2941 getPropertyValue('grid-auto-columns');
2960 2942
2961 /** Sets the value of "grid-auto-columns" */ 2943 /** Sets the value of "grid-auto-columns" */
2962 void set gridAutoColumns(String value) { 2944 set gridAutoColumns(String value) {
2963 setProperty('grid-auto-columns', value, ''); 2945 setProperty('grid-auto-columns', value, '');
2964 } 2946 }
2965 2947
2966 /** Gets the value of "grid-auto-flow" */ 2948 /** Gets the value of "grid-auto-flow" */
2967 String get gridAutoFlow => 2949 String get gridAutoFlow =>
2968 getPropertyValue('grid-auto-flow'); 2950 getPropertyValue('grid-auto-flow');
2969 2951
2970 /** Sets the value of "grid-auto-flow" */ 2952 /** Sets the value of "grid-auto-flow" */
2971 void set gridAutoFlow(String value) { 2953 set gridAutoFlow(String value) {
2972 setProperty('grid-auto-flow', value, ''); 2954 setProperty('grid-auto-flow', value, '');
2973 } 2955 }
2974 2956
2975 /** Gets the value of "grid-auto-rows" */ 2957 /** Gets the value of "grid-auto-rows" */
2976 String get gridAutoRows => 2958 String get gridAutoRows =>
2977 getPropertyValue('grid-auto-rows'); 2959 getPropertyValue('grid-auto-rows');
2978 2960
2979 /** Sets the value of "grid-auto-rows" */ 2961 /** Sets the value of "grid-auto-rows" */
2980 void set gridAutoRows(String value) { 2962 set gridAutoRows(String value) {
2981 setProperty('grid-auto-rows', value, ''); 2963 setProperty('grid-auto-rows', value, '');
2982 } 2964 }
2983 2965
2984 /** Gets the value of "grid-column" */ 2966 /** Gets the value of "grid-column" */
2985 String get gridColumn => 2967 String get gridColumn =>
2986 getPropertyValue('grid-column'); 2968 getPropertyValue('grid-column');
2987 2969
2988 /** Sets the value of "grid-column" */ 2970 /** Sets the value of "grid-column" */
2989 void set gridColumn(String value) { 2971 set gridColumn(String value) {
2990 setProperty('grid-column', value, ''); 2972 setProperty('grid-column', value, '');
2991 } 2973 }
2992 2974
2993 /** Gets the value of "grid-column-end" */ 2975 /** Gets the value of "grid-column-end" */
2994 String get gridColumnEnd => 2976 String get gridColumnEnd =>
2995 getPropertyValue('grid-column-end'); 2977 getPropertyValue('grid-column-end');
2996 2978
2997 /** Sets the value of "grid-column-end" */ 2979 /** Sets the value of "grid-column-end" */
2998 void set gridColumnEnd(String value) { 2980 set gridColumnEnd(String value) {
2999 setProperty('grid-column-end', value, ''); 2981 setProperty('grid-column-end', value, '');
3000 } 2982 }
3001 2983
3002 /** Gets the value of "grid-column-start" */ 2984 /** Gets the value of "grid-column-start" */
3003 String get gridColumnStart => 2985 String get gridColumnStart =>
3004 getPropertyValue('grid-column-start'); 2986 getPropertyValue('grid-column-start');
3005 2987
3006 /** Sets the value of "grid-column-start" */ 2988 /** Sets the value of "grid-column-start" */
3007 void set gridColumnStart(String value) { 2989 set gridColumnStart(String value) {
3008 setProperty('grid-column-start', value, ''); 2990 setProperty('grid-column-start', value, '');
3009 } 2991 }
3010 2992
3011 /** Gets the value of "grid-row" */ 2993 /** Gets the value of "grid-row" */
3012 String get gridRow => 2994 String get gridRow =>
3013 getPropertyValue('grid-row'); 2995 getPropertyValue('grid-row');
3014 2996
3015 /** Sets the value of "grid-row" */ 2997 /** Sets the value of "grid-row" */
3016 void set gridRow(String value) { 2998 set gridRow(String value) {
3017 setProperty('grid-row', value, ''); 2999 setProperty('grid-row', value, '');
3018 } 3000 }
3019 3001
3020 /** Gets the value of "grid-row-end" */ 3002 /** Gets the value of "grid-row-end" */
3021 String get gridRowEnd => 3003 String get gridRowEnd =>
3022 getPropertyValue('grid-row-end'); 3004 getPropertyValue('grid-row-end');
3023 3005
3024 /** Sets the value of "grid-row-end" */ 3006 /** Sets the value of "grid-row-end" */
3025 void set gridRowEnd(String value) { 3007 set gridRowEnd(String value) {
3026 setProperty('grid-row-end', value, ''); 3008 setProperty('grid-row-end', value, '');
3027 } 3009 }
3028 3010
3029 /** Gets the value of "grid-row-start" */ 3011 /** Gets the value of "grid-row-start" */
3030 String get gridRowStart => 3012 String get gridRowStart =>
3031 getPropertyValue('grid-row-start'); 3013 getPropertyValue('grid-row-start');
3032 3014
3033 /** Sets the value of "grid-row-start" */ 3015 /** Sets the value of "grid-row-start" */
3034 void set gridRowStart(String value) { 3016 set gridRowStart(String value) {
3035 setProperty('grid-row-start', value, ''); 3017 setProperty('grid-row-start', value, '');
3036 } 3018 }
3037 3019
3038 /** Gets the value of "grid-template" */ 3020 /** Gets the value of "grid-template" */
3039 String get gridTemplate => 3021 String get gridTemplate =>
3040 getPropertyValue('grid-template'); 3022 getPropertyValue('grid-template');
3041 3023
3042 /** Sets the value of "grid-template" */ 3024 /** Sets the value of "grid-template" */
3043 void set gridTemplate(String value) { 3025 set gridTemplate(String value) {
3044 setProperty('grid-template', value, ''); 3026 setProperty('grid-template', value, '');
3045 } 3027 }
3046 3028
3047 /** Gets the value of "grid-template-areas" */ 3029 /** Gets the value of "grid-template-areas" */
3048 String get gridTemplateAreas => 3030 String get gridTemplateAreas =>
3049 getPropertyValue('grid-template-areas'); 3031 getPropertyValue('grid-template-areas');
3050 3032
3051 /** Sets the value of "grid-template-areas" */ 3033 /** Sets the value of "grid-template-areas" */
3052 void set gridTemplateAreas(String value) { 3034 set gridTemplateAreas(String value) {
3053 setProperty('grid-template-areas', value, ''); 3035 setProperty('grid-template-areas', value, '');
3054 } 3036 }
3055 3037
3056 /** Gets the value of "grid-template-columns" */ 3038 /** Gets the value of "grid-template-columns" */
3057 String get gridTemplateColumns => 3039 String get gridTemplateColumns =>
3058 getPropertyValue('grid-template-columns'); 3040 getPropertyValue('grid-template-columns');
3059 3041
3060 /** Sets the value of "grid-template-columns" */ 3042 /** Sets the value of "grid-template-columns" */
3061 void set gridTemplateColumns(String value) { 3043 set gridTemplateColumns(String value) {
3062 setProperty('grid-template-columns', value, ''); 3044 setProperty('grid-template-columns', value, '');
3063 } 3045 }
3064 3046
3065 /** Gets the value of "grid-template-rows" */ 3047 /** Gets the value of "grid-template-rows" */
3066 String get gridTemplateRows => 3048 String get gridTemplateRows =>
3067 getPropertyValue('grid-template-rows'); 3049 getPropertyValue('grid-template-rows');
3068 3050
3069 /** Sets the value of "grid-template-rows" */ 3051 /** Sets the value of "grid-template-rows" */
3070 void set gridTemplateRows(String value) { 3052 set gridTemplateRows(String value) {
3071 setProperty('grid-template-rows', value, ''); 3053 setProperty('grid-template-rows', value, '');
3072 } 3054 }
3073 3055
3074 /** Gets the value of "height" */ 3056 /** Gets the value of "height" */
3075 String get height => 3057 String get height =>
3076 getPropertyValue('height'); 3058 getPropertyValue('height');
3077 3059
3078 /** Sets the value of "height" */ 3060 /** Sets the value of "height" */
3079 void set height(String value) { 3061 set height(String value) {
3080 setProperty('height', value, ''); 3062 setProperty('height', value, '');
3081 } 3063 }
3082 3064
3083 /** Gets the value of "highlight" */ 3065 /** Gets the value of "highlight" */
3084 String get highlight => 3066 String get highlight =>
3085 getPropertyValue('highlight'); 3067 getPropertyValue('highlight');
3086 3068
3087 /** Sets the value of "highlight" */ 3069 /** Sets the value of "highlight" */
3088 void set highlight(String value) { 3070 set highlight(String value) {
3089 setProperty('highlight', value, ''); 3071 setProperty('highlight', value, '');
3090 } 3072 }
3091 3073
3092 /** Gets the value of "hyphenate-character" */ 3074 /** Gets the value of "hyphenate-character" */
3093 String get hyphenateCharacter => 3075 String get hyphenateCharacter =>
3094 getPropertyValue('hyphenate-character'); 3076 getPropertyValue('hyphenate-character');
3095 3077
3096 /** Sets the value of "hyphenate-character" */ 3078 /** Sets the value of "hyphenate-character" */
3097 void set hyphenateCharacter(String value) { 3079 set hyphenateCharacter(String value) {
3098 setProperty('hyphenate-character', value, ''); 3080 setProperty('hyphenate-character', value, '');
3099 } 3081 }
3100 3082
3101 /** Gets the value of "image-rendering" */ 3083 /** Gets the value of "image-rendering" */
3102 String get imageRendering => 3084 String get imageRendering =>
3103 getPropertyValue('image-rendering'); 3085 getPropertyValue('image-rendering');
3104 3086
3105 /** Sets the value of "image-rendering" */ 3087 /** Sets the value of "image-rendering" */
3106 void set imageRendering(String value) { 3088 set imageRendering(String value) {
3107 setProperty('image-rendering', value, ''); 3089 setProperty('image-rendering', value, '');
3108 } 3090 }
3109 3091
3110 /** Gets the value of "isolation" */ 3092 /** Gets the value of "isolation" */
3111 String get isolation => 3093 String get isolation =>
3112 getPropertyValue('isolation'); 3094 getPropertyValue('isolation');
3113 3095
3114 /** Sets the value of "isolation" */ 3096 /** Sets the value of "isolation" */
3115 void set isolation(String value) { 3097 set isolation(String value) {
3116 setProperty('isolation', value, ''); 3098 setProperty('isolation', value, '');
3117 } 3099 }
3118 3100
3119 /** Gets the value of "justify-content" */ 3101 /** Gets the value of "justify-content" */
3120 String get justifyContent => 3102 String get justifyContent =>
3121 getPropertyValue('justify-content'); 3103 getPropertyValue('justify-content');
3122 3104
3123 /** Sets the value of "justify-content" */ 3105 /** Sets the value of "justify-content" */
3124 void set justifyContent(String value) { 3106 set justifyContent(String value) {
3125 setProperty('justify-content', value, ''); 3107 setProperty('justify-content', value, '');
3126 } 3108 }
3127 3109
3128 /** Gets the value of "justify-self" */ 3110 /** Gets the value of "justify-self" */
3129 String get justifySelf => 3111 String get justifySelf =>
3130 getPropertyValue('justify-self'); 3112 getPropertyValue('justify-self');
3131 3113
3132 /** Sets the value of "justify-self" */ 3114 /** Sets the value of "justify-self" */
3133 void set justifySelf(String value) { 3115 set justifySelf(String value) {
3134 setProperty('justify-self', value, ''); 3116 setProperty('justify-self', value, '');
3135 } 3117 }
3136 3118
3137 /** Gets the value of "left" */ 3119 /** Gets the value of "left" */
3138 String get left => 3120 String get left =>
3139 getPropertyValue('left'); 3121 getPropertyValue('left');
3140 3122
3141 /** Sets the value of "left" */ 3123 /** Sets the value of "left" */
3142 void set left(String value) { 3124 set left(String value) {
3143 setProperty('left', value, ''); 3125 setProperty('left', value, '');
3144 } 3126 }
3145 3127
3146 /** Gets the value of "letter-spacing" */ 3128 /** Gets the value of "letter-spacing" */
3147 String get letterSpacing => 3129 String get letterSpacing =>
3148 getPropertyValue('letter-spacing'); 3130 getPropertyValue('letter-spacing');
3149 3131
3150 /** Sets the value of "letter-spacing" */ 3132 /** Sets the value of "letter-spacing" */
3151 void set letterSpacing(String value) { 3133 set letterSpacing(String value) {
3152 setProperty('letter-spacing', value, ''); 3134 setProperty('letter-spacing', value, '');
3153 } 3135 }
3154 3136
3155 /** Gets the value of "line-box-contain" */ 3137 /** Gets the value of "line-box-contain" */
3156 String get lineBoxContain => 3138 String get lineBoxContain =>
3157 getPropertyValue('line-box-contain'); 3139 getPropertyValue('line-box-contain');
3158 3140
3159 /** Sets the value of "line-box-contain" */ 3141 /** Sets the value of "line-box-contain" */
3160 void set lineBoxContain(String value) { 3142 set lineBoxContain(String value) {
3161 setProperty('line-box-contain', value, ''); 3143 setProperty('line-box-contain', value, '');
3162 } 3144 }
3163 3145
3164 /** Gets the value of "line-break" */ 3146 /** Gets the value of "line-break" */
3165 String get lineBreak => 3147 String get lineBreak =>
3166 getPropertyValue('line-break'); 3148 getPropertyValue('line-break');
3167 3149
3168 /** Sets the value of "line-break" */ 3150 /** Sets the value of "line-break" */
3169 void set lineBreak(String value) { 3151 set lineBreak(String value) {
3170 setProperty('line-break', value, ''); 3152 setProperty('line-break', value, '');
3171 } 3153 }
3172 3154
3173 /** Gets the value of "line-clamp" */ 3155 /** Gets the value of "line-clamp" */
3174 String get lineClamp => 3156 String get lineClamp =>
3175 getPropertyValue('line-clamp'); 3157 getPropertyValue('line-clamp');
3176 3158
3177 /** Sets the value of "line-clamp" */ 3159 /** Sets the value of "line-clamp" */
3178 void set lineClamp(String value) { 3160 set lineClamp(String value) {
3179 setProperty('line-clamp', value, ''); 3161 setProperty('line-clamp', value, '');
3180 } 3162 }
3181 3163
3182 /** Gets the value of "line-height" */ 3164 /** Gets the value of "line-height" */
3183 String get lineHeight => 3165 String get lineHeight =>
3184 getPropertyValue('line-height'); 3166 getPropertyValue('line-height');
3185 3167
3186 /** Sets the value of "line-height" */ 3168 /** Sets the value of "line-height" */
3187 void set lineHeight(String value) { 3169 set lineHeight(String value) {
3188 setProperty('line-height', value, ''); 3170 setProperty('line-height', value, '');
3189 } 3171 }
3190 3172
3191 /** Gets the value of "list-style" */ 3173 /** Gets the value of "list-style" */
3192 String get listStyle => 3174 String get listStyle =>
3193 getPropertyValue('list-style'); 3175 getPropertyValue('list-style');
3194 3176
3195 /** Sets the value of "list-style" */ 3177 /** Sets the value of "list-style" */
3196 void set listStyle(String value) { 3178 set listStyle(String value) {
3197 setProperty('list-style', value, ''); 3179 setProperty('list-style', value, '');
3198 } 3180 }
3199 3181
3200 /** Gets the value of "list-style-image" */ 3182 /** Gets the value of "list-style-image" */
3201 String get listStyleImage => 3183 String get listStyleImage =>
3202 getPropertyValue('list-style-image'); 3184 getPropertyValue('list-style-image');
3203 3185
3204 /** Sets the value of "list-style-image" */ 3186 /** Sets the value of "list-style-image" */
3205 void set listStyleImage(String value) { 3187 set listStyleImage(String value) {
3206 setProperty('list-style-image', value, ''); 3188 setProperty('list-style-image', value, '');
3207 } 3189 }
3208 3190
3209 /** Gets the value of "list-style-position" */ 3191 /** Gets the value of "list-style-position" */
3210 String get listStylePosition => 3192 String get listStylePosition =>
3211 getPropertyValue('list-style-position'); 3193 getPropertyValue('list-style-position');
3212 3194
3213 /** Sets the value of "list-style-position" */ 3195 /** Sets the value of "list-style-position" */
3214 void set listStylePosition(String value) { 3196 set listStylePosition(String value) {
3215 setProperty('list-style-position', value, ''); 3197 setProperty('list-style-position', value, '');
3216 } 3198 }
3217 3199
3218 /** Gets the value of "list-style-type" */ 3200 /** Gets the value of "list-style-type" */
3219 String get listStyleType => 3201 String get listStyleType =>
3220 getPropertyValue('list-style-type'); 3202 getPropertyValue('list-style-type');
3221 3203
3222 /** Sets the value of "list-style-type" */ 3204 /** Sets the value of "list-style-type" */
3223 void set listStyleType(String value) { 3205 set listStyleType(String value) {
3224 setProperty('list-style-type', value, ''); 3206 setProperty('list-style-type', value, '');
3225 } 3207 }
3226 3208
3227 /** Gets the value of "locale" */ 3209 /** Gets the value of "locale" */
3228 String get locale => 3210 String get locale =>
3229 getPropertyValue('locale'); 3211 getPropertyValue('locale');
3230 3212
3231 /** Sets the value of "locale" */ 3213 /** Sets the value of "locale" */
3232 void set locale(String value) { 3214 set locale(String value) {
3233 setProperty('locale', value, ''); 3215 setProperty('locale', value, '');
3234 } 3216 }
3235 3217
3236 /** Gets the value of "logical-height" */ 3218 /** Gets the value of "logical-height" */
3237 String get logicalHeight => 3219 String get logicalHeight =>
3238 getPropertyValue('logical-height'); 3220 getPropertyValue('logical-height');
3239 3221
3240 /** Sets the value of "logical-height" */ 3222 /** Sets the value of "logical-height" */
3241 void set logicalHeight(String value) { 3223 set logicalHeight(String value) {
3242 setProperty('logical-height', value, ''); 3224 setProperty('logical-height', value, '');
3243 } 3225 }
3244 3226
3245 /** Gets the value of "logical-width" */ 3227 /** Gets the value of "logical-width" */
3246 String get logicalWidth => 3228 String get logicalWidth =>
3247 getPropertyValue('logical-width'); 3229 getPropertyValue('logical-width');
3248 3230
3249 /** Sets the value of "logical-width" */ 3231 /** Sets the value of "logical-width" */
3250 void set logicalWidth(String value) { 3232 set logicalWidth(String value) {
3251 setProperty('logical-width', value, ''); 3233 setProperty('logical-width', value, '');
3252 } 3234 }
3253 3235
3254 /** Gets the value of "margin" */ 3236 /** Gets the value of "margin" */
3255 String get margin => 3237 String get margin =>
3256 getPropertyValue('margin'); 3238 getPropertyValue('margin');
3257 3239
3258 /** Sets the value of "margin" */ 3240 /** Sets the value of "margin" */
3259 void set margin(String value) { 3241 set margin(String value) {
3260 setProperty('margin', value, ''); 3242 setProperty('margin', value, '');
3261 } 3243 }
3262 3244
3263 /** Gets the value of "margin-after" */ 3245 /** Gets the value of "margin-after" */
3264 String get marginAfter => 3246 String get marginAfter =>
3265 getPropertyValue('margin-after'); 3247 getPropertyValue('margin-after');
3266 3248
3267 /** Sets the value of "margin-after" */ 3249 /** Sets the value of "margin-after" */
3268 void set marginAfter(String value) { 3250 set marginAfter(String value) {
3269 setProperty('margin-after', value, ''); 3251 setProperty('margin-after', value, '');
3270 } 3252 }
3271 3253
3272 /** Gets the value of "margin-after-collapse" */ 3254 /** Gets the value of "margin-after-collapse" */
3273 String get marginAfterCollapse => 3255 String get marginAfterCollapse =>
3274 getPropertyValue('margin-after-collapse'); 3256 getPropertyValue('margin-after-collapse');
3275 3257
3276 /** Sets the value of "margin-after-collapse" */ 3258 /** Sets the value of "margin-after-collapse" */
3277 void set marginAfterCollapse(String value) { 3259 set marginAfterCollapse(String value) {
3278 setProperty('margin-after-collapse', value, ''); 3260 setProperty('margin-after-collapse', value, '');
3279 } 3261 }
3280 3262
3281 /** Gets the value of "margin-before" */ 3263 /** Gets the value of "margin-before" */
3282 String get marginBefore => 3264 String get marginBefore =>
3283 getPropertyValue('margin-before'); 3265 getPropertyValue('margin-before');
3284 3266
3285 /** Sets the value of "margin-before" */ 3267 /** Sets the value of "margin-before" */
3286 void set marginBefore(String value) { 3268 set marginBefore(String value) {
3287 setProperty('margin-before', value, ''); 3269 setProperty('margin-before', value, '');
3288 } 3270 }
3289 3271
3290 /** Gets the value of "margin-before-collapse" */ 3272 /** Gets the value of "margin-before-collapse" */
3291 String get marginBeforeCollapse => 3273 String get marginBeforeCollapse =>
3292 getPropertyValue('margin-before-collapse'); 3274 getPropertyValue('margin-before-collapse');
3293 3275
3294 /** Sets the value of "margin-before-collapse" */ 3276 /** Sets the value of "margin-before-collapse" */
3295 void set marginBeforeCollapse(String value) { 3277 set marginBeforeCollapse(String value) {
3296 setProperty('margin-before-collapse', value, ''); 3278 setProperty('margin-before-collapse', value, '');
3297 } 3279 }
3298 3280
3299 /** Gets the value of "margin-bottom" */ 3281 /** Gets the value of "margin-bottom" */
3300 String get marginBottom => 3282 String get marginBottom =>
3301 getPropertyValue('margin-bottom'); 3283 getPropertyValue('margin-bottom');
3302 3284
3303 /** Sets the value of "margin-bottom" */ 3285 /** Sets the value of "margin-bottom" */
3304 void set marginBottom(String value) { 3286 set marginBottom(String value) {
3305 setProperty('margin-bottom', value, ''); 3287 setProperty('margin-bottom', value, '');
3306 } 3288 }
3307 3289
3308 /** Gets the value of "margin-bottom-collapse" */ 3290 /** Gets the value of "margin-bottom-collapse" */
3309 String get marginBottomCollapse => 3291 String get marginBottomCollapse =>
3310 getPropertyValue('margin-bottom-collapse'); 3292 getPropertyValue('margin-bottom-collapse');
3311 3293
3312 /** Sets the value of "margin-bottom-collapse" */ 3294 /** Sets the value of "margin-bottom-collapse" */
3313 void set marginBottomCollapse(String value) { 3295 set marginBottomCollapse(String value) {
3314 setProperty('margin-bottom-collapse', value, ''); 3296 setProperty('margin-bottom-collapse', value, '');
3315 } 3297 }
3316 3298
3317 /** Gets the value of "margin-collapse" */ 3299 /** Gets the value of "margin-collapse" */
3318 String get marginCollapse => 3300 String get marginCollapse =>
3319 getPropertyValue('margin-collapse'); 3301 getPropertyValue('margin-collapse');
3320 3302
3321 /** Sets the value of "margin-collapse" */ 3303 /** Sets the value of "margin-collapse" */
3322 void set marginCollapse(String value) { 3304 set marginCollapse(String value) {
3323 setProperty('margin-collapse', value, ''); 3305 setProperty('margin-collapse', value, '');
3324 } 3306 }
3325 3307
3326 /** Gets the value of "margin-end" */ 3308 /** Gets the value of "margin-end" */
3327 String get marginEnd => 3309 String get marginEnd =>
3328 getPropertyValue('margin-end'); 3310 getPropertyValue('margin-end');
3329 3311
3330 /** Sets the value of "margin-end" */ 3312 /** Sets the value of "margin-end" */
3331 void set marginEnd(String value) { 3313 set marginEnd(String value) {
3332 setProperty('margin-end', value, ''); 3314 setProperty('margin-end', value, '');
3333 } 3315 }
3334 3316
3335 /** Gets the value of "margin-left" */ 3317 /** Gets the value of "margin-left" */
3336 String get marginLeft => 3318 String get marginLeft =>
3337 getPropertyValue('margin-left'); 3319 getPropertyValue('margin-left');
3338 3320
3339 /** Sets the value of "margin-left" */ 3321 /** Sets the value of "margin-left" */
3340 void set marginLeft(String value) { 3322 set marginLeft(String value) {
3341 setProperty('margin-left', value, ''); 3323 setProperty('margin-left', value, '');
3342 } 3324 }
3343 3325
3344 /** Gets the value of "margin-right" */ 3326 /** Gets the value of "margin-right" */
3345 String get marginRight => 3327 String get marginRight =>
3346 getPropertyValue('margin-right'); 3328 getPropertyValue('margin-right');
3347 3329
3348 /** Sets the value of "margin-right" */ 3330 /** Sets the value of "margin-right" */
3349 void set marginRight(String value) { 3331 set marginRight(String value) {
3350 setProperty('margin-right', value, ''); 3332 setProperty('margin-right', value, '');
3351 } 3333 }
3352 3334
3353 /** Gets the value of "margin-start" */ 3335 /** Gets the value of "margin-start" */
3354 String get marginStart => 3336 String get marginStart =>
3355 getPropertyValue('margin-start'); 3337 getPropertyValue('margin-start');
3356 3338
3357 /** Sets the value of "margin-start" */ 3339 /** Sets the value of "margin-start" */
3358 void set marginStart(String value) { 3340 set marginStart(String value) {
3359 setProperty('margin-start', value, ''); 3341 setProperty('margin-start', value, '');
3360 } 3342 }
3361 3343
3362 /** Gets the value of "margin-top" */ 3344 /** Gets the value of "margin-top" */
3363 String get marginTop => 3345 String get marginTop =>
3364 getPropertyValue('margin-top'); 3346 getPropertyValue('margin-top');
3365 3347
3366 /** Sets the value of "margin-top" */ 3348 /** Sets the value of "margin-top" */
3367 void set marginTop(String value) { 3349 set marginTop(String value) {
3368 setProperty('margin-top', value, ''); 3350 setProperty('margin-top', value, '');
3369 } 3351 }
3370 3352
3371 /** Gets the value of "margin-top-collapse" */ 3353 /** Gets the value of "margin-top-collapse" */
3372 String get marginTopCollapse => 3354 String get marginTopCollapse =>
3373 getPropertyValue('margin-top-collapse'); 3355 getPropertyValue('margin-top-collapse');
3374 3356
3375 /** Sets the value of "margin-top-collapse" */ 3357 /** Sets the value of "margin-top-collapse" */
3376 void set marginTopCollapse(String value) { 3358 set marginTopCollapse(String value) {
3377 setProperty('margin-top-collapse', value, ''); 3359 setProperty('margin-top-collapse', value, '');
3378 } 3360 }
3379 3361
3380 /** Gets the value of "mask" */ 3362 /** Gets the value of "mask" */
3381 String get mask => 3363 String get mask =>
3382 getPropertyValue('mask'); 3364 getPropertyValue('mask');
3383 3365
3384 /** Sets the value of "mask" */ 3366 /** Sets the value of "mask" */
3385 void set mask(String value) { 3367 set mask(String value) {
3386 setProperty('mask', value, ''); 3368 setProperty('mask', value, '');
3387 } 3369 }
3388 3370
3389 /** Gets the value of "mask-box-image" */ 3371 /** Gets the value of "mask-box-image" */
3390 String get maskBoxImage => 3372 String get maskBoxImage =>
3391 getPropertyValue('mask-box-image'); 3373 getPropertyValue('mask-box-image');
3392 3374
3393 /** Sets the value of "mask-box-image" */ 3375 /** Sets the value of "mask-box-image" */
3394 void set maskBoxImage(String value) { 3376 set maskBoxImage(String value) {
3395 setProperty('mask-box-image', value, ''); 3377 setProperty('mask-box-image', value, '');
3396 } 3378 }
3397 3379
3398 /** Gets the value of "mask-box-image-outset" */ 3380 /** Gets the value of "mask-box-image-outset" */
3399 String get maskBoxImageOutset => 3381 String get maskBoxImageOutset =>
3400 getPropertyValue('mask-box-image-outset'); 3382 getPropertyValue('mask-box-image-outset');
3401 3383
3402 /** Sets the value of "mask-box-image-outset" */ 3384 /** Sets the value of "mask-box-image-outset" */
3403 void set maskBoxImageOutset(String value) { 3385 set maskBoxImageOutset(String value) {
3404 setProperty('mask-box-image-outset', value, ''); 3386 setProperty('mask-box-image-outset', value, '');
3405 } 3387 }
3406 3388
3407 /** Gets the value of "mask-box-image-repeat" */ 3389 /** Gets the value of "mask-box-image-repeat" */
3408 String get maskBoxImageRepeat => 3390 String get maskBoxImageRepeat =>
3409 getPropertyValue('mask-box-image-repeat'); 3391 getPropertyValue('mask-box-image-repeat');
3410 3392
3411 /** Sets the value of "mask-box-image-repeat" */ 3393 /** Sets the value of "mask-box-image-repeat" */
3412 void set maskBoxImageRepeat(String value) { 3394 set maskBoxImageRepeat(String value) {
3413 setProperty('mask-box-image-repeat', value, ''); 3395 setProperty('mask-box-image-repeat', value, '');
3414 } 3396 }
3415 3397
3416 /** Gets the value of "mask-box-image-slice" */ 3398 /** Gets the value of "mask-box-image-slice" */
3417 String get maskBoxImageSlice => 3399 String get maskBoxImageSlice =>
3418 getPropertyValue('mask-box-image-slice'); 3400 getPropertyValue('mask-box-image-slice');
3419 3401
3420 /** Sets the value of "mask-box-image-slice" */ 3402 /** Sets the value of "mask-box-image-slice" */
3421 void set maskBoxImageSlice(String value) { 3403 set maskBoxImageSlice(String value) {
3422 setProperty('mask-box-image-slice', value, ''); 3404 setProperty('mask-box-image-slice', value, '');
3423 } 3405 }
3424 3406
3425 /** Gets the value of "mask-box-image-source" */ 3407 /** Gets the value of "mask-box-image-source" */
3426 String get maskBoxImageSource => 3408 String get maskBoxImageSource =>
3427 getPropertyValue('mask-box-image-source'); 3409 getPropertyValue('mask-box-image-source');
3428 3410
3429 /** Sets the value of "mask-box-image-source" */ 3411 /** Sets the value of "mask-box-image-source" */
3430 void set maskBoxImageSource(String value) { 3412 set maskBoxImageSource(String value) {
3431 setProperty('mask-box-image-source', value, ''); 3413 setProperty('mask-box-image-source', value, '');
3432 } 3414 }
3433 3415
3434 /** Gets the value of "mask-box-image-width" */ 3416 /** Gets the value of "mask-box-image-width" */
3435 String get maskBoxImageWidth => 3417 String get maskBoxImageWidth =>
3436 getPropertyValue('mask-box-image-width'); 3418 getPropertyValue('mask-box-image-width');
3437 3419
3438 /** Sets the value of "mask-box-image-width" */ 3420 /** Sets the value of "mask-box-image-width" */
3439 void set maskBoxImageWidth(String value) { 3421 set maskBoxImageWidth(String value) {
3440 setProperty('mask-box-image-width', value, ''); 3422 setProperty('mask-box-image-width', value, '');
3441 } 3423 }
3442 3424
3443 /** Gets the value of "mask-clip" */ 3425 /** Gets the value of "mask-clip" */
3444 String get maskClip => 3426 String get maskClip =>
3445 getPropertyValue('mask-clip'); 3427 getPropertyValue('mask-clip');
3446 3428
3447 /** Sets the value of "mask-clip" */ 3429 /** Sets the value of "mask-clip" */
3448 void set maskClip(String value) { 3430 set maskClip(String value) {
3449 setProperty('mask-clip', value, ''); 3431 setProperty('mask-clip', value, '');
3450 } 3432 }
3451 3433
3452 /** Gets the value of "mask-composite" */ 3434 /** Gets the value of "mask-composite" */
3453 String get maskComposite => 3435 String get maskComposite =>
3454 getPropertyValue('mask-composite'); 3436 getPropertyValue('mask-composite');
3455 3437
3456 /** Sets the value of "mask-composite" */ 3438 /** Sets the value of "mask-composite" */
3457 void set maskComposite(String value) { 3439 set maskComposite(String value) {
3458 setProperty('mask-composite', value, ''); 3440 setProperty('mask-composite', value, '');
3459 } 3441 }
3460 3442
3461 /** Gets the value of "mask-image" */ 3443 /** Gets the value of "mask-image" */
3462 String get maskImage => 3444 String get maskImage =>
3463 getPropertyValue('mask-image'); 3445 getPropertyValue('mask-image');
3464 3446
3465 /** Sets the value of "mask-image" */ 3447 /** Sets the value of "mask-image" */
3466 void set maskImage(String value) { 3448 set maskImage(String value) {
3467 setProperty('mask-image', value, ''); 3449 setProperty('mask-image', value, '');
3468 } 3450 }
3469 3451
3470 /** Gets the value of "mask-origin" */ 3452 /** Gets the value of "mask-origin" */
3471 String get maskOrigin => 3453 String get maskOrigin =>
3472 getPropertyValue('mask-origin'); 3454 getPropertyValue('mask-origin');
3473 3455
3474 /** Sets the value of "mask-origin" */ 3456 /** Sets the value of "mask-origin" */
3475 void set maskOrigin(String value) { 3457 set maskOrigin(String value) {
3476 setProperty('mask-origin', value, ''); 3458 setProperty('mask-origin', value, '');
3477 } 3459 }
3478 3460
3479 /** Gets the value of "mask-position" */ 3461 /** Gets the value of "mask-position" */
3480 String get maskPosition => 3462 String get maskPosition =>
3481 getPropertyValue('mask-position'); 3463 getPropertyValue('mask-position');
3482 3464
3483 /** Sets the value of "mask-position" */ 3465 /** Sets the value of "mask-position" */
3484 void set maskPosition(String value) { 3466 set maskPosition(String value) {
3485 setProperty('mask-position', value, ''); 3467 setProperty('mask-position', value, '');
3486 } 3468 }
3487 3469
3488 /** Gets the value of "mask-position-x" */ 3470 /** Gets the value of "mask-position-x" */
3489 String get maskPositionX => 3471 String get maskPositionX =>
3490 getPropertyValue('mask-position-x'); 3472 getPropertyValue('mask-position-x');
3491 3473
3492 /** Sets the value of "mask-position-x" */ 3474 /** Sets the value of "mask-position-x" */
3493 void set maskPositionX(String value) { 3475 set maskPositionX(String value) {
3494 setProperty('mask-position-x', value, ''); 3476 setProperty('mask-position-x', value, '');
3495 } 3477 }
3496 3478
3497 /** Gets the value of "mask-position-y" */ 3479 /** Gets the value of "mask-position-y" */
3498 String get maskPositionY => 3480 String get maskPositionY =>
3499 getPropertyValue('mask-position-y'); 3481 getPropertyValue('mask-position-y');
3500 3482
3501 /** Sets the value of "mask-position-y" */ 3483 /** Sets the value of "mask-position-y" */
3502 void set maskPositionY(String value) { 3484 set maskPositionY(String value) {
3503 setProperty('mask-position-y', value, ''); 3485 setProperty('mask-position-y', value, '');
3504 } 3486 }
3505 3487
3506 /** Gets the value of "mask-repeat" */ 3488 /** Gets the value of "mask-repeat" */
3507 String get maskRepeat => 3489 String get maskRepeat =>
3508 getPropertyValue('mask-repeat'); 3490 getPropertyValue('mask-repeat');
3509 3491
3510 /** Sets the value of "mask-repeat" */ 3492 /** Sets the value of "mask-repeat" */
3511 void set maskRepeat(String value) { 3493 set maskRepeat(String value) {
3512 setProperty('mask-repeat', value, ''); 3494 setProperty('mask-repeat', value, '');
3513 } 3495 }
3514 3496
3515 /** Gets the value of "mask-repeat-x" */ 3497 /** Gets the value of "mask-repeat-x" */
3516 String get maskRepeatX => 3498 String get maskRepeatX =>
3517 getPropertyValue('mask-repeat-x'); 3499 getPropertyValue('mask-repeat-x');
3518 3500
3519 /** Sets the value of "mask-repeat-x" */ 3501 /** Sets the value of "mask-repeat-x" */
3520 void set maskRepeatX(String value) { 3502 set maskRepeatX(String value) {
3521 setProperty('mask-repeat-x', value, ''); 3503 setProperty('mask-repeat-x', value, '');
3522 } 3504 }
3523 3505
3524 /** Gets the value of "mask-repeat-y" */ 3506 /** Gets the value of "mask-repeat-y" */
3525 String get maskRepeatY => 3507 String get maskRepeatY =>
3526 getPropertyValue('mask-repeat-y'); 3508 getPropertyValue('mask-repeat-y');
3527 3509
3528 /** Sets the value of "mask-repeat-y" */ 3510 /** Sets the value of "mask-repeat-y" */
3529 void set maskRepeatY(String value) { 3511 set maskRepeatY(String value) {
3530 setProperty('mask-repeat-y', value, ''); 3512 setProperty('mask-repeat-y', value, '');
3531 } 3513 }
3532 3514
3533 /** Gets the value of "mask-size" */ 3515 /** Gets the value of "mask-size" */
3534 String get maskSize => 3516 String get maskSize =>
3535 getPropertyValue('mask-size'); 3517 getPropertyValue('mask-size');
3536 3518
3537 /** Sets the value of "mask-size" */ 3519 /** Sets the value of "mask-size" */
3538 void set maskSize(String value) { 3520 set maskSize(String value) {
3539 setProperty('mask-size', value, ''); 3521 setProperty('mask-size', value, '');
3540 } 3522 }
3541 3523
3542 /** Gets the value of "mask-source-type" */ 3524 /** Gets the value of "mask-source-type" */
3543 String get maskSourceType => 3525 String get maskSourceType =>
3544 getPropertyValue('mask-source-type'); 3526 getPropertyValue('mask-source-type');
3545 3527
3546 /** Sets the value of "mask-source-type" */ 3528 /** Sets the value of "mask-source-type" */
3547 void set maskSourceType(String value) { 3529 set maskSourceType(String value) {
3548 setProperty('mask-source-type', value, ''); 3530 setProperty('mask-source-type', value, '');
3549 } 3531 }
3550 3532
3551 /** Gets the value of "max-height" */ 3533 /** Gets the value of "max-height" */
3552 String get maxHeight => 3534 String get maxHeight =>
3553 getPropertyValue('max-height'); 3535 getPropertyValue('max-height');
3554 3536
3555 /** Sets the value of "max-height" */ 3537 /** Sets the value of "max-height" */
3556 void set maxHeight(String value) { 3538 set maxHeight(String value) {
3557 setProperty('max-height', value, ''); 3539 setProperty('max-height', value, '');
3558 } 3540 }
3559 3541
3560 /** Gets the value of "max-logical-height" */ 3542 /** Gets the value of "max-logical-height" */
3561 String get maxLogicalHeight => 3543 String get maxLogicalHeight =>
3562 getPropertyValue('max-logical-height'); 3544 getPropertyValue('max-logical-height');
3563 3545
3564 /** Sets the value of "max-logical-height" */ 3546 /** Sets the value of "max-logical-height" */
3565 void set maxLogicalHeight(String value) { 3547 set maxLogicalHeight(String value) {
3566 setProperty('max-logical-height', value, ''); 3548 setProperty('max-logical-height', value, '');
3567 } 3549 }
3568 3550
3569 /** Gets the value of "max-logical-width" */ 3551 /** Gets the value of "max-logical-width" */
3570 String get maxLogicalWidth => 3552 String get maxLogicalWidth =>
3571 getPropertyValue('max-logical-width'); 3553 getPropertyValue('max-logical-width');
3572 3554
3573 /** Sets the value of "max-logical-width" */ 3555 /** Sets the value of "max-logical-width" */
3574 void set maxLogicalWidth(String value) { 3556 set maxLogicalWidth(String value) {
3575 setProperty('max-logical-width', value, ''); 3557 setProperty('max-logical-width', value, '');
3576 } 3558 }
3577 3559
3578 /** Gets the value of "max-width" */ 3560 /** Gets the value of "max-width" */
3579 String get maxWidth => 3561 String get maxWidth =>
3580 getPropertyValue('max-width'); 3562 getPropertyValue('max-width');
3581 3563
3582 /** Sets the value of "max-width" */ 3564 /** Sets the value of "max-width" */
3583 void set maxWidth(String value) { 3565 set maxWidth(String value) {
3584 setProperty('max-width', value, ''); 3566 setProperty('max-width', value, '');
3585 } 3567 }
3586 3568
3587 /** Gets the value of "max-zoom" */ 3569 /** Gets the value of "max-zoom" */
3588 String get maxZoom => 3570 String get maxZoom =>
3589 getPropertyValue('max-zoom'); 3571 getPropertyValue('max-zoom');
3590 3572
3591 /** Sets the value of "max-zoom" */ 3573 /** Sets the value of "max-zoom" */
3592 void set maxZoom(String value) { 3574 set maxZoom(String value) {
3593 setProperty('max-zoom', value, ''); 3575 setProperty('max-zoom', value, '');
3594 } 3576 }
3595 3577
3596 /** Gets the value of "min-height" */ 3578 /** Gets the value of "min-height" */
3597 String get minHeight => 3579 String get minHeight =>
3598 getPropertyValue('min-height'); 3580 getPropertyValue('min-height');
3599 3581
3600 /** Sets the value of "min-height" */ 3582 /** Sets the value of "min-height" */
3601 void set minHeight(String value) { 3583 set minHeight(String value) {
3602 setProperty('min-height', value, ''); 3584 setProperty('min-height', value, '');
3603 } 3585 }
3604 3586
3605 /** Gets the value of "min-logical-height" */ 3587 /** Gets the value of "min-logical-height" */
3606 String get minLogicalHeight => 3588 String get minLogicalHeight =>
3607 getPropertyValue('min-logical-height'); 3589 getPropertyValue('min-logical-height');
3608 3590
3609 /** Sets the value of "min-logical-height" */ 3591 /** Sets the value of "min-logical-height" */
3610 void set minLogicalHeight(String value) { 3592 set minLogicalHeight(String value) {
3611 setProperty('min-logical-height', value, ''); 3593 setProperty('min-logical-height', value, '');
3612 } 3594 }
3613 3595
3614 /** Gets the value of "min-logical-width" */ 3596 /** Gets the value of "min-logical-width" */
3615 String get minLogicalWidth => 3597 String get minLogicalWidth =>
3616 getPropertyValue('min-logical-width'); 3598 getPropertyValue('min-logical-width');
3617 3599
3618 /** Sets the value of "min-logical-width" */ 3600 /** Sets the value of "min-logical-width" */
3619 void set minLogicalWidth(String value) { 3601 set minLogicalWidth(String value) {
3620 setProperty('min-logical-width', value, ''); 3602 setProperty('min-logical-width', value, '');
3621 } 3603 }
3622 3604
3623 /** Gets the value of "min-width" */ 3605 /** Gets the value of "min-width" */
3624 String get minWidth => 3606 String get minWidth =>
3625 getPropertyValue('min-width'); 3607 getPropertyValue('min-width');
3626 3608
3627 /** Sets the value of "min-width" */ 3609 /** Sets the value of "min-width" */
3628 void set minWidth(String value) { 3610 set minWidth(String value) {
3629 setProperty('min-width', value, ''); 3611 setProperty('min-width', value, '');
3630 } 3612 }
3631 3613
3632 /** Gets the value of "min-zoom" */ 3614 /** Gets the value of "min-zoom" */
3633 String get minZoom => 3615 String get minZoom =>
3634 getPropertyValue('min-zoom'); 3616 getPropertyValue('min-zoom');
3635 3617
3636 /** Sets the value of "min-zoom" */ 3618 /** Sets the value of "min-zoom" */
3637 void set minZoom(String value) { 3619 set minZoom(String value) {
3638 setProperty('min-zoom', value, ''); 3620 setProperty('min-zoom', value, '');
3639 } 3621 }
3640 3622
3641 /** Gets the value of "mix-blend-mode" */ 3623 /** Gets the value of "mix-blend-mode" */
3642 String get mixBlendMode => 3624 String get mixBlendMode =>
3643 getPropertyValue('mix-blend-mode'); 3625 getPropertyValue('mix-blend-mode');
3644 3626
3645 /** Sets the value of "mix-blend-mode" */ 3627 /** Sets the value of "mix-blend-mode" */
3646 void set mixBlendMode(String value) { 3628 set mixBlendMode(String value) {
3647 setProperty('mix-blend-mode', value, ''); 3629 setProperty('mix-blend-mode', value, '');
3648 } 3630 }
3649 3631
3650 /** Gets the value of "object-fit" */ 3632 /** Gets the value of "object-fit" */
3651 String get objectFit => 3633 String get objectFit =>
3652 getPropertyValue('object-fit'); 3634 getPropertyValue('object-fit');
3653 3635
3654 /** Sets the value of "object-fit" */ 3636 /** Sets the value of "object-fit" */
3655 void set objectFit(String value) { 3637 set objectFit(String value) {
3656 setProperty('object-fit', value, ''); 3638 setProperty('object-fit', value, '');
3657 } 3639 }
3658 3640
3659 /** Gets the value of "object-position" */ 3641 /** Gets the value of "object-position" */
3660 String get objectPosition => 3642 String get objectPosition =>
3661 getPropertyValue('object-position'); 3643 getPropertyValue('object-position');
3662 3644
3663 /** Sets the value of "object-position" */ 3645 /** Sets the value of "object-position" */
3664 void set objectPosition(String value) { 3646 set objectPosition(String value) {
3665 setProperty('object-position', value, ''); 3647 setProperty('object-position', value, '');
3666 } 3648 }
3667 3649
3668 /** Gets the value of "opacity" */ 3650 /** Gets the value of "opacity" */
3669 String get opacity => 3651 String get opacity =>
3670 getPropertyValue('opacity'); 3652 getPropertyValue('opacity');
3671 3653
3672 /** Sets the value of "opacity" */ 3654 /** Sets the value of "opacity" */
3673 void set opacity(String value) { 3655 set opacity(String value) {
3674 setProperty('opacity', value, ''); 3656 setProperty('opacity', value, '');
3675 } 3657 }
3676 3658
3677 /** Gets the value of "order" */ 3659 /** Gets the value of "order" */
3678 String get order => 3660 String get order =>
3679 getPropertyValue('order'); 3661 getPropertyValue('order');
3680 3662
3681 /** Sets the value of "order" */ 3663 /** Sets the value of "order" */
3682 void set order(String value) { 3664 set order(String value) {
3683 setProperty('order', value, ''); 3665 setProperty('order', value, '');
3684 } 3666 }
3685 3667
3686 /** Gets the value of "orientation" */ 3668 /** Gets the value of "orientation" */
3687 String get orientation => 3669 String get orientation =>
3688 getPropertyValue('orientation'); 3670 getPropertyValue('orientation');
3689 3671
3690 /** Sets the value of "orientation" */ 3672 /** Sets the value of "orientation" */
3691 void set orientation(String value) { 3673 set orientation(String value) {
3692 setProperty('orientation', value, ''); 3674 setProperty('orientation', value, '');
3693 } 3675 }
3694 3676
3695 /** Gets the value of "orphans" */ 3677 /** Gets the value of "orphans" */
3696 String get orphans => 3678 String get orphans =>
3697 getPropertyValue('orphans'); 3679 getPropertyValue('orphans');
3698 3680
3699 /** Sets the value of "orphans" */ 3681 /** Sets the value of "orphans" */
3700 void set orphans(String value) { 3682 set orphans(String value) {
3701 setProperty('orphans', value, ''); 3683 setProperty('orphans', value, '');
3702 } 3684 }
3703 3685
3704 /** Gets the value of "outline" */ 3686 /** Gets the value of "outline" */
3705 String get outline => 3687 String get outline =>
3706 getPropertyValue('outline'); 3688 getPropertyValue('outline');
3707 3689
3708 /** Sets the value of "outline" */ 3690 /** Sets the value of "outline" */
3709 void set outline(String value) { 3691 set outline(String value) {
3710 setProperty('outline', value, ''); 3692 setProperty('outline', value, '');
3711 } 3693 }
3712 3694
3713 /** Gets the value of "outline-color" */ 3695 /** Gets the value of "outline-color" */
3714 String get outlineColor => 3696 String get outlineColor =>
3715 getPropertyValue('outline-color'); 3697 getPropertyValue('outline-color');
3716 3698
3717 /** Sets the value of "outline-color" */ 3699 /** Sets the value of "outline-color" */
3718 void set outlineColor(String value) { 3700 set outlineColor(String value) {
3719 setProperty('outline-color', value, ''); 3701 setProperty('outline-color', value, '');
3720 } 3702 }
3721 3703
3722 /** Gets the value of "outline-offset" */ 3704 /** Gets the value of "outline-offset" */
3723 String get outlineOffset => 3705 String get outlineOffset =>
3724 getPropertyValue('outline-offset'); 3706 getPropertyValue('outline-offset');
3725 3707
3726 /** Sets the value of "outline-offset" */ 3708 /** Sets the value of "outline-offset" */
3727 void set outlineOffset(String value) { 3709 set outlineOffset(String value) {
3728 setProperty('outline-offset', value, ''); 3710 setProperty('outline-offset', value, '');
3729 } 3711 }
3730 3712
3731 /** Gets the value of "outline-style" */ 3713 /** Gets the value of "outline-style" */
3732 String get outlineStyle => 3714 String get outlineStyle =>
3733 getPropertyValue('outline-style'); 3715 getPropertyValue('outline-style');
3734 3716
3735 /** Sets the value of "outline-style" */ 3717 /** Sets the value of "outline-style" */
3736 void set outlineStyle(String value) { 3718 set outlineStyle(String value) {
3737 setProperty('outline-style', value, ''); 3719 setProperty('outline-style', value, '');
3738 } 3720 }
3739 3721
3740 /** Gets the value of "outline-width" */ 3722 /** Gets the value of "outline-width" */
3741 String get outlineWidth => 3723 String get outlineWidth =>
3742 getPropertyValue('outline-width'); 3724 getPropertyValue('outline-width');
3743 3725
3744 /** Sets the value of "outline-width" */ 3726 /** Sets the value of "outline-width" */
3745 void set outlineWidth(String value) { 3727 set outlineWidth(String value) {
3746 setProperty('outline-width', value, ''); 3728 setProperty('outline-width', value, '');
3747 } 3729 }
3748 3730
3749 /** Gets the value of "overflow" */ 3731 /** Gets the value of "overflow" */
3750 String get overflow => 3732 String get overflow =>
3751 getPropertyValue('overflow'); 3733 getPropertyValue('overflow');
3752 3734
3753 /** Sets the value of "overflow" */ 3735 /** Sets the value of "overflow" */
3754 void set overflow(String value) { 3736 set overflow(String value) {
3755 setProperty('overflow', value, ''); 3737 setProperty('overflow', value, '');
3756 } 3738 }
3757 3739
3758 /** Gets the value of "overflow-wrap" */ 3740 /** Gets the value of "overflow-wrap" */
3759 String get overflowWrap => 3741 String get overflowWrap =>
3760 getPropertyValue('overflow-wrap'); 3742 getPropertyValue('overflow-wrap');
3761 3743
3762 /** Sets the value of "overflow-wrap" */ 3744 /** Sets the value of "overflow-wrap" */
3763 void set overflowWrap(String value) { 3745 set overflowWrap(String value) {
3764 setProperty('overflow-wrap', value, ''); 3746 setProperty('overflow-wrap', value, '');
3765 } 3747 }
3766 3748
3767 /** Gets the value of "overflow-x" */ 3749 /** Gets the value of "overflow-x" */
3768 String get overflowX => 3750 String get overflowX =>
3769 getPropertyValue('overflow-x'); 3751 getPropertyValue('overflow-x');
3770 3752
3771 /** Sets the value of "overflow-x" */ 3753 /** Sets the value of "overflow-x" */
3772 void set overflowX(String value) { 3754 set overflowX(String value) {
3773 setProperty('overflow-x', value, ''); 3755 setProperty('overflow-x', value, '');
3774 } 3756 }
3775 3757
3776 /** Gets the value of "overflow-y" */ 3758 /** Gets the value of "overflow-y" */
3777 String get overflowY => 3759 String get overflowY =>
3778 getPropertyValue('overflow-y'); 3760 getPropertyValue('overflow-y');
3779 3761
3780 /** Sets the value of "overflow-y" */ 3762 /** Sets the value of "overflow-y" */
3781 void set overflowY(String value) { 3763 set overflowY(String value) {
3782 setProperty('overflow-y', value, ''); 3764 setProperty('overflow-y', value, '');
3783 } 3765 }
3784 3766
3785 /** Gets the value of "padding" */ 3767 /** Gets the value of "padding" */
3786 String get padding => 3768 String get padding =>
3787 getPropertyValue('padding'); 3769 getPropertyValue('padding');
3788 3770
3789 /** Sets the value of "padding" */ 3771 /** Sets the value of "padding" */
3790 void set padding(String value) { 3772 set padding(String value) {
3791 setProperty('padding', value, ''); 3773 setProperty('padding', value, '');
3792 } 3774 }
3793 3775
3794 /** Gets the value of "padding-after" */ 3776 /** Gets the value of "padding-after" */
3795 String get paddingAfter => 3777 String get paddingAfter =>
3796 getPropertyValue('padding-after'); 3778 getPropertyValue('padding-after');
3797 3779
3798 /** Sets the value of "padding-after" */ 3780 /** Sets the value of "padding-after" */
3799 void set paddingAfter(String value) { 3781 set paddingAfter(String value) {
3800 setProperty('padding-after', value, ''); 3782 setProperty('padding-after', value, '');
3801 } 3783 }
3802 3784
3803 /** Gets the value of "padding-before" */ 3785 /** Gets the value of "padding-before" */
3804 String get paddingBefore => 3786 String get paddingBefore =>
3805 getPropertyValue('padding-before'); 3787 getPropertyValue('padding-before');
3806 3788
3807 /** Sets the value of "padding-before" */ 3789 /** Sets the value of "padding-before" */
3808 void set paddingBefore(String value) { 3790 set paddingBefore(String value) {
3809 setProperty('padding-before', value, ''); 3791 setProperty('padding-before', value, '');
3810 } 3792 }
3811 3793
3812 /** Gets the value of "padding-bottom" */ 3794 /** Gets the value of "padding-bottom" */
3813 String get paddingBottom => 3795 String get paddingBottom =>
3814 getPropertyValue('padding-bottom'); 3796 getPropertyValue('padding-bottom');
3815 3797
3816 /** Sets the value of "padding-bottom" */ 3798 /** Sets the value of "padding-bottom" */
3817 void set paddingBottom(String value) { 3799 set paddingBottom(String value) {
3818 setProperty('padding-bottom', value, ''); 3800 setProperty('padding-bottom', value, '');
3819 } 3801 }
3820 3802
3821 /** Gets the value of "padding-end" */ 3803 /** Gets the value of "padding-end" */
3822 String get paddingEnd => 3804 String get paddingEnd =>
3823 getPropertyValue('padding-end'); 3805 getPropertyValue('padding-end');
3824 3806
3825 /** Sets the value of "padding-end" */ 3807 /** Sets the value of "padding-end" */
3826 void set paddingEnd(String value) { 3808 set paddingEnd(String value) {
3827 setProperty('padding-end', value, ''); 3809 setProperty('padding-end', value, '');
3828 } 3810 }
3829 3811
3830 /** Gets the value of "padding-left" */ 3812 /** Gets the value of "padding-left" */
3831 String get paddingLeft => 3813 String get paddingLeft =>
3832 getPropertyValue('padding-left'); 3814 getPropertyValue('padding-left');
3833 3815
3834 /** Sets the value of "padding-left" */ 3816 /** Sets the value of "padding-left" */
3835 void set paddingLeft(String value) { 3817 set paddingLeft(String value) {
3836 setProperty('padding-left', value, ''); 3818 setProperty('padding-left', value, '');
3837 } 3819 }
3838 3820
3839 /** Gets the value of "padding-right" */ 3821 /** Gets the value of "padding-right" */
3840 String get paddingRight => 3822 String get paddingRight =>
3841 getPropertyValue('padding-right'); 3823 getPropertyValue('padding-right');
3842 3824
3843 /** Sets the value of "padding-right" */ 3825 /** Sets the value of "padding-right" */
3844 void set paddingRight(String value) { 3826 set paddingRight(String value) {
3845 setProperty('padding-right', value, ''); 3827 setProperty('padding-right', value, '');
3846 } 3828 }
3847 3829
3848 /** Gets the value of "padding-start" */ 3830 /** Gets the value of "padding-start" */
3849 String get paddingStart => 3831 String get paddingStart =>
3850 getPropertyValue('padding-start'); 3832 getPropertyValue('padding-start');
3851 3833
3852 /** Sets the value of "padding-start" */ 3834 /** Sets the value of "padding-start" */
3853 void set paddingStart(String value) { 3835 set paddingStart(String value) {
3854 setProperty('padding-start', value, ''); 3836 setProperty('padding-start', value, '');
3855 } 3837 }
3856 3838
3857 /** Gets the value of "padding-top" */ 3839 /** Gets the value of "padding-top" */
3858 String get paddingTop => 3840 String get paddingTop =>
3859 getPropertyValue('padding-top'); 3841 getPropertyValue('padding-top');
3860 3842
3861 /** Sets the value of "padding-top" */ 3843 /** Sets the value of "padding-top" */
3862 void set paddingTop(String value) { 3844 set paddingTop(String value) {
3863 setProperty('padding-top', value, ''); 3845 setProperty('padding-top', value, '');
3864 } 3846 }
3865 3847
3866 /** Gets the value of "page" */ 3848 /** Gets the value of "page" */
3867 String get page => 3849 String get page =>
3868 getPropertyValue('page'); 3850 getPropertyValue('page');
3869 3851
3870 /** Sets the value of "page" */ 3852 /** Sets the value of "page" */
3871 void set page(String value) { 3853 set page(String value) {
3872 setProperty('page', value, ''); 3854 setProperty('page', value, '');
3873 } 3855 }
3874 3856
3875 /** Gets the value of "page-break-after" */ 3857 /** Gets the value of "page-break-after" */
3876 String get pageBreakAfter => 3858 String get pageBreakAfter =>
3877 getPropertyValue('page-break-after'); 3859 getPropertyValue('page-break-after');
3878 3860
3879 /** Sets the value of "page-break-after" */ 3861 /** Sets the value of "page-break-after" */
3880 void set pageBreakAfter(String value) { 3862 set pageBreakAfter(String value) {
3881 setProperty('page-break-after', value, ''); 3863 setProperty('page-break-after', value, '');
3882 } 3864 }
3883 3865
3884 /** Gets the value of "page-break-before" */ 3866 /** Gets the value of "page-break-before" */
3885 String get pageBreakBefore => 3867 String get pageBreakBefore =>
3886 getPropertyValue('page-break-before'); 3868 getPropertyValue('page-break-before');
3887 3869
3888 /** Sets the value of "page-break-before" */ 3870 /** Sets the value of "page-break-before" */
3889 void set pageBreakBefore(String value) { 3871 set pageBreakBefore(String value) {
3890 setProperty('page-break-before', value, ''); 3872 setProperty('page-break-before', value, '');
3891 } 3873 }
3892 3874
3893 /** Gets the value of "page-break-inside" */ 3875 /** Gets the value of "page-break-inside" */
3894 String get pageBreakInside => 3876 String get pageBreakInside =>
3895 getPropertyValue('page-break-inside'); 3877 getPropertyValue('page-break-inside');
3896 3878
3897 /** Sets the value of "page-break-inside" */ 3879 /** Sets the value of "page-break-inside" */
3898 void set pageBreakInside(String value) { 3880 set pageBreakInside(String value) {
3899 setProperty('page-break-inside', value, ''); 3881 setProperty('page-break-inside', value, '');
3900 } 3882 }
3901 3883
3902 /** Gets the value of "perspective" */ 3884 /** Gets the value of "perspective" */
3903 String get perspective => 3885 String get perspective =>
3904 getPropertyValue('perspective'); 3886 getPropertyValue('perspective');
3905 3887
3906 /** Sets the value of "perspective" */ 3888 /** Sets the value of "perspective" */
3907 void set perspective(String value) { 3889 set perspective(String value) {
3908 setProperty('perspective', value, ''); 3890 setProperty('perspective', value, '');
3909 } 3891 }
3910 3892
3911 /** Gets the value of "perspective-origin" */ 3893 /** Gets the value of "perspective-origin" */
3912 String get perspectiveOrigin => 3894 String get perspectiveOrigin =>
3913 getPropertyValue('perspective-origin'); 3895 getPropertyValue('perspective-origin');
3914 3896
3915 /** Sets the value of "perspective-origin" */ 3897 /** Sets the value of "perspective-origin" */
3916 void set perspectiveOrigin(String value) { 3898 set perspectiveOrigin(String value) {
3917 setProperty('perspective-origin', value, ''); 3899 setProperty('perspective-origin', value, '');
3918 } 3900 }
3919 3901
3920 /** Gets the value of "perspective-origin-x" */ 3902 /** Gets the value of "perspective-origin-x" */
3921 String get perspectiveOriginX => 3903 String get perspectiveOriginX =>
3922 getPropertyValue('perspective-origin-x'); 3904 getPropertyValue('perspective-origin-x');
3923 3905
3924 /** Sets the value of "perspective-origin-x" */ 3906 /** Sets the value of "perspective-origin-x" */
3925 void set perspectiveOriginX(String value) { 3907 set perspectiveOriginX(String value) {
3926 setProperty('perspective-origin-x', value, ''); 3908 setProperty('perspective-origin-x', value, '');
3927 } 3909 }
3928 3910
3929 /** Gets the value of "perspective-origin-y" */ 3911 /** Gets the value of "perspective-origin-y" */
3930 String get perspectiveOriginY => 3912 String get perspectiveOriginY =>
3931 getPropertyValue('perspective-origin-y'); 3913 getPropertyValue('perspective-origin-y');
3932 3914
3933 /** Sets the value of "perspective-origin-y" */ 3915 /** Sets the value of "perspective-origin-y" */
3934 void set perspectiveOriginY(String value) { 3916 set perspectiveOriginY(String value) {
3935 setProperty('perspective-origin-y', value, ''); 3917 setProperty('perspective-origin-y', value, '');
3936 } 3918 }
3937 3919
3938 /** Gets the value of "pointer-events" */ 3920 /** Gets the value of "pointer-events" */
3939 String get pointerEvents => 3921 String get pointerEvents =>
3940 getPropertyValue('pointer-events'); 3922 getPropertyValue('pointer-events');
3941 3923
3942 /** Sets the value of "pointer-events" */ 3924 /** Sets the value of "pointer-events" */
3943 void set pointerEvents(String value) { 3925 set pointerEvents(String value) {
3944 setProperty('pointer-events', value, ''); 3926 setProperty('pointer-events', value, '');
3945 } 3927 }
3946 3928
3947 /** Gets the value of "position" */ 3929 /** Gets the value of "position" */
3948 String get position => 3930 String get position =>
3949 getPropertyValue('position'); 3931 getPropertyValue('position');
3950 3932
3951 /** Sets the value of "position" */ 3933 /** Sets the value of "position" */
3952 void set position(String value) { 3934 set position(String value) {
3953 setProperty('position', value, ''); 3935 setProperty('position', value, '');
3954 } 3936 }
3955 3937
3956 /** Gets the value of "print-color-adjust" */ 3938 /** Gets the value of "print-color-adjust" */
3957 String get printColorAdjust => 3939 String get printColorAdjust =>
3958 getPropertyValue('print-color-adjust'); 3940 getPropertyValue('print-color-adjust');
3959 3941
3960 /** Sets the value of "print-color-adjust" */ 3942 /** Sets the value of "print-color-adjust" */
3961 void set printColorAdjust(String value) { 3943 set printColorAdjust(String value) {
3962 setProperty('print-color-adjust', value, ''); 3944 setProperty('print-color-adjust', value, '');
3963 } 3945 }
3964 3946
3965 /** Gets the value of "quotes" */ 3947 /** Gets the value of "quotes" */
3966 String get quotes => 3948 String get quotes =>
3967 getPropertyValue('quotes'); 3949 getPropertyValue('quotes');
3968 3950
3969 /** Sets the value of "quotes" */ 3951 /** Sets the value of "quotes" */
3970 void set quotes(String value) { 3952 set quotes(String value) {
3971 setProperty('quotes', value, ''); 3953 setProperty('quotes', value, '');
3972 } 3954 }
3973 3955
3974 /** Gets the value of "resize" */ 3956 /** Gets the value of "resize" */
3975 String get resize => 3957 String get resize =>
3976 getPropertyValue('resize'); 3958 getPropertyValue('resize');
3977 3959
3978 /** Sets the value of "resize" */ 3960 /** Sets the value of "resize" */
3979 void set resize(String value) { 3961 set resize(String value) {
3980 setProperty('resize', value, ''); 3962 setProperty('resize', value, '');
3981 } 3963 }
3982 3964
3983 /** Gets the value of "right" */ 3965 /** Gets the value of "right" */
3984 String get right => 3966 String get right =>
3985 getPropertyValue('right'); 3967 getPropertyValue('right');
3986 3968
3987 /** Sets the value of "right" */ 3969 /** Sets the value of "right" */
3988 void set right(String value) { 3970 set right(String value) {
3989 setProperty('right', value, ''); 3971 setProperty('right', value, '');
3990 } 3972 }
3991 3973
3992 /** Gets the value of "rtl-ordering" */ 3974 /** Gets the value of "rtl-ordering" */
3993 String get rtlOrdering => 3975 String get rtlOrdering =>
3994 getPropertyValue('rtl-ordering'); 3976 getPropertyValue('rtl-ordering');
3995 3977
3996 /** Sets the value of "rtl-ordering" */ 3978 /** Sets the value of "rtl-ordering" */
3997 void set rtlOrdering(String value) { 3979 set rtlOrdering(String value) {
3998 setProperty('rtl-ordering', value, ''); 3980 setProperty('rtl-ordering', value, '');
3999 } 3981 }
4000 3982
4001 /** Gets the value of "ruby-position" */ 3983 /** Gets the value of "ruby-position" */
4002 String get rubyPosition => 3984 String get rubyPosition =>
4003 getPropertyValue('ruby-position'); 3985 getPropertyValue('ruby-position');
4004 3986
4005 /** Sets the value of "ruby-position" */ 3987 /** Sets the value of "ruby-position" */
4006 void set rubyPosition(String value) { 3988 set rubyPosition(String value) {
4007 setProperty('ruby-position', value, ''); 3989 setProperty('ruby-position', value, '');
4008 } 3990 }
4009 3991
4010 /** Gets the value of "scroll-behavior" */ 3992 /** Gets the value of "scroll-behavior" */
4011 String get scrollBehavior => 3993 String get scrollBehavior =>
4012 getPropertyValue('scroll-behavior'); 3994 getPropertyValue('scroll-behavior');
4013 3995
4014 /** Sets the value of "scroll-behavior" */ 3996 /** Sets the value of "scroll-behavior" */
4015 void set scrollBehavior(String value) { 3997 set scrollBehavior(String value) {
4016 setProperty('scroll-behavior', value, ''); 3998 setProperty('scroll-behavior', value, '');
4017 } 3999 }
4018 4000
4019 /** Gets the value of "shape-image-threshold" */ 4001 /** Gets the value of "shape-image-threshold" */
4020 String get shapeImageThreshold => 4002 String get shapeImageThreshold =>
4021 getPropertyValue('shape-image-threshold'); 4003 getPropertyValue('shape-image-threshold');
4022 4004
4023 /** Sets the value of "shape-image-threshold" */ 4005 /** Sets the value of "shape-image-threshold" */
4024 void set shapeImageThreshold(String value) { 4006 set shapeImageThreshold(String value) {
4025 setProperty('shape-image-threshold', value, ''); 4007 setProperty('shape-image-threshold', value, '');
4026 } 4008 }
4027 4009
4028 /** Gets the value of "shape-margin" */ 4010 /** Gets the value of "shape-margin" */
4029 String get shapeMargin => 4011 String get shapeMargin =>
4030 getPropertyValue('shape-margin'); 4012 getPropertyValue('shape-margin');
4031 4013
4032 /** Sets the value of "shape-margin" */ 4014 /** Sets the value of "shape-margin" */
4033 void set shapeMargin(String value) { 4015 set shapeMargin(String value) {
4034 setProperty('shape-margin', value, ''); 4016 setProperty('shape-margin', value, '');
4035 } 4017 }
4036 4018
4037 /** Gets the value of "shape-outside" */ 4019 /** Gets the value of "shape-outside" */
4038 String get shapeOutside => 4020 String get shapeOutside =>
4039 getPropertyValue('shape-outside'); 4021 getPropertyValue('shape-outside');
4040 4022
4041 /** Sets the value of "shape-outside" */ 4023 /** Sets the value of "shape-outside" */
4042 void set shapeOutside(String value) { 4024 set shapeOutside(String value) {
4043 setProperty('shape-outside', value, ''); 4025 setProperty('shape-outside', value, '');
4044 } 4026 }
4045 4027
4046 /** Gets the value of "size" */ 4028 /** Gets the value of "size" */
4047 String get size => 4029 String get size =>
4048 getPropertyValue('size'); 4030 getPropertyValue('size');
4049 4031
4050 /** Sets the value of "size" */ 4032 /** Sets the value of "size" */
4051 void set size(String value) { 4033 set size(String value) {
4052 setProperty('size', value, ''); 4034 setProperty('size', value, '');
4053 } 4035 }
4054 4036
4055 /** Gets the value of "speak" */ 4037 /** Gets the value of "speak" */
4056 String get speak => 4038 String get speak =>
4057 getPropertyValue('speak'); 4039 getPropertyValue('speak');
4058 4040
4059 /** Sets the value of "speak" */ 4041 /** Sets the value of "speak" */
4060 void set speak(String value) { 4042 set speak(String value) {
4061 setProperty('speak', value, ''); 4043 setProperty('speak', value, '');
4062 } 4044 }
4063 4045
4064 /** Gets the value of "src" */ 4046 /** Gets the value of "src" */
4065 String get src => 4047 String get src =>
4066 getPropertyValue('src'); 4048 getPropertyValue('src');
4067 4049
4068 /** Sets the value of "src" */ 4050 /** Sets the value of "src" */
4069 void set src(String value) { 4051 set src(String value) {
4070 setProperty('src', value, ''); 4052 setProperty('src', value, '');
4071 } 4053 }
4072 4054
4073 /** Gets the value of "tab-size" */ 4055 /** Gets the value of "tab-size" */
4074 String get tabSize => 4056 String get tabSize =>
4075 getPropertyValue('tab-size'); 4057 getPropertyValue('tab-size');
4076 4058
4077 /** Sets the value of "tab-size" */ 4059 /** Sets the value of "tab-size" */
4078 void set tabSize(String value) { 4060 set tabSize(String value) {
4079 setProperty('tab-size', value, ''); 4061 setProperty('tab-size', value, '');
4080 } 4062 }
4081 4063
4082 /** Gets the value of "table-layout" */ 4064 /** Gets the value of "table-layout" */
4083 String get tableLayout => 4065 String get tableLayout =>
4084 getPropertyValue('table-layout'); 4066 getPropertyValue('table-layout');
4085 4067
4086 /** Sets the value of "table-layout" */ 4068 /** Sets the value of "table-layout" */
4087 void set tableLayout(String value) { 4069 set tableLayout(String value) {
4088 setProperty('table-layout', value, ''); 4070 setProperty('table-layout', value, '');
4089 } 4071 }
4090 4072
4091 /** Gets the value of "tap-highlight-color" */ 4073 /** Gets the value of "tap-highlight-color" */
4092 String get tapHighlightColor => 4074 String get tapHighlightColor =>
4093 getPropertyValue('tap-highlight-color'); 4075 getPropertyValue('tap-highlight-color');
4094 4076
4095 /** Sets the value of "tap-highlight-color" */ 4077 /** Sets the value of "tap-highlight-color" */
4096 void set tapHighlightColor(String value) { 4078 set tapHighlightColor(String value) {
4097 setProperty('tap-highlight-color', value, ''); 4079 setProperty('tap-highlight-color', value, '');
4098 } 4080 }
4099 4081
4100 /** Gets the value of "text-align" */ 4082 /** Gets the value of "text-align" */
4101 String get textAlign => 4083 String get textAlign =>
4102 getPropertyValue('text-align'); 4084 getPropertyValue('text-align');
4103 4085
4104 /** Sets the value of "text-align" */ 4086 /** Sets the value of "text-align" */
4105 void set textAlign(String value) { 4087 set textAlign(String value) {
4106 setProperty('text-align', value, ''); 4088 setProperty('text-align', value, '');
4107 } 4089 }
4108 4090
4109 /** Gets the value of "text-align-last" */ 4091 /** Gets the value of "text-align-last" */
4110 String get textAlignLast => 4092 String get textAlignLast =>
4111 getPropertyValue('text-align-last'); 4093 getPropertyValue('text-align-last');
4112 4094
4113 /** Sets the value of "text-align-last" */ 4095 /** Sets the value of "text-align-last" */
4114 void set textAlignLast(String value) { 4096 set textAlignLast(String value) {
4115 setProperty('text-align-last', value, ''); 4097 setProperty('text-align-last', value, '');
4116 } 4098 }
4117 4099
4118 /** Gets the value of "text-combine" */ 4100 /** Gets the value of "text-combine" */
4119 String get textCombine => 4101 String get textCombine =>
4120 getPropertyValue('text-combine'); 4102 getPropertyValue('text-combine');
4121 4103
4122 /** Sets the value of "text-combine" */ 4104 /** Sets the value of "text-combine" */
4123 void set textCombine(String value) { 4105 set textCombine(String value) {
4124 setProperty('text-combine', value, ''); 4106 setProperty('text-combine', value, '');
4125 } 4107 }
4126 4108
4127 /** Gets the value of "text-decoration" */ 4109 /** Gets the value of "text-decoration" */
4128 String get textDecoration => 4110 String get textDecoration =>
4129 getPropertyValue('text-decoration'); 4111 getPropertyValue('text-decoration');
4130 4112
4131 /** Sets the value of "text-decoration" */ 4113 /** Sets the value of "text-decoration" */
4132 void set textDecoration(String value) { 4114 set textDecoration(String value) {
4133 setProperty('text-decoration', value, ''); 4115 setProperty('text-decoration', value, '');
4134 } 4116 }
4135 4117
4136 /** Gets the value of "text-decoration-color" */ 4118 /** Gets the value of "text-decoration-color" */
4137 String get textDecorationColor => 4119 String get textDecorationColor =>
4138 getPropertyValue('text-decoration-color'); 4120 getPropertyValue('text-decoration-color');
4139 4121
4140 /** Sets the value of "text-decoration-color" */ 4122 /** Sets the value of "text-decoration-color" */
4141 void set textDecorationColor(String value) { 4123 set textDecorationColor(String value) {
4142 setProperty('text-decoration-color', value, ''); 4124 setProperty('text-decoration-color', value, '');
4143 } 4125 }
4144 4126
4145 /** Gets the value of "text-decoration-line" */ 4127 /** Gets the value of "text-decoration-line" */
4146 String get textDecorationLine => 4128 String get textDecorationLine =>
4147 getPropertyValue('text-decoration-line'); 4129 getPropertyValue('text-decoration-line');
4148 4130
4149 /** Sets the value of "text-decoration-line" */ 4131 /** Sets the value of "text-decoration-line" */
4150 void set textDecorationLine(String value) { 4132 set textDecorationLine(String value) {
4151 setProperty('text-decoration-line', value, ''); 4133 setProperty('text-decoration-line', value, '');
4152 } 4134 }
4153 4135
4154 /** Gets the value of "text-decoration-style" */ 4136 /** Gets the value of "text-decoration-style" */
4155 String get textDecorationStyle => 4137 String get textDecorationStyle =>
4156 getPropertyValue('text-decoration-style'); 4138 getPropertyValue('text-decoration-style');
4157 4139
4158 /** Sets the value of "text-decoration-style" */ 4140 /** Sets the value of "text-decoration-style" */
4159 void set textDecorationStyle(String value) { 4141 set textDecorationStyle(String value) {
4160 setProperty('text-decoration-style', value, ''); 4142 setProperty('text-decoration-style', value, '');
4161 } 4143 }
4162 4144
4163 /** Gets the value of "text-decorations-in-effect" */ 4145 /** Gets the value of "text-decorations-in-effect" */
4164 String get textDecorationsInEffect => 4146 String get textDecorationsInEffect =>
4165 getPropertyValue('text-decorations-in-effect'); 4147 getPropertyValue('text-decorations-in-effect');
4166 4148
4167 /** Sets the value of "text-decorations-in-effect" */ 4149 /** Sets the value of "text-decorations-in-effect" */
4168 void set textDecorationsInEffect(String value) { 4150 set textDecorationsInEffect(String value) {
4169 setProperty('text-decorations-in-effect', value, ''); 4151 setProperty('text-decorations-in-effect', value, '');
4170 } 4152 }
4171 4153
4172 /** Gets the value of "text-emphasis" */ 4154 /** Gets the value of "text-emphasis" */
4173 String get textEmphasis => 4155 String get textEmphasis =>
4174 getPropertyValue('text-emphasis'); 4156 getPropertyValue('text-emphasis');
4175 4157
4176 /** Sets the value of "text-emphasis" */ 4158 /** Sets the value of "text-emphasis" */
4177 void set textEmphasis(String value) { 4159 set textEmphasis(String value) {
4178 setProperty('text-emphasis', value, ''); 4160 setProperty('text-emphasis', value, '');
4179 } 4161 }
4180 4162
4181 /** Gets the value of "text-emphasis-color" */ 4163 /** Gets the value of "text-emphasis-color" */
4182 String get textEmphasisColor => 4164 String get textEmphasisColor =>
4183 getPropertyValue('text-emphasis-color'); 4165 getPropertyValue('text-emphasis-color');
4184 4166
4185 /** Sets the value of "text-emphasis-color" */ 4167 /** Sets the value of "text-emphasis-color" */
4186 void set textEmphasisColor(String value) { 4168 set textEmphasisColor(String value) {
4187 setProperty('text-emphasis-color', value, ''); 4169 setProperty('text-emphasis-color', value, '');
4188 } 4170 }
4189 4171
4190 /** Gets the value of "text-emphasis-position" */ 4172 /** Gets the value of "text-emphasis-position" */
4191 String get textEmphasisPosition => 4173 String get textEmphasisPosition =>
4192 getPropertyValue('text-emphasis-position'); 4174 getPropertyValue('text-emphasis-position');
4193 4175
4194 /** Sets the value of "text-emphasis-position" */ 4176 /** Sets the value of "text-emphasis-position" */
4195 void set textEmphasisPosition(String value) { 4177 set textEmphasisPosition(String value) {
4196 setProperty('text-emphasis-position', value, ''); 4178 setProperty('text-emphasis-position', value, '');
4197 } 4179 }
4198 4180
4199 /** Gets the value of "text-emphasis-style" */ 4181 /** Gets the value of "text-emphasis-style" */
4200 String get textEmphasisStyle => 4182 String get textEmphasisStyle =>
4201 getPropertyValue('text-emphasis-style'); 4183 getPropertyValue('text-emphasis-style');
4202 4184
4203 /** Sets the value of "text-emphasis-style" */ 4185 /** Sets the value of "text-emphasis-style" */
4204 void set textEmphasisStyle(String value) { 4186 set textEmphasisStyle(String value) {
4205 setProperty('text-emphasis-style', value, ''); 4187 setProperty('text-emphasis-style', value, '');
4206 } 4188 }
4207 4189
4208 /** Gets the value of "text-fill-color" */ 4190 /** Gets the value of "text-fill-color" */
4209 String get textFillColor => 4191 String get textFillColor =>
4210 getPropertyValue('text-fill-color'); 4192 getPropertyValue('text-fill-color');
4211 4193
4212 /** Sets the value of "text-fill-color" */ 4194 /** Sets the value of "text-fill-color" */
4213 void set textFillColor(String value) { 4195 set textFillColor(String value) {
4214 setProperty('text-fill-color', value, ''); 4196 setProperty('text-fill-color', value, '');
4215 } 4197 }
4216 4198
4217 /** Gets the value of "text-indent" */ 4199 /** Gets the value of "text-indent" */
4218 String get textIndent => 4200 String get textIndent =>
4219 getPropertyValue('text-indent'); 4201 getPropertyValue('text-indent');
4220 4202
4221 /** Sets the value of "text-indent" */ 4203 /** Sets the value of "text-indent" */
4222 void set textIndent(String value) { 4204 set textIndent(String value) {
4223 setProperty('text-indent', value, ''); 4205 setProperty('text-indent', value, '');
4224 } 4206 }
4225 4207
4226 /** Gets the value of "text-justify" */ 4208 /** Gets the value of "text-justify" */
4227 String get textJustify => 4209 String get textJustify =>
4228 getPropertyValue('text-justify'); 4210 getPropertyValue('text-justify');
4229 4211
4230 /** Sets the value of "text-justify" */ 4212 /** Sets the value of "text-justify" */
4231 void set textJustify(String value) { 4213 set textJustify(String value) {
4232 setProperty('text-justify', value, ''); 4214 setProperty('text-justify', value, '');
4233 } 4215 }
4234 4216
4235 /** Gets the value of "text-line-through-color" */ 4217 /** Gets the value of "text-line-through-color" */
4236 String get textLineThroughColor => 4218 String get textLineThroughColor =>
4237 getPropertyValue('text-line-through-color'); 4219 getPropertyValue('text-line-through-color');
4238 4220
4239 /** Sets the value of "text-line-through-color" */ 4221 /** Sets the value of "text-line-through-color" */
4240 void set textLineThroughColor(String value) { 4222 set textLineThroughColor(String value) {
4241 setProperty('text-line-through-color', value, ''); 4223 setProperty('text-line-through-color', value, '');
4242 } 4224 }
4243 4225
4244 /** Gets the value of "text-line-through-mode" */ 4226 /** Gets the value of "text-line-through-mode" */
4245 String get textLineThroughMode => 4227 String get textLineThroughMode =>
4246 getPropertyValue('text-line-through-mode'); 4228 getPropertyValue('text-line-through-mode');
4247 4229
4248 /** Sets the value of "text-line-through-mode" */ 4230 /** Sets the value of "text-line-through-mode" */
4249 void set textLineThroughMode(String value) { 4231 set textLineThroughMode(String value) {
4250 setProperty('text-line-through-mode', value, ''); 4232 setProperty('text-line-through-mode', value, '');
4251 } 4233 }
4252 4234
4253 /** Gets the value of "text-line-through-style" */ 4235 /** Gets the value of "text-line-through-style" */
4254 String get textLineThroughStyle => 4236 String get textLineThroughStyle =>
4255 getPropertyValue('text-line-through-style'); 4237 getPropertyValue('text-line-through-style');
4256 4238
4257 /** Sets the value of "text-line-through-style" */ 4239 /** Sets the value of "text-line-through-style" */
4258 void set textLineThroughStyle(String value) { 4240 set textLineThroughStyle(String value) {
4259 setProperty('text-line-through-style', value, ''); 4241 setProperty('text-line-through-style', value, '');
4260 } 4242 }
4261 4243
4262 /** Gets the value of "text-line-through-width" */ 4244 /** Gets the value of "text-line-through-width" */
4263 String get textLineThroughWidth => 4245 String get textLineThroughWidth =>
4264 getPropertyValue('text-line-through-width'); 4246 getPropertyValue('text-line-through-width');
4265 4247
4266 /** Sets the value of "text-line-through-width" */ 4248 /** Sets the value of "text-line-through-width" */
4267 void set textLineThroughWidth(String value) { 4249 set textLineThroughWidth(String value) {
4268 setProperty('text-line-through-width', value, ''); 4250 setProperty('text-line-through-width', value, '');
4269 } 4251 }
4270 4252
4271 /** Gets the value of "text-orientation" */ 4253 /** Gets the value of "text-orientation" */
4272 String get textOrientation => 4254 String get textOrientation =>
4273 getPropertyValue('text-orientation'); 4255 getPropertyValue('text-orientation');
4274 4256
4275 /** Sets the value of "text-orientation" */ 4257 /** Sets the value of "text-orientation" */
4276 void set textOrientation(String value) { 4258 set textOrientation(String value) {
4277 setProperty('text-orientation', value, ''); 4259 setProperty('text-orientation', value, '');
4278 } 4260 }
4279 4261
4280 /** Gets the value of "text-overflow" */ 4262 /** Gets the value of "text-overflow" */
4281 String get textOverflow => 4263 String get textOverflow =>
4282 getPropertyValue('text-overflow'); 4264 getPropertyValue('text-overflow');
4283 4265
4284 /** Sets the value of "text-overflow" */ 4266 /** Sets the value of "text-overflow" */
4285 void set textOverflow(String value) { 4267 set textOverflow(String value) {
4286 setProperty('text-overflow', value, ''); 4268 setProperty('text-overflow', value, '');
4287 } 4269 }
4288 4270
4289 /** Gets the value of "text-overline-color" */ 4271 /** Gets the value of "text-overline-color" */
4290 String get textOverlineColor => 4272 String get textOverlineColor =>
4291 getPropertyValue('text-overline-color'); 4273 getPropertyValue('text-overline-color');
4292 4274
4293 /** Sets the value of "text-overline-color" */ 4275 /** Sets the value of "text-overline-color" */
4294 void set textOverlineColor(String value) { 4276 set textOverlineColor(String value) {
4295 setProperty('text-overline-color', value, ''); 4277 setProperty('text-overline-color', value, '');
4296 } 4278 }
4297 4279
4298 /** Gets the value of "text-overline-mode" */ 4280 /** Gets the value of "text-overline-mode" */
4299 String get textOverlineMode => 4281 String get textOverlineMode =>
4300 getPropertyValue('text-overline-mode'); 4282 getPropertyValue('text-overline-mode');
4301 4283
4302 /** Sets the value of "text-overline-mode" */ 4284 /** Sets the value of "text-overline-mode" */
4303 void set textOverlineMode(String value) { 4285 set textOverlineMode(String value) {
4304 setProperty('text-overline-mode', value, ''); 4286 setProperty('text-overline-mode', value, '');
4305 } 4287 }
4306 4288
4307 /** Gets the value of "text-overline-style" */ 4289 /** Gets the value of "text-overline-style" */
4308 String get textOverlineStyle => 4290 String get textOverlineStyle =>
4309 getPropertyValue('text-overline-style'); 4291 getPropertyValue('text-overline-style');
4310 4292
4311 /** Sets the value of "text-overline-style" */ 4293 /** Sets the value of "text-overline-style" */
4312 void set textOverlineStyle(String value) { 4294 set textOverlineStyle(String value) {
4313 setProperty('text-overline-style', value, ''); 4295 setProperty('text-overline-style', value, '');
4314 } 4296 }
4315 4297
4316 /** Gets the value of "text-overline-width" */ 4298 /** Gets the value of "text-overline-width" */
4317 String get textOverlineWidth => 4299 String get textOverlineWidth =>
4318 getPropertyValue('text-overline-width'); 4300 getPropertyValue('text-overline-width');
4319 4301
4320 /** Sets the value of "text-overline-width" */ 4302 /** Sets the value of "text-overline-width" */
4321 void set textOverlineWidth(String value) { 4303 set textOverlineWidth(String value) {
4322 setProperty('text-overline-width', value, ''); 4304 setProperty('text-overline-width', value, '');
4323 } 4305 }
4324 4306
4325 /** Gets the value of "text-rendering" */ 4307 /** Gets the value of "text-rendering" */
4326 String get textRendering => 4308 String get textRendering =>
4327 getPropertyValue('text-rendering'); 4309 getPropertyValue('text-rendering');
4328 4310
4329 /** Sets the value of "text-rendering" */ 4311 /** Sets the value of "text-rendering" */
4330 void set textRendering(String value) { 4312 set textRendering(String value) {
4331 setProperty('text-rendering', value, ''); 4313 setProperty('text-rendering', value, '');
4332 } 4314 }
4333 4315
4334 /** Gets the value of "text-security" */ 4316 /** Gets the value of "text-security" */
4335 String get textSecurity => 4317 String get textSecurity =>
4336 getPropertyValue('text-security'); 4318 getPropertyValue('text-security');
4337 4319
4338 /** Sets the value of "text-security" */ 4320 /** Sets the value of "text-security" */
4339 void set textSecurity(String value) { 4321 set textSecurity(String value) {
4340 setProperty('text-security', value, ''); 4322 setProperty('text-security', value, '');
4341 } 4323 }
4342 4324
4343 /** Gets the value of "text-shadow" */ 4325 /** Gets the value of "text-shadow" */
4344 String get textShadow => 4326 String get textShadow =>
4345 getPropertyValue('text-shadow'); 4327 getPropertyValue('text-shadow');
4346 4328
4347 /** Sets the value of "text-shadow" */ 4329 /** Sets the value of "text-shadow" */
4348 void set textShadow(String value) { 4330 set textShadow(String value) {
4349 setProperty('text-shadow', value, ''); 4331 setProperty('text-shadow', value, '');
4350 } 4332 }
4351 4333
4352 /** Gets the value of "text-stroke" */ 4334 /** Gets the value of "text-stroke" */
4353 String get textStroke => 4335 String get textStroke =>
4354 getPropertyValue('text-stroke'); 4336 getPropertyValue('text-stroke');
4355 4337
4356 /** Sets the value of "text-stroke" */ 4338 /** Sets the value of "text-stroke" */
4357 void set textStroke(String value) { 4339 set textStroke(String value) {
4358 setProperty('text-stroke', value, ''); 4340 setProperty('text-stroke', value, '');
4359 } 4341 }
4360 4342
4361 /** Gets the value of "text-stroke-color" */ 4343 /** Gets the value of "text-stroke-color" */
4362 String get textStrokeColor => 4344 String get textStrokeColor =>
4363 getPropertyValue('text-stroke-color'); 4345 getPropertyValue('text-stroke-color');
4364 4346
4365 /** Sets the value of "text-stroke-color" */ 4347 /** Sets the value of "text-stroke-color" */
4366 void set textStrokeColor(String value) { 4348 set textStrokeColor(String value) {
4367 setProperty('text-stroke-color', value, ''); 4349 setProperty('text-stroke-color', value, '');
4368 } 4350 }
4369 4351
4370 /** Gets the value of "text-stroke-width" */ 4352 /** Gets the value of "text-stroke-width" */
4371 String get textStrokeWidth => 4353 String get textStrokeWidth =>
4372 getPropertyValue('text-stroke-width'); 4354 getPropertyValue('text-stroke-width');
4373 4355
4374 /** Sets the value of "text-stroke-width" */ 4356 /** Sets the value of "text-stroke-width" */
4375 void set textStrokeWidth(String value) { 4357 set textStrokeWidth(String value) {
4376 setProperty('text-stroke-width', value, ''); 4358 setProperty('text-stroke-width', value, '');
4377 } 4359 }
4378 4360
4379 /** Gets the value of "text-transform" */ 4361 /** Gets the value of "text-transform" */
4380 String get textTransform => 4362 String get textTransform =>
4381 getPropertyValue('text-transform'); 4363 getPropertyValue('text-transform');
4382 4364
4383 /** Sets the value of "text-transform" */ 4365 /** Sets the value of "text-transform" */
4384 void set textTransform(String value) { 4366 set textTransform(String value) {
4385 setProperty('text-transform', value, ''); 4367 setProperty('text-transform', value, '');
4386 } 4368 }
4387 4369
4388 /** Gets the value of "text-underline-color" */ 4370 /** Gets the value of "text-underline-color" */
4389 String get textUnderlineColor => 4371 String get textUnderlineColor =>
4390 getPropertyValue('text-underline-color'); 4372 getPropertyValue('text-underline-color');
4391 4373
4392 /** Sets the value of "text-underline-color" */ 4374 /** Sets the value of "text-underline-color" */
4393 void set textUnderlineColor(String value) { 4375 set textUnderlineColor(String value) {
4394 setProperty('text-underline-color', value, ''); 4376 setProperty('text-underline-color', value, '');
4395 } 4377 }
4396 4378
4397 /** Gets the value of "text-underline-mode" */ 4379 /** Gets the value of "text-underline-mode" */
4398 String get textUnderlineMode => 4380 String get textUnderlineMode =>
4399 getPropertyValue('text-underline-mode'); 4381 getPropertyValue('text-underline-mode');
4400 4382
4401 /** Sets the value of "text-underline-mode" */ 4383 /** Sets the value of "text-underline-mode" */
4402 void set textUnderlineMode(String value) { 4384 set textUnderlineMode(String value) {
4403 setProperty('text-underline-mode', value, ''); 4385 setProperty('text-underline-mode', value, '');
4404 } 4386 }
4405 4387
4406 /** Gets the value of "text-underline-position" */ 4388 /** Gets the value of "text-underline-position" */
4407 String get textUnderlinePosition => 4389 String get textUnderlinePosition =>
4408 getPropertyValue('text-underline-position'); 4390 getPropertyValue('text-underline-position');
4409 4391
4410 /** Sets the value of "text-underline-position" */ 4392 /** Sets the value of "text-underline-position" */
4411 void set textUnderlinePosition(String value) { 4393 set textUnderlinePosition(String value) {
4412 setProperty('text-underline-position', value, ''); 4394 setProperty('text-underline-position', value, '');
4413 } 4395 }
4414 4396
4415 /** Gets the value of "text-underline-style" */ 4397 /** Gets the value of "text-underline-style" */
4416 String get textUnderlineStyle => 4398 String get textUnderlineStyle =>
4417 getPropertyValue('text-underline-style'); 4399 getPropertyValue('text-underline-style');
4418 4400
4419 /** Sets the value of "text-underline-style" */ 4401 /** Sets the value of "text-underline-style" */
4420 void set textUnderlineStyle(String value) { 4402 set textUnderlineStyle(String value) {
4421 setProperty('text-underline-style', value, ''); 4403 setProperty('text-underline-style', value, '');
4422 } 4404 }
4423 4405
4424 /** Gets the value of "text-underline-width" */ 4406 /** Gets the value of "text-underline-width" */
4425 String get textUnderlineWidth => 4407 String get textUnderlineWidth =>
4426 getPropertyValue('text-underline-width'); 4408 getPropertyValue('text-underline-width');
4427 4409
4428 /** Sets the value of "text-underline-width" */ 4410 /** Sets the value of "text-underline-width" */
4429 void set textUnderlineWidth(String value) { 4411 set textUnderlineWidth(String value) {
4430 setProperty('text-underline-width', value, ''); 4412 setProperty('text-underline-width', value, '');
4431 } 4413 }
4432 4414
4433 /** Gets the value of "top" */ 4415 /** Gets the value of "top" */
4434 String get top => 4416 String get top =>
4435 getPropertyValue('top'); 4417 getPropertyValue('top');
4436 4418
4437 /** Sets the value of "top" */ 4419 /** Sets the value of "top" */
4438 void set top(String value) { 4420 set top(String value) {
4439 setProperty('top', value, ''); 4421 setProperty('top', value, '');
4440 } 4422 }
4441 4423
4442 /** Gets the value of "touch-action" */ 4424 /** Gets the value of "touch-action" */
4443 String get touchAction => 4425 String get touchAction =>
4444 getPropertyValue('touch-action'); 4426 getPropertyValue('touch-action');
4445 4427
4446 /** Sets the value of "touch-action" */ 4428 /** Sets the value of "touch-action" */
4447 void set touchAction(String value) { 4429 set touchAction(String value) {
4448 setProperty('touch-action', value, ''); 4430 setProperty('touch-action', value, '');
4449 } 4431 }
4450 4432
4451 /** Gets the value of "touch-action-delay" */ 4433 /** Gets the value of "touch-action-delay" */
4452 String get touchActionDelay => 4434 String get touchActionDelay =>
4453 getPropertyValue('touch-action-delay'); 4435 getPropertyValue('touch-action-delay');
4454 4436
4455 /** Sets the value of "touch-action-delay" */ 4437 /** Sets the value of "touch-action-delay" */
4456 void set touchActionDelay(String value) { 4438 set touchActionDelay(String value) {
4457 setProperty('touch-action-delay', value, ''); 4439 setProperty('touch-action-delay', value, '');
4458 } 4440 }
4459 4441
4460 /** Gets the value of "transform" */ 4442 /** Gets the value of "transform" */
4461 String get transform => 4443 String get transform =>
4462 getPropertyValue('transform'); 4444 getPropertyValue('transform');
4463 4445
4464 /** Sets the value of "transform" */ 4446 /** Sets the value of "transform" */
4465 void set transform(String value) { 4447 set transform(String value) {
4466 setProperty('transform', value, ''); 4448 setProperty('transform', value, '');
4467 } 4449 }
4468 4450
4469 /** Gets the value of "transform-origin" */ 4451 /** Gets the value of "transform-origin" */
4470 String get transformOrigin => 4452 String get transformOrigin =>
4471 getPropertyValue('transform-origin'); 4453 getPropertyValue('transform-origin');
4472 4454
4473 /** Sets the value of "transform-origin" */ 4455 /** Sets the value of "transform-origin" */
4474 void set transformOrigin(String value) { 4456 set transformOrigin(String value) {
4475 setProperty('transform-origin', value, ''); 4457 setProperty('transform-origin', value, '');
4476 } 4458 }
4477 4459
4478 /** Gets the value of "transform-origin-x" */ 4460 /** Gets the value of "transform-origin-x" */
4479 String get transformOriginX => 4461 String get transformOriginX =>
4480 getPropertyValue('transform-origin-x'); 4462 getPropertyValue('transform-origin-x');
4481 4463
4482 /** Sets the value of "transform-origin-x" */ 4464 /** Sets the value of "transform-origin-x" */
4483 void set transformOriginX(String value) { 4465 set transformOriginX(String value) {
4484 setProperty('transform-origin-x', value, ''); 4466 setProperty('transform-origin-x', value, '');
4485 } 4467 }
4486 4468
4487 /** Gets the value of "transform-origin-y" */ 4469 /** Gets the value of "transform-origin-y" */
4488 String get transformOriginY => 4470 String get transformOriginY =>
4489 getPropertyValue('transform-origin-y'); 4471 getPropertyValue('transform-origin-y');
4490 4472
4491 /** Sets the value of "transform-origin-y" */ 4473 /** Sets the value of "transform-origin-y" */
4492 void set transformOriginY(String value) { 4474 set transformOriginY(String value) {
4493 setProperty('transform-origin-y', value, ''); 4475 setProperty('transform-origin-y', value, '');
4494 } 4476 }
4495 4477
4496 /** Gets the value of "transform-origin-z" */ 4478 /** Gets the value of "transform-origin-z" */
4497 String get transformOriginZ => 4479 String get transformOriginZ =>
4498 getPropertyValue('transform-origin-z'); 4480 getPropertyValue('transform-origin-z');
4499 4481
4500 /** Sets the value of "transform-origin-z" */ 4482 /** Sets the value of "transform-origin-z" */
4501 void set transformOriginZ(String value) { 4483 set transformOriginZ(String value) {
4502 setProperty('transform-origin-z', value, ''); 4484 setProperty('transform-origin-z', value, '');
4503 } 4485 }
4504 4486
4505 /** Gets the value of "transform-style" */ 4487 /** Gets the value of "transform-style" */
4506 String get transformStyle => 4488 String get transformStyle =>
4507 getPropertyValue('transform-style'); 4489 getPropertyValue('transform-style');
4508 4490
4509 /** Sets the value of "transform-style" */ 4491 /** Sets the value of "transform-style" */
4510 void set transformStyle(String value) { 4492 set transformStyle(String value) {
4511 setProperty('transform-style', value, ''); 4493 setProperty('transform-style', value, '');
4512 } 4494 }
4513 4495
4514 /** Gets the value of "transition" */@SupportedBrowser(SupportedBrowser.CHROME ) 4496 /** Gets the value of "transition" */@SupportedBrowser(SupportedBrowser.CHROME )
4515 @SupportedBrowser(SupportedBrowser.FIREFOX) 4497 @SupportedBrowser(SupportedBrowser.FIREFOX)
4516 @SupportedBrowser(SupportedBrowser.IE, '10') 4498 @SupportedBrowser(SupportedBrowser.IE, '10')
4517 @SupportedBrowser(SupportedBrowser.SAFARI) 4499 @SupportedBrowser(SupportedBrowser.SAFARI)
4518 String get transition => 4500 String get transition =>
4519 getPropertyValue('transition'); 4501 getPropertyValue('transition');
4520 4502
4521 /** Sets the value of "transition" */@SupportedBrowser(SupportedBrowser.CHROME ) 4503 /** Sets the value of "transition" */@SupportedBrowser(SupportedBrowser.CHROME )
4522 @SupportedBrowser(SupportedBrowser.FIREFOX) 4504 @SupportedBrowser(SupportedBrowser.FIREFOX)
4523 @SupportedBrowser(SupportedBrowser.IE, '10') 4505 @SupportedBrowser(SupportedBrowser.IE, '10')
4524 @SupportedBrowser(SupportedBrowser.SAFARI) 4506 @SupportedBrowser(SupportedBrowser.SAFARI)
4525 void set transition(String value) { 4507 set transition(String value) {
4526 setProperty('transition', value, ''); 4508 setProperty('transition', value, '');
4527 } 4509 }
4528 4510
4529 /** Gets the value of "transition-delay" */ 4511 /** Gets the value of "transition-delay" */
4530 String get transitionDelay => 4512 String get transitionDelay =>
4531 getPropertyValue('transition-delay'); 4513 getPropertyValue('transition-delay');
4532 4514
4533 /** Sets the value of "transition-delay" */ 4515 /** Sets the value of "transition-delay" */
4534 void set transitionDelay(String value) { 4516 set transitionDelay(String value) {
4535 setProperty('transition-delay', value, ''); 4517 setProperty('transition-delay', value, '');
4536 } 4518 }
4537 4519
4538 /** Gets the value of "transition-duration" */ 4520 /** Gets the value of "transition-duration" */
4539 String get transitionDuration => 4521 String get transitionDuration =>
4540 getPropertyValue('transition-duration'); 4522 getPropertyValue('transition-duration');
4541 4523
4542 /** Sets the value of "transition-duration" */ 4524 /** Sets the value of "transition-duration" */
4543 void set transitionDuration(String value) { 4525 set transitionDuration(String value) {
4544 setProperty('transition-duration', value, ''); 4526 setProperty('transition-duration', value, '');
4545 } 4527 }
4546 4528
4547 /** Gets the value of "transition-property" */ 4529 /** Gets the value of "transition-property" */
4548 String get transitionProperty => 4530 String get transitionProperty =>
4549 getPropertyValue('transition-property'); 4531 getPropertyValue('transition-property');
4550 4532
4551 /** Sets the value of "transition-property" */ 4533 /** Sets the value of "transition-property" */
4552 void set transitionProperty(String value) { 4534 set transitionProperty(String value) {
4553 setProperty('transition-property', value, ''); 4535 setProperty('transition-property', value, '');
4554 } 4536 }
4555 4537
4556 /** Gets the value of "transition-timing-function" */ 4538 /** Gets the value of "transition-timing-function" */
4557 String get transitionTimingFunction => 4539 String get transitionTimingFunction =>
4558 getPropertyValue('transition-timing-function'); 4540 getPropertyValue('transition-timing-function');
4559 4541
4560 /** Sets the value of "transition-timing-function" */ 4542 /** Sets the value of "transition-timing-function" */
4561 void set transitionTimingFunction(String value) { 4543 set transitionTimingFunction(String value) {
4562 setProperty('transition-timing-function', value, ''); 4544 setProperty('transition-timing-function', value, '');
4563 } 4545 }
4564 4546
4565 /** Gets the value of "unicode-bidi" */ 4547 /** Gets the value of "unicode-bidi" */
4566 String get unicodeBidi => 4548 String get unicodeBidi =>
4567 getPropertyValue('unicode-bidi'); 4549 getPropertyValue('unicode-bidi');
4568 4550
4569 /** Sets the value of "unicode-bidi" */ 4551 /** Sets the value of "unicode-bidi" */
4570 void set unicodeBidi(String value) { 4552 set unicodeBidi(String value) {
4571 setProperty('unicode-bidi', value, ''); 4553 setProperty('unicode-bidi', value, '');
4572 } 4554 }
4573 4555
4574 /** Gets the value of "unicode-range" */ 4556 /** Gets the value of "unicode-range" */
4575 String get unicodeRange => 4557 String get unicodeRange =>
4576 getPropertyValue('unicode-range'); 4558 getPropertyValue('unicode-range');
4577 4559
4578 /** Sets the value of "unicode-range" */ 4560 /** Sets the value of "unicode-range" */
4579 void set unicodeRange(String value) { 4561 set unicodeRange(String value) {
4580 setProperty('unicode-range', value, ''); 4562 setProperty('unicode-range', value, '');
4581 } 4563 }
4582 4564
4583 /** Gets the value of "user-drag" */ 4565 /** Gets the value of "user-drag" */
4584 String get userDrag => 4566 String get userDrag =>
4585 getPropertyValue('user-drag'); 4567 getPropertyValue('user-drag');
4586 4568
4587 /** Sets the value of "user-drag" */ 4569 /** Sets the value of "user-drag" */
4588 void set userDrag(String value) { 4570 set userDrag(String value) {
4589 setProperty('user-drag', value, ''); 4571 setProperty('user-drag', value, '');
4590 } 4572 }
4591 4573
4592 /** Gets the value of "user-modify" */ 4574 /** Gets the value of "user-modify" */
4593 String get userModify => 4575 String get userModify =>
4594 getPropertyValue('user-modify'); 4576 getPropertyValue('user-modify');
4595 4577
4596 /** Sets the value of "user-modify" */ 4578 /** Sets the value of "user-modify" */
4597 void set userModify(String value) { 4579 set userModify(String value) {
4598 setProperty('user-modify', value, ''); 4580 setProperty('user-modify', value, '');
4599 } 4581 }
4600 4582
4601 /** Gets the value of "user-select" */ 4583 /** Gets the value of "user-select" */
4602 String get userSelect => 4584 String get userSelect =>
4603 getPropertyValue('user-select'); 4585 getPropertyValue('user-select');
4604 4586
4605 /** Sets the value of "user-select" */ 4587 /** Sets the value of "user-select" */
4606 void set userSelect(String value) { 4588 set userSelect(String value) {
4607 setProperty('user-select', value, ''); 4589 setProperty('user-select', value, '');
4608 } 4590 }
4609 4591
4610 /** Gets the value of "user-zoom" */ 4592 /** Gets the value of "user-zoom" */
4611 String get userZoom => 4593 String get userZoom =>
4612 getPropertyValue('user-zoom'); 4594 getPropertyValue('user-zoom');
4613 4595
4614 /** Sets the value of "user-zoom" */ 4596 /** Sets the value of "user-zoom" */
4615 void set userZoom(String value) { 4597 set userZoom(String value) {
4616 setProperty('user-zoom', value, ''); 4598 setProperty('user-zoom', value, '');
4617 } 4599 }
4618 4600
4619 /** Gets the value of "vertical-align" */ 4601 /** Gets the value of "vertical-align" */
4620 String get verticalAlign => 4602 String get verticalAlign =>
4621 getPropertyValue('vertical-align'); 4603 getPropertyValue('vertical-align');
4622 4604
4623 /** Sets the value of "vertical-align" */ 4605 /** Sets the value of "vertical-align" */
4624 void set verticalAlign(String value) { 4606 set verticalAlign(String value) {
4625 setProperty('vertical-align', value, ''); 4607 setProperty('vertical-align', value, '');
4626 } 4608 }
4627 4609
4628 /** Gets the value of "visibility" */ 4610 /** Gets the value of "visibility" */
4629 String get visibility => 4611 String get visibility =>
4630 getPropertyValue('visibility'); 4612 getPropertyValue('visibility');
4631 4613
4632 /** Sets the value of "visibility" */ 4614 /** Sets the value of "visibility" */
4633 void set visibility(String value) { 4615 set visibility(String value) {
4634 setProperty('visibility', value, ''); 4616 setProperty('visibility', value, '');
4635 } 4617 }
4636 4618
4637 /** Gets the value of "white-space" */ 4619 /** Gets the value of "white-space" */
4638 String get whiteSpace => 4620 String get whiteSpace =>
4639 getPropertyValue('white-space'); 4621 getPropertyValue('white-space');
4640 4622
4641 /** Sets the value of "white-space" */ 4623 /** Sets the value of "white-space" */
4642 void set whiteSpace(String value) { 4624 set whiteSpace(String value) {
4643 setProperty('white-space', value, ''); 4625 setProperty('white-space', value, '');
4644 } 4626 }
4645 4627
4646 /** Gets the value of "widows" */ 4628 /** Gets the value of "widows" */
4647 String get widows => 4629 String get widows =>
4648 getPropertyValue('widows'); 4630 getPropertyValue('widows');
4649 4631
4650 /** Sets the value of "widows" */ 4632 /** Sets the value of "widows" */
4651 void set widows(String value) { 4633 set widows(String value) {
4652 setProperty('widows', value, ''); 4634 setProperty('widows', value, '');
4653 } 4635 }
4654 4636
4655 /** Gets the value of "width" */ 4637 /** Gets the value of "width" */
4656 String get width => 4638 String get width =>
4657 getPropertyValue('width'); 4639 getPropertyValue('width');
4658 4640
4659 /** Sets the value of "width" */ 4641 /** Sets the value of "width" */
4660 void set width(String value) { 4642 set width(String value) {
4661 setProperty('width', value, ''); 4643 setProperty('width', value, '');
4662 } 4644 }
4663 4645
4664 /** Gets the value of "will-change" */ 4646 /** Gets the value of "will-change" */
4665 String get willChange => 4647 String get willChange =>
4666 getPropertyValue('will-change'); 4648 getPropertyValue('will-change');
4667 4649
4668 /** Sets the value of "will-change" */ 4650 /** Sets the value of "will-change" */
4669 void set willChange(String value) { 4651 set willChange(String value) {
4670 setProperty('will-change', value, ''); 4652 setProperty('will-change', value, '');
4671 } 4653 }
4672 4654
4673 /** Gets the value of "word-break" */ 4655 /** Gets the value of "word-break" */
4674 String get wordBreak => 4656 String get wordBreak =>
4675 getPropertyValue('word-break'); 4657 getPropertyValue('word-break');
4676 4658
4677 /** Sets the value of "word-break" */ 4659 /** Sets the value of "word-break" */
4678 void set wordBreak(String value) { 4660 set wordBreak(String value) {
4679 setProperty('word-break', value, ''); 4661 setProperty('word-break', value, '');
4680 } 4662 }
4681 4663
4682 /** Gets the value of "word-spacing" */ 4664 /** Gets the value of "word-spacing" */
4683 String get wordSpacing => 4665 String get wordSpacing =>
4684 getPropertyValue('word-spacing'); 4666 getPropertyValue('word-spacing');
4685 4667
4686 /** Sets the value of "word-spacing" */ 4668 /** Sets the value of "word-spacing" */
4687 void set wordSpacing(String value) { 4669 set wordSpacing(String value) {
4688 setProperty('word-spacing', value, ''); 4670 setProperty('word-spacing', value, '');
4689 } 4671 }
4690 4672
4691 /** Gets the value of "word-wrap" */ 4673 /** Gets the value of "word-wrap" */
4692 String get wordWrap => 4674 String get wordWrap =>
4693 getPropertyValue('word-wrap'); 4675 getPropertyValue('word-wrap');
4694 4676
4695 /** Sets the value of "word-wrap" */ 4677 /** Sets the value of "word-wrap" */
4696 void set wordWrap(String value) { 4678 set wordWrap(String value) {
4697 setProperty('word-wrap', value, ''); 4679 setProperty('word-wrap', value, '');
4698 } 4680 }
4699 4681
4700 /** Gets the value of "wrap-flow" */ 4682 /** Gets the value of "wrap-flow" */
4701 String get wrapFlow => 4683 String get wrapFlow =>
4702 getPropertyValue('wrap-flow'); 4684 getPropertyValue('wrap-flow');
4703 4685
4704 /** Sets the value of "wrap-flow" */ 4686 /** Sets the value of "wrap-flow" */
4705 void set wrapFlow(String value) { 4687 set wrapFlow(String value) {
4706 setProperty('wrap-flow', value, ''); 4688 setProperty('wrap-flow', value, '');
4707 } 4689 }
4708 4690
4709 /** Gets the value of "wrap-through" */ 4691 /** Gets the value of "wrap-through" */
4710 String get wrapThrough => 4692 String get wrapThrough =>
4711 getPropertyValue('wrap-through'); 4693 getPropertyValue('wrap-through');
4712 4694
4713 /** Sets the value of "wrap-through" */ 4695 /** Sets the value of "wrap-through" */
4714 void set wrapThrough(String value) { 4696 set wrapThrough(String value) {
4715 setProperty('wrap-through', value, ''); 4697 setProperty('wrap-through', value, '');
4716 } 4698 }
4717 4699
4718 /** Gets the value of "writing-mode" */ 4700 /** Gets the value of "writing-mode" */
4719 String get writingMode => 4701 String get writingMode =>
4720 getPropertyValue('writing-mode'); 4702 getPropertyValue('writing-mode');
4721 4703
4722 /** Sets the value of "writing-mode" */ 4704 /** Sets the value of "writing-mode" */
4723 void set writingMode(String value) { 4705 set writingMode(String value) {
4724 setProperty('writing-mode', value, ''); 4706 setProperty('writing-mode', value, '');
4725 } 4707 }
4726 4708
4727 /** Gets the value of "z-index" */ 4709 /** Gets the value of "z-index" */
4728 String get zIndex => 4710 String get zIndex =>
4729 getPropertyValue('z-index'); 4711 getPropertyValue('z-index');
4730 4712
4731 /** Sets the value of "z-index" */ 4713 /** Sets the value of "z-index" */
4732 void set zIndex(String value) { 4714 set zIndex(String value) {
4733 setProperty('z-index', value, ''); 4715 setProperty('z-index', value, '');
4734 } 4716 }
4735 4717
4736 /** Gets the value of "zoom" */ 4718 /** Gets the value of "zoom" */
4737 String get zoom => 4719 String get zoom =>
4738 getPropertyValue('zoom'); 4720 getPropertyValue('zoom');
4739 4721
4740 /** Sets the value of "zoom" */ 4722 /** Sets the value of "zoom" */
4741 void set zoom(String value) { 4723 set zoom(String value) {
4742 setProperty('zoom', value, ''); 4724 setProperty('zoom', value, '');
4743 } 4725 }
4744 } 4726 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698