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