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

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

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

Powered by Google App Engine
This is Rietveld 408576698