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