| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 56d48e347683d09c795718730a4827fd469916c7..324e16ea20a6c60455880b2efdfa22b0c90dd484 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -1488,12 +1488,39 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| }
|
|
|
| // TODO(jacobr): generate this list of properties using the existing script.
|
| - /** Gets the value of "animation" */
|
| + /** Gets the value of "align-content" */
|
| + String get alignContent =>
|
| + getPropertyValue('${_browserPrefix}align-content');
|
| +
|
| + /** Sets the value of "align-content" */
|
| + void set alignContent(String value) {
|
| + setProperty('${_browserPrefix}align-content', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "align-items" */
|
| + String get alignItems =>
|
| + getPropertyValue('${_browserPrefix}align-items');
|
| +
|
| + /** Sets the value of "align-items" */
|
| + void set alignItems(String value) {
|
| + setProperty('${_browserPrefix}align-items', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "align-self" */
|
| + String get alignSelf =>
|
| + getPropertyValue('${_browserPrefix}align-self');
|
| +
|
| + /** Sets the value of "align-self" */
|
| + void set alignSelf(String value) {
|
| + setProperty('${_browserPrefix}align-self', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "animation" */
|
| String get animation =>
|
| getPropertyValue('${_browserPrefix}animation');
|
|
|
| /** Sets the value of "animation" */
|
| - void set animation(var value) {
|
| + void set animation(String value) {
|
| setProperty('${_browserPrefix}animation', value, '');
|
| }
|
|
|
| @@ -1502,7 +1529,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-delay');
|
|
|
| /** Sets the value of "animation-delay" */
|
| - void set animationDelay(var value) {
|
| + void set animationDelay(String value) {
|
| setProperty('${_browserPrefix}animation-delay', value, '');
|
| }
|
|
|
| @@ -1511,7 +1538,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-direction');
|
|
|
| /** Sets the value of "animation-direction" */
|
| - void set animationDirection(var value) {
|
| + void set animationDirection(String value) {
|
| setProperty('${_browserPrefix}animation-direction', value, '');
|
| }
|
|
|
| @@ -1520,7 +1547,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-duration');
|
|
|
| /** Sets the value of "animation-duration" */
|
| - void set animationDuration(var value) {
|
| + void set animationDuration(String value) {
|
| setProperty('${_browserPrefix}animation-duration', value, '');
|
| }
|
|
|
| @@ -1529,7 +1556,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-fill-mode');
|
|
|
| /** Sets the value of "animation-fill-mode" */
|
| - void set animationFillMode(var value) {
|
| + void set animationFillMode(String value) {
|
| setProperty('${_browserPrefix}animation-fill-mode', value, '');
|
| }
|
|
|
| @@ -1538,7 +1565,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-iteration-count');
|
|
|
| /** Sets the value of "animation-iteration-count" */
|
| - void set animationIterationCount(var value) {
|
| + void set animationIterationCount(String value) {
|
| setProperty('${_browserPrefix}animation-iteration-count', value, '');
|
| }
|
|
|
| @@ -1547,7 +1574,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-name');
|
|
|
| /** Sets the value of "animation-name" */
|
| - void set animationName(var value) {
|
| + void set animationName(String value) {
|
| setProperty('${_browserPrefix}animation-name', value, '');
|
| }
|
|
|
| @@ -1556,7 +1583,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-play-state');
|
|
|
| /** Sets the value of "animation-play-state" */
|
| - void set animationPlayState(var value) {
|
| + void set animationPlayState(String value) {
|
| setProperty('${_browserPrefix}animation-play-state', value, '');
|
| }
|
|
|
| @@ -1565,25 +1592,43 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}animation-timing-function');
|
|
|
| /** Sets the value of "animation-timing-function" */
|
| - void set animationTimingFunction(var value) {
|
| + void set animationTimingFunction(String value) {
|
| setProperty('${_browserPrefix}animation-timing-function', value, '');
|
| }
|
|
|
| + /** Gets the value of "app-region" */
|
| + String get appRegion =>
|
| + getPropertyValue('${_browserPrefix}app-region');
|
| +
|
| + /** Sets the value of "app-region" */
|
| + void set appRegion(String value) {
|
| + setProperty('${_browserPrefix}app-region', value, '');
|
| + }
|
| +
|
| /** Gets the value of "appearance" */
|
| String get appearance =>
|
| getPropertyValue('${_browserPrefix}appearance');
|
|
|
| /** Sets the value of "appearance" */
|
| - void set appearance(var value) {
|
| + void set appearance(String value) {
|
| setProperty('${_browserPrefix}appearance', value, '');
|
| }
|
|
|
| + /** Gets the value of "aspect-ratio" */
|
| + String get aspectRatio =>
|
| + getPropertyValue('${_browserPrefix}aspect-ratio');
|
| +
|
| + /** Sets the value of "aspect-ratio" */
|
| + void set aspectRatio(String value) {
|
| + setProperty('${_browserPrefix}aspect-ratio', value, '');
|
| + }
|
| +
|
| /** Gets the value of "backface-visibility" */
|
| String get backfaceVisibility =>
|
| getPropertyValue('${_browserPrefix}backface-visibility');
|
|
|
| /** Sets the value of "backface-visibility" */
|
| - void set backfaceVisibility(var value) {
|
| + void set backfaceVisibility(String value) {
|
| setProperty('${_browserPrefix}backface-visibility', value, '');
|
| }
|
|
|
| @@ -1592,7 +1637,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background');
|
|
|
| /** Sets the value of "background" */
|
| - void set background(var value) {
|
| + void set background(String value) {
|
| setProperty('background', value, '');
|
| }
|
|
|
| @@ -1601,7 +1646,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-attachment');
|
|
|
| /** Sets the value of "background-attachment" */
|
| - void set backgroundAttachment(var value) {
|
| + void set backgroundAttachment(String value) {
|
| setProperty('background-attachment', value, '');
|
| }
|
|
|
| @@ -1610,7 +1655,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-clip');
|
|
|
| /** Sets the value of "background-clip" */
|
| - void set backgroundClip(var value) {
|
| + void set backgroundClip(String value) {
|
| setProperty('background-clip', value, '');
|
| }
|
|
|
| @@ -1619,7 +1664,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-color');
|
|
|
| /** Sets the value of "background-color" */
|
| - void set backgroundColor(var value) {
|
| + void set backgroundColor(String value) {
|
| setProperty('background-color', value, '');
|
| }
|
|
|
| @@ -1628,7 +1673,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}background-composite');
|
|
|
| /** Sets the value of "background-composite" */
|
| - void set backgroundComposite(var value) {
|
| + void set backgroundComposite(String value) {
|
| setProperty('${_browserPrefix}background-composite', value, '');
|
| }
|
|
|
| @@ -1637,7 +1682,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-image');
|
|
|
| /** Sets the value of "background-image" */
|
| - void set backgroundImage(var value) {
|
| + void set backgroundImage(String value) {
|
| setProperty('background-image', value, '');
|
| }
|
|
|
| @@ -1646,7 +1691,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-origin');
|
|
|
| /** Sets the value of "background-origin" */
|
| - void set backgroundOrigin(var value) {
|
| + void set backgroundOrigin(String value) {
|
| setProperty('background-origin', value, '');
|
| }
|
|
|
| @@ -1655,7 +1700,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-position');
|
|
|
| /** Sets the value of "background-position" */
|
| - void set backgroundPosition(var value) {
|
| + void set backgroundPosition(String value) {
|
| setProperty('background-position', value, '');
|
| }
|
|
|
| @@ -1664,7 +1709,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-position-x');
|
|
|
| /** Sets the value of "background-position-x" */
|
| - void set backgroundPositionX(var value) {
|
| + void set backgroundPositionX(String value) {
|
| setProperty('background-position-x', value, '');
|
| }
|
|
|
| @@ -1673,7 +1718,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-position-y');
|
|
|
| /** Sets the value of "background-position-y" */
|
| - void set backgroundPositionY(var value) {
|
| + void set backgroundPositionY(String value) {
|
| setProperty('background-position-y', value, '');
|
| }
|
|
|
| @@ -1682,7 +1727,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-repeat');
|
|
|
| /** Sets the value of "background-repeat" */
|
| - void set backgroundRepeat(var value) {
|
| + void set backgroundRepeat(String value) {
|
| setProperty('background-repeat', value, '');
|
| }
|
|
|
| @@ -1691,7 +1736,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-repeat-x');
|
|
|
| /** Sets the value of "background-repeat-x" */
|
| - void set backgroundRepeatX(var value) {
|
| + void set backgroundRepeatX(String value) {
|
| setProperty('background-repeat-x', value, '');
|
| }
|
|
|
| @@ -1700,7 +1745,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-repeat-y');
|
|
|
| /** Sets the value of "background-repeat-y" */
|
| - void set backgroundRepeatY(var value) {
|
| + void set backgroundRepeatY(String value) {
|
| setProperty('background-repeat-y', value, '');
|
| }
|
|
|
| @@ -1709,16 +1754,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('background-size');
|
|
|
| /** Sets the value of "background-size" */
|
| - void set backgroundSize(var value) {
|
| + void set backgroundSize(String value) {
|
| setProperty('background-size', value, '');
|
| }
|
|
|
| + /** Gets the value of "blend-mode" */
|
| + String get blendMode =>
|
| + getPropertyValue('${_browserPrefix}blend-mode');
|
| +
|
| + /** Sets the value of "blend-mode" */
|
| + void set blendMode(String value) {
|
| + setProperty('${_browserPrefix}blend-mode', value, '');
|
| + }
|
| +
|
| /** Gets the value of "border" */
|
| String get border =>
|
| getPropertyValue('border');
|
|
|
| /** Sets the value of "border" */
|
| - void set border(var value) {
|
| + void set border(String value) {
|
| setProperty('border', value, '');
|
| }
|
|
|
| @@ -1727,7 +1781,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-after');
|
|
|
| /** Sets the value of "border-after" */
|
| - void set borderAfter(var value) {
|
| + void set borderAfter(String value) {
|
| setProperty('${_browserPrefix}border-after', value, '');
|
| }
|
|
|
| @@ -1736,7 +1790,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-after-color');
|
|
|
| /** Sets the value of "border-after-color" */
|
| - void set borderAfterColor(var value) {
|
| + void set borderAfterColor(String value) {
|
| setProperty('${_browserPrefix}border-after-color', value, '');
|
| }
|
|
|
| @@ -1745,7 +1799,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-after-style');
|
|
|
| /** Sets the value of "border-after-style" */
|
| - void set borderAfterStyle(var value) {
|
| + void set borderAfterStyle(String value) {
|
| setProperty('${_browserPrefix}border-after-style', value, '');
|
| }
|
|
|
| @@ -1754,7 +1808,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-after-width');
|
|
|
| /** Sets the value of "border-after-width" */
|
| - void set borderAfterWidth(var value) {
|
| + void set borderAfterWidth(String value) {
|
| setProperty('${_browserPrefix}border-after-width', value, '');
|
| }
|
|
|
| @@ -1763,7 +1817,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-before');
|
|
|
| /** Sets the value of "border-before" */
|
| - void set borderBefore(var value) {
|
| + void set borderBefore(String value) {
|
| setProperty('${_browserPrefix}border-before', value, '');
|
| }
|
|
|
| @@ -1772,7 +1826,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-before-color');
|
|
|
| /** Sets the value of "border-before-color" */
|
| - void set borderBeforeColor(var value) {
|
| + void set borderBeforeColor(String value) {
|
| setProperty('${_browserPrefix}border-before-color', value, '');
|
| }
|
|
|
| @@ -1781,7 +1835,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-before-style');
|
|
|
| /** Sets the value of "border-before-style" */
|
| - void set borderBeforeStyle(var value) {
|
| + void set borderBeforeStyle(String value) {
|
| setProperty('${_browserPrefix}border-before-style', value, '');
|
| }
|
|
|
| @@ -1790,7 +1844,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-before-width');
|
|
|
| /** Sets the value of "border-before-width" */
|
| - void set borderBeforeWidth(var value) {
|
| + void set borderBeforeWidth(String value) {
|
| setProperty('${_browserPrefix}border-before-width', value, '');
|
| }
|
|
|
| @@ -1799,7 +1853,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-bottom');
|
|
|
| /** Sets the value of "border-bottom" */
|
| - void set borderBottom(var value) {
|
| + void set borderBottom(String value) {
|
| setProperty('border-bottom', value, '');
|
| }
|
|
|
| @@ -1808,7 +1862,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-bottom-color');
|
|
|
| /** Sets the value of "border-bottom-color" */
|
| - void set borderBottomColor(var value) {
|
| + void set borderBottomColor(String value) {
|
| setProperty('border-bottom-color', value, '');
|
| }
|
|
|
| @@ -1817,7 +1871,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-bottom-left-radius');
|
|
|
| /** Sets the value of "border-bottom-left-radius" */
|
| - void set borderBottomLeftRadius(var value) {
|
| + void set borderBottomLeftRadius(String value) {
|
| setProperty('border-bottom-left-radius', value, '');
|
| }
|
|
|
| @@ -1826,7 +1880,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-bottom-right-radius');
|
|
|
| /** Sets the value of "border-bottom-right-radius" */
|
| - void set borderBottomRightRadius(var value) {
|
| + void set borderBottomRightRadius(String value) {
|
| setProperty('border-bottom-right-radius', value, '');
|
| }
|
|
|
| @@ -1835,7 +1889,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-bottom-style');
|
|
|
| /** Sets the value of "border-bottom-style" */
|
| - void set borderBottomStyle(var value) {
|
| + void set borderBottomStyle(String value) {
|
| setProperty('border-bottom-style', value, '');
|
| }
|
|
|
| @@ -1844,7 +1898,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-bottom-width');
|
|
|
| /** Sets the value of "border-bottom-width" */
|
| - void set borderBottomWidth(var value) {
|
| + void set borderBottomWidth(String value) {
|
| setProperty('border-bottom-width', value, '');
|
| }
|
|
|
| @@ -1853,7 +1907,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-collapse');
|
|
|
| /** Sets the value of "border-collapse" */
|
| - void set borderCollapse(var value) {
|
| + void set borderCollapse(String value) {
|
| setProperty('border-collapse', value, '');
|
| }
|
|
|
| @@ -1862,7 +1916,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-color');
|
|
|
| /** Sets the value of "border-color" */
|
| - void set borderColor(var value) {
|
| + void set borderColor(String value) {
|
| setProperty('border-color', value, '');
|
| }
|
|
|
| @@ -1871,7 +1925,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-end');
|
|
|
| /** Sets the value of "border-end" */
|
| - void set borderEnd(var value) {
|
| + void set borderEnd(String value) {
|
| setProperty('${_browserPrefix}border-end', value, '');
|
| }
|
|
|
| @@ -1880,7 +1934,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-end-color');
|
|
|
| /** Sets the value of "border-end-color" */
|
| - void set borderEndColor(var value) {
|
| + void set borderEndColor(String value) {
|
| setProperty('${_browserPrefix}border-end-color', value, '');
|
| }
|
|
|
| @@ -1889,7 +1943,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-end-style');
|
|
|
| /** Sets the value of "border-end-style" */
|
| - void set borderEndStyle(var value) {
|
| + void set borderEndStyle(String value) {
|
| setProperty('${_browserPrefix}border-end-style', value, '');
|
| }
|
|
|
| @@ -1898,7 +1952,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-end-width');
|
|
|
| /** Sets the value of "border-end-width" */
|
| - void set borderEndWidth(var value) {
|
| + void set borderEndWidth(String value) {
|
| setProperty('${_browserPrefix}border-end-width', value, '');
|
| }
|
|
|
| @@ -1907,7 +1961,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-fit');
|
|
|
| /** Sets the value of "border-fit" */
|
| - void set borderFit(var value) {
|
| + void set borderFit(String value) {
|
| setProperty('${_browserPrefix}border-fit', value, '');
|
| }
|
|
|
| @@ -1916,7 +1970,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-horizontal-spacing');
|
|
|
| /** Sets the value of "border-horizontal-spacing" */
|
| - void set borderHorizontalSpacing(var value) {
|
| + void set borderHorizontalSpacing(String value) {
|
| setProperty('${_browserPrefix}border-horizontal-spacing', value, '');
|
| }
|
|
|
| @@ -1925,7 +1979,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-image');
|
|
|
| /** Sets the value of "border-image" */
|
| - void set borderImage(var value) {
|
| + void set borderImage(String value) {
|
| setProperty('border-image', value, '');
|
| }
|
|
|
| @@ -1934,7 +1988,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-image-outset');
|
|
|
| /** Sets the value of "border-image-outset" */
|
| - void set borderImageOutset(var value) {
|
| + void set borderImageOutset(String value) {
|
| setProperty('border-image-outset', value, '');
|
| }
|
|
|
| @@ -1943,7 +1997,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-image-repeat');
|
|
|
| /** Sets the value of "border-image-repeat" */
|
| - void set borderImageRepeat(var value) {
|
| + void set borderImageRepeat(String value) {
|
| setProperty('border-image-repeat', value, '');
|
| }
|
|
|
| @@ -1952,7 +2006,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-image-slice');
|
|
|
| /** Sets the value of "border-image-slice" */
|
| - void set borderImageSlice(var value) {
|
| + void set borderImageSlice(String value) {
|
| setProperty('border-image-slice', value, '');
|
| }
|
|
|
| @@ -1961,7 +2015,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-image-source');
|
|
|
| /** Sets the value of "border-image-source" */
|
| - void set borderImageSource(var value) {
|
| + void set borderImageSource(String value) {
|
| setProperty('border-image-source', value, '');
|
| }
|
|
|
| @@ -1970,7 +2024,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-image-width');
|
|
|
| /** Sets the value of "border-image-width" */
|
| - void set borderImageWidth(var value) {
|
| + void set borderImageWidth(String value) {
|
| setProperty('border-image-width', value, '');
|
| }
|
|
|
| @@ -1979,7 +2033,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-left');
|
|
|
| /** Sets the value of "border-left" */
|
| - void set borderLeft(var value) {
|
| + void set borderLeft(String value) {
|
| setProperty('border-left', value, '');
|
| }
|
|
|
| @@ -1988,7 +2042,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-left-color');
|
|
|
| /** Sets the value of "border-left-color" */
|
| - void set borderLeftColor(var value) {
|
| + void set borderLeftColor(String value) {
|
| setProperty('border-left-color', value, '');
|
| }
|
|
|
| @@ -1997,7 +2051,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-left-style');
|
|
|
| /** Sets the value of "border-left-style" */
|
| - void set borderLeftStyle(var value) {
|
| + void set borderLeftStyle(String value) {
|
| setProperty('border-left-style', value, '');
|
| }
|
|
|
| @@ -2006,7 +2060,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-left-width');
|
|
|
| /** Sets the value of "border-left-width" */
|
| - void set borderLeftWidth(var value) {
|
| + void set borderLeftWidth(String value) {
|
| setProperty('border-left-width', value, '');
|
| }
|
|
|
| @@ -2015,7 +2069,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-radius');
|
|
|
| /** Sets the value of "border-radius" */
|
| - void set borderRadius(var value) {
|
| + void set borderRadius(String value) {
|
| setProperty('border-radius', value, '');
|
| }
|
|
|
| @@ -2024,7 +2078,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-right');
|
|
|
| /** Sets the value of "border-right" */
|
| - void set borderRight(var value) {
|
| + void set borderRight(String value) {
|
| setProperty('border-right', value, '');
|
| }
|
|
|
| @@ -2033,7 +2087,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-right-color');
|
|
|
| /** Sets the value of "border-right-color" */
|
| - void set borderRightColor(var value) {
|
| + void set borderRightColor(String value) {
|
| setProperty('border-right-color', value, '');
|
| }
|
|
|
| @@ -2042,7 +2096,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-right-style');
|
|
|
| /** Sets the value of "border-right-style" */
|
| - void set borderRightStyle(var value) {
|
| + void set borderRightStyle(String value) {
|
| setProperty('border-right-style', value, '');
|
| }
|
|
|
| @@ -2051,7 +2105,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-right-width');
|
|
|
| /** Sets the value of "border-right-width" */
|
| - void set borderRightWidth(var value) {
|
| + void set borderRightWidth(String value) {
|
| setProperty('border-right-width', value, '');
|
| }
|
|
|
| @@ -2060,7 +2114,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-spacing');
|
|
|
| /** Sets the value of "border-spacing" */
|
| - void set borderSpacing(var value) {
|
| + void set borderSpacing(String value) {
|
| setProperty('border-spacing', value, '');
|
| }
|
|
|
| @@ -2069,7 +2123,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-start');
|
|
|
| /** Sets the value of "border-start" */
|
| - void set borderStart(var value) {
|
| + void set borderStart(String value) {
|
| setProperty('${_browserPrefix}border-start', value, '');
|
| }
|
|
|
| @@ -2078,7 +2132,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-start-color');
|
|
|
| /** Sets the value of "border-start-color" */
|
| - void set borderStartColor(var value) {
|
| + void set borderStartColor(String value) {
|
| setProperty('${_browserPrefix}border-start-color', value, '');
|
| }
|
|
|
| @@ -2087,7 +2141,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-start-style');
|
|
|
| /** Sets the value of "border-start-style" */
|
| - void set borderStartStyle(var value) {
|
| + void set borderStartStyle(String value) {
|
| setProperty('${_browserPrefix}border-start-style', value, '');
|
| }
|
|
|
| @@ -2096,7 +2150,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-start-width');
|
|
|
| /** Sets the value of "border-start-width" */
|
| - void set borderStartWidth(var value) {
|
| + void set borderStartWidth(String value) {
|
| setProperty('${_browserPrefix}border-start-width', value, '');
|
| }
|
|
|
| @@ -2105,7 +2159,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-style');
|
|
|
| /** Sets the value of "border-style" */
|
| - void set borderStyle(var value) {
|
| + void set borderStyle(String value) {
|
| setProperty('border-style', value, '');
|
| }
|
|
|
| @@ -2114,7 +2168,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-top');
|
|
|
| /** Sets the value of "border-top" */
|
| - void set borderTop(var value) {
|
| + void set borderTop(String value) {
|
| setProperty('border-top', value, '');
|
| }
|
|
|
| @@ -2123,7 +2177,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-top-color');
|
|
|
| /** Sets the value of "border-top-color" */
|
| - void set borderTopColor(var value) {
|
| + void set borderTopColor(String value) {
|
| setProperty('border-top-color', value, '');
|
| }
|
|
|
| @@ -2132,7 +2186,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-top-left-radius');
|
|
|
| /** Sets the value of "border-top-left-radius" */
|
| - void set borderTopLeftRadius(var value) {
|
| + void set borderTopLeftRadius(String value) {
|
| setProperty('border-top-left-radius', value, '');
|
| }
|
|
|
| @@ -2141,7 +2195,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-top-right-radius');
|
|
|
| /** Sets the value of "border-top-right-radius" */
|
| - void set borderTopRightRadius(var value) {
|
| + void set borderTopRightRadius(String value) {
|
| setProperty('border-top-right-radius', value, '');
|
| }
|
|
|
| @@ -2150,7 +2204,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-top-style');
|
|
|
| /** Sets the value of "border-top-style" */
|
| - void set borderTopStyle(var value) {
|
| + void set borderTopStyle(String value) {
|
| setProperty('border-top-style', value, '');
|
| }
|
|
|
| @@ -2159,7 +2213,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-top-width');
|
|
|
| /** Sets the value of "border-top-width" */
|
| - void set borderTopWidth(var value) {
|
| + void set borderTopWidth(String value) {
|
| setProperty('border-top-width', value, '');
|
| }
|
|
|
| @@ -2168,7 +2222,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}border-vertical-spacing');
|
|
|
| /** Sets the value of "border-vertical-spacing" */
|
| - void set borderVerticalSpacing(var value) {
|
| + void set borderVerticalSpacing(String value) {
|
| setProperty('${_browserPrefix}border-vertical-spacing', value, '');
|
| }
|
|
|
| @@ -2177,7 +2231,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('border-width');
|
|
|
| /** Sets the value of "border-width" */
|
| - void set borderWidth(var value) {
|
| + void set borderWidth(String value) {
|
| setProperty('border-width', value, '');
|
| }
|
|
|
| @@ -2186,7 +2240,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('bottom');
|
|
|
| /** Sets the value of "bottom" */
|
| - void set bottom(var value) {
|
| + void set bottom(String value) {
|
| setProperty('bottom', value, '');
|
| }
|
|
|
| @@ -2195,16 +2249,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-align');
|
|
|
| /** Sets the value of "box-align" */
|
| - void set boxAlign(var value) {
|
| + void set boxAlign(String value) {
|
| setProperty('${_browserPrefix}box-align', value, '');
|
| }
|
|
|
| + /** Gets the value of "box-decoration-break" */
|
| + String get boxDecorationBreak =>
|
| + getPropertyValue('${_browserPrefix}box-decoration-break');
|
| +
|
| + /** Sets the value of "box-decoration-break" */
|
| + void set boxDecorationBreak(String value) {
|
| + setProperty('${_browserPrefix}box-decoration-break', value, '');
|
| + }
|
| +
|
| /** Gets the value of "box-direction" */
|
| String get boxDirection =>
|
| getPropertyValue('${_browserPrefix}box-direction');
|
|
|
| /** Sets the value of "box-direction" */
|
| - void set boxDirection(var value) {
|
| + void set boxDirection(String value) {
|
| setProperty('${_browserPrefix}box-direction', value, '');
|
| }
|
|
|
| @@ -2213,7 +2276,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-flex');
|
|
|
| /** Sets the value of "box-flex" */
|
| - void set boxFlex(var value) {
|
| + void set boxFlex(String value) {
|
| setProperty('${_browserPrefix}box-flex', value, '');
|
| }
|
|
|
| @@ -2222,7 +2285,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-flex-group');
|
|
|
| /** Sets the value of "box-flex-group" */
|
| - void set boxFlexGroup(var value) {
|
| + void set boxFlexGroup(String value) {
|
| setProperty('${_browserPrefix}box-flex-group', value, '');
|
| }
|
|
|
| @@ -2231,7 +2294,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-lines');
|
|
|
| /** Sets the value of "box-lines" */
|
| - void set boxLines(var value) {
|
| + void set boxLines(String value) {
|
| setProperty('${_browserPrefix}box-lines', value, '');
|
| }
|
|
|
| @@ -2240,7 +2303,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-ordinal-group');
|
|
|
| /** Sets the value of "box-ordinal-group" */
|
| - void set boxOrdinalGroup(var value) {
|
| + void set boxOrdinalGroup(String value) {
|
| setProperty('${_browserPrefix}box-ordinal-group', value, '');
|
| }
|
|
|
| @@ -2249,7 +2312,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-orient');
|
|
|
| /** Sets the value of "box-orient" */
|
| - void set boxOrient(var value) {
|
| + void set boxOrient(String value) {
|
| setProperty('${_browserPrefix}box-orient', value, '');
|
| }
|
|
|
| @@ -2258,7 +2321,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-pack');
|
|
|
| /** Sets the value of "box-pack" */
|
| - void set boxPack(var value) {
|
| + void set boxPack(String value) {
|
| setProperty('${_browserPrefix}box-pack', value, '');
|
| }
|
|
|
| @@ -2267,7 +2330,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}box-reflect');
|
|
|
| /** Sets the value of "box-reflect" */
|
| - void set boxReflect(var value) {
|
| + void set boxReflect(String value) {
|
| setProperty('${_browserPrefix}box-reflect', value, '');
|
| }
|
|
|
| @@ -2276,7 +2339,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('box-shadow');
|
|
|
| /** Sets the value of "box-shadow" */
|
| - void set boxShadow(var value) {
|
| + void set boxShadow(String value) {
|
| setProperty('box-shadow', value, '');
|
| }
|
|
|
| @@ -2285,7 +2348,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('box-sizing');
|
|
|
| /** Sets the value of "box-sizing" */
|
| - void set boxSizing(var value) {
|
| + void set boxSizing(String value) {
|
| setProperty('box-sizing', value, '');
|
| }
|
|
|
| @@ -2294,7 +2357,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('caption-side');
|
|
|
| /** Sets the value of "caption-side" */
|
| - void set captionSide(var value) {
|
| + void set captionSide(String value) {
|
| setProperty('caption-side', value, '');
|
| }
|
|
|
| @@ -2303,7 +2366,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('clear');
|
|
|
| /** Sets the value of "clear" */
|
| - void set clear(var value) {
|
| + void set clear(String value) {
|
| setProperty('clear', value, '');
|
| }
|
|
|
| @@ -2312,16 +2375,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('clip');
|
|
|
| /** Sets the value of "clip" */
|
| - void set clip(var value) {
|
| + void set clip(String value) {
|
| setProperty('clip', value, '');
|
| }
|
|
|
| + /** Gets the value of "clip-path" */
|
| + String get clipPath =>
|
| + getPropertyValue('${_browserPrefix}clip-path');
|
| +
|
| + /** Sets the value of "clip-path" */
|
| + void set clipPath(String value) {
|
| + setProperty('${_browserPrefix}clip-path', value, '');
|
| + }
|
| +
|
| /** Gets the value of "color" */
|
| String get color =>
|
| getPropertyValue('color');
|
|
|
| /** Sets the value of "color" */
|
| - void set color(var value) {
|
| + void set color(String value) {
|
| setProperty('color', value, '');
|
| }
|
|
|
| @@ -2330,16 +2402,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}color-correction');
|
|
|
| /** Sets the value of "color-correction" */
|
| - void set colorCorrection(var value) {
|
| + void set colorCorrection(String value) {
|
| setProperty('${_browserPrefix}color-correction', value, '');
|
| }
|
|
|
| + /** Gets the value of "column-axis" */
|
| + String get columnAxis =>
|
| + getPropertyValue('${_browserPrefix}column-axis');
|
| +
|
| + /** Sets the value of "column-axis" */
|
| + void set columnAxis(String value) {
|
| + setProperty('${_browserPrefix}column-axis', value, '');
|
| + }
|
| +
|
| /** Gets the value of "column-break-after" */
|
| String get columnBreakAfter =>
|
| getPropertyValue('${_browserPrefix}column-break-after');
|
|
|
| /** Sets the value of "column-break-after" */
|
| - void set columnBreakAfter(var value) {
|
| + void set columnBreakAfter(String value) {
|
| setProperty('${_browserPrefix}column-break-after', value, '');
|
| }
|
|
|
| @@ -2348,7 +2429,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-break-before');
|
|
|
| /** Sets the value of "column-break-before" */
|
| - void set columnBreakBefore(var value) {
|
| + void set columnBreakBefore(String value) {
|
| setProperty('${_browserPrefix}column-break-before', value, '');
|
| }
|
|
|
| @@ -2357,7 +2438,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-break-inside');
|
|
|
| /** Sets the value of "column-break-inside" */
|
| - void set columnBreakInside(var value) {
|
| + void set columnBreakInside(String value) {
|
| setProperty('${_browserPrefix}column-break-inside', value, '');
|
| }
|
|
|
| @@ -2366,7 +2447,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-count');
|
|
|
| /** Sets the value of "column-count" */
|
| - void set columnCount(var value) {
|
| + void set columnCount(String value) {
|
| setProperty('${_browserPrefix}column-count', value, '');
|
| }
|
|
|
| @@ -2375,16 +2456,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-gap');
|
|
|
| /** Sets the value of "column-gap" */
|
| - void set columnGap(var value) {
|
| + void set columnGap(String value) {
|
| setProperty('${_browserPrefix}column-gap', value, '');
|
| }
|
|
|
| + /** Gets the value of "column-progression" */
|
| + String get columnProgression =>
|
| + getPropertyValue('${_browserPrefix}column-progression');
|
| +
|
| + /** Sets the value of "column-progression" */
|
| + void set columnProgression(String value) {
|
| + setProperty('${_browserPrefix}column-progression', value, '');
|
| + }
|
| +
|
| /** Gets the value of "column-rule" */
|
| String get columnRule =>
|
| getPropertyValue('${_browserPrefix}column-rule');
|
|
|
| /** Sets the value of "column-rule" */
|
| - void set columnRule(var value) {
|
| + void set columnRule(String value) {
|
| setProperty('${_browserPrefix}column-rule', value, '');
|
| }
|
|
|
| @@ -2393,7 +2483,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-rule-color');
|
|
|
| /** Sets the value of "column-rule-color" */
|
| - void set columnRuleColor(var value) {
|
| + void set columnRuleColor(String value) {
|
| setProperty('${_browserPrefix}column-rule-color', value, '');
|
| }
|
|
|
| @@ -2402,7 +2492,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-rule-style');
|
|
|
| /** Sets the value of "column-rule-style" */
|
| - void set columnRuleStyle(var value) {
|
| + void set columnRuleStyle(String value) {
|
| setProperty('${_browserPrefix}column-rule-style', value, '');
|
| }
|
|
|
| @@ -2411,7 +2501,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-rule-width');
|
|
|
| /** Sets the value of "column-rule-width" */
|
| - void set columnRuleWidth(var value) {
|
| + void set columnRuleWidth(String value) {
|
| setProperty('${_browserPrefix}column-rule-width', value, '');
|
| }
|
|
|
| @@ -2420,7 +2510,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-span');
|
|
|
| /** Sets the value of "column-span" */
|
| - void set columnSpan(var value) {
|
| + void set columnSpan(String value) {
|
| setProperty('${_browserPrefix}column-span', value, '');
|
| }
|
|
|
| @@ -2429,7 +2519,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}column-width');
|
|
|
| /** Sets the value of "column-width" */
|
| - void set columnWidth(var value) {
|
| + void set columnWidth(String value) {
|
| setProperty('${_browserPrefix}column-width', value, '');
|
| }
|
|
|
| @@ -2438,7 +2528,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}columns');
|
|
|
| /** Sets the value of "columns" */
|
| - void set columns(var value) {
|
| + void set columns(String value) {
|
| setProperty('${_browserPrefix}columns', value, '');
|
| }
|
|
|
| @@ -2447,7 +2537,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('content');
|
|
|
| /** Sets the value of "content" */
|
| - void set content(var value) {
|
| + void set content(String value) {
|
| setProperty('content', value, '');
|
| }
|
|
|
| @@ -2456,7 +2546,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('counter-increment');
|
|
|
| /** Sets the value of "counter-increment" */
|
| - void set counterIncrement(var value) {
|
| + void set counterIncrement(String value) {
|
| setProperty('counter-increment', value, '');
|
| }
|
|
|
| @@ -2465,7 +2555,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('counter-reset');
|
|
|
| /** Sets the value of "counter-reset" */
|
| - void set counterReset(var value) {
|
| + void set counterReset(String value) {
|
| setProperty('counter-reset', value, '');
|
| }
|
|
|
| @@ -2474,16 +2564,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('cursor');
|
|
|
| /** Sets the value of "cursor" */
|
| - void set cursor(var value) {
|
| + void set cursor(String value) {
|
| setProperty('cursor', value, '');
|
| }
|
|
|
| + /** Gets the value of "dashboard-region" */
|
| + String get dashboardRegion =>
|
| + getPropertyValue('${_browserPrefix}dashboard-region');
|
| +
|
| + /** Sets the value of "dashboard-region" */
|
| + void set dashboardRegion(String value) {
|
| + setProperty('${_browserPrefix}dashboard-region', value, '');
|
| + }
|
| +
|
| /** Gets the value of "direction" */
|
| String get direction =>
|
| getPropertyValue('direction');
|
|
|
| /** Sets the value of "direction" */
|
| - void set direction(var value) {
|
| + void set direction(String value) {
|
| setProperty('direction', value, '');
|
| }
|
|
|
| @@ -2492,7 +2591,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('display');
|
|
|
| /** Sets the value of "display" */
|
| - void set display(var value) {
|
| + void set display(String value) {
|
| setProperty('display', value, '');
|
| }
|
|
|
| @@ -2501,7 +2600,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('empty-cells');
|
|
|
| /** Sets the value of "empty-cells" */
|
| - void set emptyCells(var value) {
|
| + void set emptyCells(String value) {
|
| setProperty('empty-cells', value, '');
|
| }
|
|
|
| @@ -2510,17 +2609,35 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}filter');
|
|
|
| /** Sets the value of "filter" */
|
| - void set filter(var value) {
|
| + void set filter(String value) {
|
| setProperty('${_browserPrefix}filter', value, '');
|
| }
|
|
|
| - /** Gets the value of "flex-align" */
|
| - String get flexAlign =>
|
| - getPropertyValue('${_browserPrefix}flex-align');
|
| + /** Gets the value of "flex" */
|
| + String get flex =>
|
| + getPropertyValue('${_browserPrefix}flex');
|
| +
|
| + /** Sets the value of "flex" */
|
| + void set flex(String value) {
|
| + setProperty('${_browserPrefix}flex', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "flex-basis" */
|
| + String get flexBasis =>
|
| + getPropertyValue('${_browserPrefix}flex-basis');
|
| +
|
| + /** Sets the value of "flex-basis" */
|
| + void set flexBasis(String value) {
|
| + setProperty('${_browserPrefix}flex-basis', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "flex-direction" */
|
| + String get flexDirection =>
|
| + getPropertyValue('${_browserPrefix}flex-direction');
|
|
|
| - /** Sets the value of "flex-align" */
|
| - void set flexAlign(var value) {
|
| - setProperty('${_browserPrefix}flex-align', value, '');
|
| + /** Sets the value of "flex-direction" */
|
| + void set flexDirection(String value) {
|
| + setProperty('${_browserPrefix}flex-direction', value, '');
|
| }
|
|
|
| /** Gets the value of "flex-flow" */
|
| @@ -2528,26 +2645,35 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}flex-flow');
|
|
|
| /** Sets the value of "flex-flow" */
|
| - void set flexFlow(var value) {
|
| + void set flexFlow(String value) {
|
| setProperty('${_browserPrefix}flex-flow', value, '');
|
| }
|
|
|
| - /** Gets the value of "flex-order" */
|
| - String get flexOrder =>
|
| - getPropertyValue('${_browserPrefix}flex-order');
|
| + /** Gets the value of "flex-grow" */
|
| + String get flexGrow =>
|
| + getPropertyValue('${_browserPrefix}flex-grow');
|
|
|
| - /** Sets the value of "flex-order" */
|
| - void set flexOrder(var value) {
|
| - setProperty('${_browserPrefix}flex-order', value, '');
|
| + /** Sets the value of "flex-grow" */
|
| + void set flexGrow(String value) {
|
| + setProperty('${_browserPrefix}flex-grow', value, '');
|
| }
|
|
|
| - /** Gets the value of "flex-pack" */
|
| - String get flexPack =>
|
| - getPropertyValue('${_browserPrefix}flex-pack');
|
| + /** Gets the value of "flex-shrink" */
|
| + String get flexShrink =>
|
| + getPropertyValue('${_browserPrefix}flex-shrink');
|
|
|
| - /** Sets the value of "flex-pack" */
|
| - void set flexPack(var value) {
|
| - setProperty('${_browserPrefix}flex-pack', value, '');
|
| + /** Sets the value of "flex-shrink" */
|
| + void set flexShrink(String value) {
|
| + setProperty('${_browserPrefix}flex-shrink', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "flex-wrap" */
|
| + String get flexWrap =>
|
| + getPropertyValue('${_browserPrefix}flex-wrap');
|
| +
|
| + /** Sets the value of "flex-wrap" */
|
| + void set flexWrap(String value) {
|
| + setProperty('${_browserPrefix}flex-wrap', value, '');
|
| }
|
|
|
| /** Gets the value of "float" */
|
| @@ -2555,7 +2681,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('float');
|
|
|
| /** Sets the value of "float" */
|
| - void set float(var value) {
|
| + void set float(String value) {
|
| setProperty('float', value, '');
|
| }
|
|
|
| @@ -2564,7 +2690,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}flow-from');
|
|
|
| /** Sets the value of "flow-from" */
|
| - void set flowFrom(var value) {
|
| + void set flowFrom(String value) {
|
| setProperty('${_browserPrefix}flow-from', value, '');
|
| }
|
|
|
| @@ -2573,7 +2699,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}flow-into');
|
|
|
| /** Sets the value of "flow-into" */
|
| - void set flowInto(var value) {
|
| + void set flowInto(String value) {
|
| setProperty('${_browserPrefix}flow-into', value, '');
|
| }
|
|
|
| @@ -2582,7 +2708,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('font');
|
|
|
| /** Sets the value of "font" */
|
| - void set font(var value) {
|
| + void set font(String value) {
|
| setProperty('font', value, '');
|
| }
|
|
|
| @@ -2591,7 +2717,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('font-family');
|
|
|
| /** Sets the value of "font-family" */
|
| - void set fontFamily(var value) {
|
| + void set fontFamily(String value) {
|
| setProperty('font-family', value, '');
|
| }
|
|
|
| @@ -2600,16 +2726,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}font-feature-settings');
|
|
|
| /** Sets the value of "font-feature-settings" */
|
| - void set fontFeatureSettings(var value) {
|
| + void set fontFeatureSettings(String value) {
|
| setProperty('${_browserPrefix}font-feature-settings', value, '');
|
| }
|
|
|
| + /** Gets the value of "font-kerning" */
|
| + String get fontKerning =>
|
| + getPropertyValue('${_browserPrefix}font-kerning');
|
| +
|
| + /** Sets the value of "font-kerning" */
|
| + void set fontKerning(String value) {
|
| + setProperty('${_browserPrefix}font-kerning', value, '');
|
| + }
|
| +
|
| /** Gets the value of "font-size" */
|
| String get fontSize =>
|
| getPropertyValue('font-size');
|
|
|
| /** Sets the value of "font-size" */
|
| - void set fontSize(var value) {
|
| + void set fontSize(String value) {
|
| setProperty('font-size', value, '');
|
| }
|
|
|
| @@ -2618,7 +2753,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}font-size-delta');
|
|
|
| /** Sets the value of "font-size-delta" */
|
| - void set fontSizeDelta(var value) {
|
| + void set fontSizeDelta(String value) {
|
| setProperty('${_browserPrefix}font-size-delta', value, '');
|
| }
|
|
|
| @@ -2627,7 +2762,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}font-smoothing');
|
|
|
| /** Sets the value of "font-smoothing" */
|
| - void set fontSmoothing(var value) {
|
| + void set fontSmoothing(String value) {
|
| setProperty('${_browserPrefix}font-smoothing', value, '');
|
| }
|
|
|
| @@ -2636,7 +2771,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('font-stretch');
|
|
|
| /** Sets the value of "font-stretch" */
|
| - void set fontStretch(var value) {
|
| + void set fontStretch(String value) {
|
| setProperty('font-stretch', value, '');
|
| }
|
|
|
| @@ -2645,7 +2780,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('font-style');
|
|
|
| /** Sets the value of "font-style" */
|
| - void set fontStyle(var value) {
|
| + void set fontStyle(String value) {
|
| setProperty('font-style', value, '');
|
| }
|
|
|
| @@ -2654,25 +2789,70 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('font-variant');
|
|
|
| /** Sets the value of "font-variant" */
|
| - void set fontVariant(var value) {
|
| + void set fontVariant(String value) {
|
| setProperty('font-variant', value, '');
|
| }
|
|
|
| + /** Gets the value of "font-variant-ligatures" */
|
| + String get fontVariantLigatures =>
|
| + getPropertyValue('${_browserPrefix}font-variant-ligatures');
|
| +
|
| + /** Sets the value of "font-variant-ligatures" */
|
| + void set fontVariantLigatures(String value) {
|
| + setProperty('${_browserPrefix}font-variant-ligatures', value, '');
|
| + }
|
| +
|
| /** Gets the value of "font-weight" */
|
| String get fontWeight =>
|
| getPropertyValue('font-weight');
|
|
|
| /** Sets the value of "font-weight" */
|
| - void set fontWeight(var value) {
|
| + void set fontWeight(String value) {
|
| setProperty('font-weight', value, '');
|
| }
|
|
|
| + /** Gets the value of "grid-column" */
|
| + String get gridColumn =>
|
| + getPropertyValue('${_browserPrefix}grid-column');
|
| +
|
| + /** Sets the value of "grid-column" */
|
| + void set gridColumn(String value) {
|
| + setProperty('${_browserPrefix}grid-column', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "grid-columns" */
|
| + String get gridColumns =>
|
| + getPropertyValue('${_browserPrefix}grid-columns');
|
| +
|
| + /** Sets the value of "grid-columns" */
|
| + void set gridColumns(String value) {
|
| + setProperty('${_browserPrefix}grid-columns', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "grid-row" */
|
| + String get gridRow =>
|
| + getPropertyValue('${_browserPrefix}grid-row');
|
| +
|
| + /** Sets the value of "grid-row" */
|
| + void set gridRow(String value) {
|
| + setProperty('${_browserPrefix}grid-row', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "grid-rows" */
|
| + String get gridRows =>
|
| + getPropertyValue('${_browserPrefix}grid-rows');
|
| +
|
| + /** Sets the value of "grid-rows" */
|
| + void set gridRows(String value) {
|
| + setProperty('${_browserPrefix}grid-rows', value, '');
|
| + }
|
| +
|
| /** Gets the value of "height" */
|
| String get height =>
|
| getPropertyValue('height');
|
|
|
| /** Sets the value of "height" */
|
| - void set height(var value) {
|
| + void set height(String value) {
|
| setProperty('height', value, '');
|
| }
|
|
|
| @@ -2681,7 +2861,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}highlight');
|
|
|
| /** Sets the value of "highlight" */
|
| - void set highlight(var value) {
|
| + void set highlight(String value) {
|
| setProperty('${_browserPrefix}highlight', value, '');
|
| }
|
|
|
| @@ -2690,7 +2870,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}hyphenate-character');
|
|
|
| /** Sets the value of "hyphenate-character" */
|
| - void set hyphenateCharacter(var value) {
|
| + void set hyphenateCharacter(String value) {
|
| setProperty('${_browserPrefix}hyphenate-character', value, '');
|
| }
|
|
|
| @@ -2699,7 +2879,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}hyphenate-limit-after');
|
|
|
| /** Sets the value of "hyphenate-limit-after" */
|
| - void set hyphenateLimitAfter(var value) {
|
| + void set hyphenateLimitAfter(String value) {
|
| setProperty('${_browserPrefix}hyphenate-limit-after', value, '');
|
| }
|
|
|
| @@ -2708,7 +2888,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}hyphenate-limit-before');
|
|
|
| /** Sets the value of "hyphenate-limit-before" */
|
| - void set hyphenateLimitBefore(var value) {
|
| + void set hyphenateLimitBefore(String value) {
|
| setProperty('${_browserPrefix}hyphenate-limit-before', value, '');
|
| }
|
|
|
| @@ -2717,7 +2897,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}hyphenate-limit-lines');
|
|
|
| /** Sets the value of "hyphenate-limit-lines" */
|
| - void set hyphenateLimitLines(var value) {
|
| + void set hyphenateLimitLines(String value) {
|
| setProperty('${_browserPrefix}hyphenate-limit-lines', value, '');
|
| }
|
|
|
| @@ -2726,25 +2906,52 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}hyphens');
|
|
|
| /** Sets the value of "hyphens" */
|
| - void set hyphens(var value) {
|
| + void set hyphens(String value) {
|
| setProperty('${_browserPrefix}hyphens', value, '');
|
| }
|
|
|
| + /** Gets the value of "image-orientation" */
|
| + String get imageOrientation =>
|
| + getPropertyValue('image-orientation');
|
| +
|
| + /** Sets the value of "image-orientation" */
|
| + void set imageOrientation(String value) {
|
| + setProperty('image-orientation', value, '');
|
| + }
|
| +
|
| /** Gets the value of "image-rendering" */
|
| String get imageRendering =>
|
| getPropertyValue('image-rendering');
|
|
|
| /** Sets the value of "image-rendering" */
|
| - void set imageRendering(var value) {
|
| + void set imageRendering(String value) {
|
| setProperty('image-rendering', value, '');
|
| }
|
|
|
| + /** Gets the value of "image-resolution" */
|
| + String get imageResolution =>
|
| + getPropertyValue('image-resolution');
|
| +
|
| + /** Sets the value of "image-resolution" */
|
| + void set imageResolution(String value) {
|
| + setProperty('image-resolution', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "justify-content" */
|
| + String get justifyContent =>
|
| + getPropertyValue('${_browserPrefix}justify-content');
|
| +
|
| + /** Sets the value of "justify-content" */
|
| + void set justifyContent(String value) {
|
| + setProperty('${_browserPrefix}justify-content', value, '');
|
| + }
|
| +
|
| /** Gets the value of "left" */
|
| String get left =>
|
| getPropertyValue('left');
|
|
|
| /** Sets the value of "left" */
|
| - void set left(var value) {
|
| + void set left(String value) {
|
| setProperty('left', value, '');
|
| }
|
|
|
| @@ -2753,16 +2960,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('letter-spacing');
|
|
|
| /** Sets the value of "letter-spacing" */
|
| - void set letterSpacing(var value) {
|
| + void set letterSpacing(String value) {
|
| setProperty('letter-spacing', value, '');
|
| }
|
|
|
| + /** Gets the value of "line-align" */
|
| + String get lineAlign =>
|
| + getPropertyValue('${_browserPrefix}line-align');
|
| +
|
| + /** Sets the value of "line-align" */
|
| + void set lineAlign(String value) {
|
| + setProperty('${_browserPrefix}line-align', value, '');
|
| + }
|
| +
|
| /** Gets the value of "line-box-contain" */
|
| String get lineBoxContain =>
|
| getPropertyValue('${_browserPrefix}line-box-contain');
|
|
|
| /** Sets the value of "line-box-contain" */
|
| - void set lineBoxContain(var value) {
|
| + void set lineBoxContain(String value) {
|
| setProperty('${_browserPrefix}line-box-contain', value, '');
|
| }
|
|
|
| @@ -2771,7 +2987,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}line-break');
|
|
|
| /** Sets the value of "line-break" */
|
| - void set lineBreak(var value) {
|
| + void set lineBreak(String value) {
|
| setProperty('${_browserPrefix}line-break', value, '');
|
| }
|
|
|
| @@ -2780,25 +2996,43 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}line-clamp');
|
|
|
| /** Sets the value of "line-clamp" */
|
| - void set lineClamp(var value) {
|
| + void set lineClamp(String value) {
|
| setProperty('${_browserPrefix}line-clamp', value, '');
|
| }
|
|
|
| + /** Gets the value of "line-grid" */
|
| + String get lineGrid =>
|
| + getPropertyValue('${_browserPrefix}line-grid');
|
| +
|
| + /** Sets the value of "line-grid" */
|
| + void set lineGrid(String value) {
|
| + setProperty('${_browserPrefix}line-grid', value, '');
|
| + }
|
| +
|
| /** Gets the value of "line-height" */
|
| String get lineHeight =>
|
| getPropertyValue('line-height');
|
|
|
| /** Sets the value of "line-height" */
|
| - void set lineHeight(var value) {
|
| + void set lineHeight(String value) {
|
| setProperty('line-height', value, '');
|
| }
|
|
|
| + /** Gets the value of "line-snap" */
|
| + String get lineSnap =>
|
| + getPropertyValue('${_browserPrefix}line-snap');
|
| +
|
| + /** Sets the value of "line-snap" */
|
| + void set lineSnap(String value) {
|
| + setProperty('${_browserPrefix}line-snap', value, '');
|
| + }
|
| +
|
| /** Gets the value of "list-style" */
|
| String get listStyle =>
|
| getPropertyValue('list-style');
|
|
|
| /** Sets the value of "list-style" */
|
| - void set listStyle(var value) {
|
| + void set listStyle(String value) {
|
| setProperty('list-style', value, '');
|
| }
|
|
|
| @@ -2807,7 +3041,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('list-style-image');
|
|
|
| /** Sets the value of "list-style-image" */
|
| - void set listStyleImage(var value) {
|
| + void set listStyleImage(String value) {
|
| setProperty('list-style-image', value, '');
|
| }
|
|
|
| @@ -2816,7 +3050,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('list-style-position');
|
|
|
| /** Sets the value of "list-style-position" */
|
| - void set listStylePosition(var value) {
|
| + void set listStylePosition(String value) {
|
| setProperty('list-style-position', value, '');
|
| }
|
|
|
| @@ -2825,7 +3059,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('list-style-type');
|
|
|
| /** Sets the value of "list-style-type" */
|
| - void set listStyleType(var value) {
|
| + void set listStyleType(String value) {
|
| setProperty('list-style-type', value, '');
|
| }
|
|
|
| @@ -2834,7 +3068,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}locale');
|
|
|
| /** Sets the value of "locale" */
|
| - void set locale(var value) {
|
| + void set locale(String value) {
|
| setProperty('${_browserPrefix}locale', value, '');
|
| }
|
|
|
| @@ -2843,7 +3077,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}logical-height');
|
|
|
| /** Sets the value of "logical-height" */
|
| - void set logicalHeight(var value) {
|
| + void set logicalHeight(String value) {
|
| setProperty('${_browserPrefix}logical-height', value, '');
|
| }
|
|
|
| @@ -2852,7 +3086,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}logical-width');
|
|
|
| /** Sets the value of "logical-width" */
|
| - void set logicalWidth(var value) {
|
| + void set logicalWidth(String value) {
|
| setProperty('${_browserPrefix}logical-width', value, '');
|
| }
|
|
|
| @@ -2861,7 +3095,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('margin');
|
|
|
| /** Sets the value of "margin" */
|
| - void set margin(var value) {
|
| + void set margin(String value) {
|
| setProperty('margin', value, '');
|
| }
|
|
|
| @@ -2870,7 +3104,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-after');
|
|
|
| /** Sets the value of "margin-after" */
|
| - void set marginAfter(var value) {
|
| + void set marginAfter(String value) {
|
| setProperty('${_browserPrefix}margin-after', value, '');
|
| }
|
|
|
| @@ -2879,7 +3113,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-after-collapse');
|
|
|
| /** Sets the value of "margin-after-collapse" */
|
| - void set marginAfterCollapse(var value) {
|
| + void set marginAfterCollapse(String value) {
|
| setProperty('${_browserPrefix}margin-after-collapse', value, '');
|
| }
|
|
|
| @@ -2888,7 +3122,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-before');
|
|
|
| /** Sets the value of "margin-before" */
|
| - void set marginBefore(var value) {
|
| + void set marginBefore(String value) {
|
| setProperty('${_browserPrefix}margin-before', value, '');
|
| }
|
|
|
| @@ -2897,7 +3131,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-before-collapse');
|
|
|
| /** Sets the value of "margin-before-collapse" */
|
| - void set marginBeforeCollapse(var value) {
|
| + void set marginBeforeCollapse(String value) {
|
| setProperty('${_browserPrefix}margin-before-collapse', value, '');
|
| }
|
|
|
| @@ -2906,7 +3140,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('margin-bottom');
|
|
|
| /** Sets the value of "margin-bottom" */
|
| - void set marginBottom(var value) {
|
| + void set marginBottom(String value) {
|
| setProperty('margin-bottom', value, '');
|
| }
|
|
|
| @@ -2915,7 +3149,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-bottom-collapse');
|
|
|
| /** Sets the value of "margin-bottom-collapse" */
|
| - void set marginBottomCollapse(var value) {
|
| + void set marginBottomCollapse(String value) {
|
| setProperty('${_browserPrefix}margin-bottom-collapse', value, '');
|
| }
|
|
|
| @@ -2924,7 +3158,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-collapse');
|
|
|
| /** Sets the value of "margin-collapse" */
|
| - void set marginCollapse(var value) {
|
| + void set marginCollapse(String value) {
|
| setProperty('${_browserPrefix}margin-collapse', value, '');
|
| }
|
|
|
| @@ -2933,7 +3167,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-end');
|
|
|
| /** Sets the value of "margin-end" */
|
| - void set marginEnd(var value) {
|
| + void set marginEnd(String value) {
|
| setProperty('${_browserPrefix}margin-end', value, '');
|
| }
|
|
|
| @@ -2942,7 +3176,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('margin-left');
|
|
|
| /** Sets the value of "margin-left" */
|
| - void set marginLeft(var value) {
|
| + void set marginLeft(String value) {
|
| setProperty('margin-left', value, '');
|
| }
|
|
|
| @@ -2951,7 +3185,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('margin-right');
|
|
|
| /** Sets the value of "margin-right" */
|
| - void set marginRight(var value) {
|
| + void set marginRight(String value) {
|
| setProperty('margin-right', value, '');
|
| }
|
|
|
| @@ -2960,7 +3194,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-start');
|
|
|
| /** Sets the value of "margin-start" */
|
| - void set marginStart(var value) {
|
| + void set marginStart(String value) {
|
| setProperty('${_browserPrefix}margin-start', value, '');
|
| }
|
|
|
| @@ -2969,7 +3203,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('margin-top');
|
|
|
| /** Sets the value of "margin-top" */
|
| - void set marginTop(var value) {
|
| + void set marginTop(String value) {
|
| setProperty('margin-top', value, '');
|
| }
|
|
|
| @@ -2978,7 +3212,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}margin-top-collapse');
|
|
|
| /** Sets the value of "margin-top-collapse" */
|
| - void set marginTopCollapse(var value) {
|
| + void set marginTopCollapse(String value) {
|
| setProperty('${_browserPrefix}margin-top-collapse', value, '');
|
| }
|
|
|
| @@ -2987,7 +3221,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}marquee');
|
|
|
| /** Sets the value of "marquee" */
|
| - void set marquee(var value) {
|
| + void set marquee(String value) {
|
| setProperty('${_browserPrefix}marquee', value, '');
|
| }
|
|
|
| @@ -2996,7 +3230,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}marquee-direction');
|
|
|
| /** Sets the value of "marquee-direction" */
|
| - void set marqueeDirection(var value) {
|
| + void set marqueeDirection(String value) {
|
| setProperty('${_browserPrefix}marquee-direction', value, '');
|
| }
|
|
|
| @@ -3005,7 +3239,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}marquee-increment');
|
|
|
| /** Sets the value of "marquee-increment" */
|
| - void set marqueeIncrement(var value) {
|
| + void set marqueeIncrement(String value) {
|
| setProperty('${_browserPrefix}marquee-increment', value, '');
|
| }
|
|
|
| @@ -3014,7 +3248,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}marquee-repetition');
|
|
|
| /** Sets the value of "marquee-repetition" */
|
| - void set marqueeRepetition(var value) {
|
| + void set marqueeRepetition(String value) {
|
| setProperty('${_browserPrefix}marquee-repetition', value, '');
|
| }
|
|
|
| @@ -3023,7 +3257,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}marquee-speed');
|
|
|
| /** Sets the value of "marquee-speed" */
|
| - void set marqueeSpeed(var value) {
|
| + void set marqueeSpeed(String value) {
|
| setProperty('${_browserPrefix}marquee-speed', value, '');
|
| }
|
|
|
| @@ -3032,7 +3266,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}marquee-style');
|
|
|
| /** Sets the value of "marquee-style" */
|
| - void set marqueeStyle(var value) {
|
| + void set marqueeStyle(String value) {
|
| setProperty('${_browserPrefix}marquee-style', value, '');
|
| }
|
|
|
| @@ -3041,7 +3275,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask');
|
|
|
| /** Sets the value of "mask" */
|
| - void set mask(var value) {
|
| + void set mask(String value) {
|
| setProperty('${_browserPrefix}mask', value, '');
|
| }
|
|
|
| @@ -3050,7 +3284,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-attachment');
|
|
|
| /** Sets the value of "mask-attachment" */
|
| - void set maskAttachment(var value) {
|
| + void set maskAttachment(String value) {
|
| setProperty('${_browserPrefix}mask-attachment', value, '');
|
| }
|
|
|
| @@ -3059,7 +3293,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-box-image');
|
|
|
| /** Sets the value of "mask-box-image" */
|
| - void set maskBoxImage(var value) {
|
| + void set maskBoxImage(String value) {
|
| setProperty('${_browserPrefix}mask-box-image', value, '');
|
| }
|
|
|
| @@ -3068,7 +3302,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-box-image-outset');
|
|
|
| /** Sets the value of "mask-box-image-outset" */
|
| - void set maskBoxImageOutset(var value) {
|
| + void set maskBoxImageOutset(String value) {
|
| setProperty('${_browserPrefix}mask-box-image-outset', value, '');
|
| }
|
|
|
| @@ -3077,7 +3311,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-box-image-repeat');
|
|
|
| /** Sets the value of "mask-box-image-repeat" */
|
| - void set maskBoxImageRepeat(var value) {
|
| + void set maskBoxImageRepeat(String value) {
|
| setProperty('${_browserPrefix}mask-box-image-repeat', value, '');
|
| }
|
|
|
| @@ -3086,7 +3320,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-box-image-slice');
|
|
|
| /** Sets the value of "mask-box-image-slice" */
|
| - void set maskBoxImageSlice(var value) {
|
| + void set maskBoxImageSlice(String value) {
|
| setProperty('${_browserPrefix}mask-box-image-slice', value, '');
|
| }
|
|
|
| @@ -3095,7 +3329,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-box-image-source');
|
|
|
| /** Sets the value of "mask-box-image-source" */
|
| - void set maskBoxImageSource(var value) {
|
| + void set maskBoxImageSource(String value) {
|
| setProperty('${_browserPrefix}mask-box-image-source', value, '');
|
| }
|
|
|
| @@ -3104,7 +3338,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-box-image-width');
|
|
|
| /** Sets the value of "mask-box-image-width" */
|
| - void set maskBoxImageWidth(var value) {
|
| + void set maskBoxImageWidth(String value) {
|
| setProperty('${_browserPrefix}mask-box-image-width', value, '');
|
| }
|
|
|
| @@ -3113,7 +3347,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-clip');
|
|
|
| /** Sets the value of "mask-clip" */
|
| - void set maskClip(var value) {
|
| + void set maskClip(String value) {
|
| setProperty('${_browserPrefix}mask-clip', value, '');
|
| }
|
|
|
| @@ -3122,7 +3356,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-composite');
|
|
|
| /** Sets the value of "mask-composite" */
|
| - void set maskComposite(var value) {
|
| + void set maskComposite(String value) {
|
| setProperty('${_browserPrefix}mask-composite', value, '');
|
| }
|
|
|
| @@ -3131,7 +3365,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-image');
|
|
|
| /** Sets the value of "mask-image" */
|
| - void set maskImage(var value) {
|
| + void set maskImage(String value) {
|
| setProperty('${_browserPrefix}mask-image', value, '');
|
| }
|
|
|
| @@ -3140,7 +3374,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-origin');
|
|
|
| /** Sets the value of "mask-origin" */
|
| - void set maskOrigin(var value) {
|
| + void set maskOrigin(String value) {
|
| setProperty('${_browserPrefix}mask-origin', value, '');
|
| }
|
|
|
| @@ -3149,7 +3383,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-position');
|
|
|
| /** Sets the value of "mask-position" */
|
| - void set maskPosition(var value) {
|
| + void set maskPosition(String value) {
|
| setProperty('${_browserPrefix}mask-position', value, '');
|
| }
|
|
|
| @@ -3158,7 +3392,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-position-x');
|
|
|
| /** Sets the value of "mask-position-x" */
|
| - void set maskPositionX(var value) {
|
| + void set maskPositionX(String value) {
|
| setProperty('${_browserPrefix}mask-position-x', value, '');
|
| }
|
|
|
| @@ -3167,7 +3401,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-position-y');
|
|
|
| /** Sets the value of "mask-position-y" */
|
| - void set maskPositionY(var value) {
|
| + void set maskPositionY(String value) {
|
| setProperty('${_browserPrefix}mask-position-y', value, '');
|
| }
|
|
|
| @@ -3176,7 +3410,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-repeat');
|
|
|
| /** Sets the value of "mask-repeat" */
|
| - void set maskRepeat(var value) {
|
| + void set maskRepeat(String value) {
|
| setProperty('${_browserPrefix}mask-repeat', value, '');
|
| }
|
|
|
| @@ -3185,7 +3419,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-repeat-x');
|
|
|
| /** Sets the value of "mask-repeat-x" */
|
| - void set maskRepeatX(var value) {
|
| + void set maskRepeatX(String value) {
|
| setProperty('${_browserPrefix}mask-repeat-x', value, '');
|
| }
|
|
|
| @@ -3194,7 +3428,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-repeat-y');
|
|
|
| /** Sets the value of "mask-repeat-y" */
|
| - void set maskRepeatY(var value) {
|
| + void set maskRepeatY(String value) {
|
| setProperty('${_browserPrefix}mask-repeat-y', value, '');
|
| }
|
|
|
| @@ -3203,25 +3437,16 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}mask-size');
|
|
|
| /** Sets the value of "mask-size" */
|
| - void set maskSize(var value) {
|
| + void set maskSize(String value) {
|
| setProperty('${_browserPrefix}mask-size', value, '');
|
| }
|
|
|
| - /** Gets the value of "match-nearest-mail-blockquote-color" */
|
| - String get matchNearestMailBlockquoteColor =>
|
| - getPropertyValue('${_browserPrefix}match-nearest-mail-blockquote-color');
|
| -
|
| - /** Sets the value of "match-nearest-mail-blockquote-color" */
|
| - void set matchNearestMailBlockquoteColor(var value) {
|
| - setProperty('${_browserPrefix}match-nearest-mail-blockquote-color', value, '');
|
| - }
|
| -
|
| /** Gets the value of "max-height" */
|
| String get maxHeight =>
|
| getPropertyValue('max-height');
|
|
|
| /** Sets the value of "max-height" */
|
| - void set maxHeight(var value) {
|
| + void set maxHeight(String value) {
|
| setProperty('max-height', value, '');
|
| }
|
|
|
| @@ -3230,7 +3455,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}max-logical-height');
|
|
|
| /** Sets the value of "max-logical-height" */
|
| - void set maxLogicalHeight(var value) {
|
| + void set maxLogicalHeight(String value) {
|
| setProperty('${_browserPrefix}max-logical-height', value, '');
|
| }
|
|
|
| @@ -3239,7 +3464,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}max-logical-width');
|
|
|
| /** Sets the value of "max-logical-width" */
|
| - void set maxLogicalWidth(var value) {
|
| + void set maxLogicalWidth(String value) {
|
| setProperty('${_browserPrefix}max-logical-width', value, '');
|
| }
|
|
|
| @@ -3248,16 +3473,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('max-width');
|
|
|
| /** Sets the value of "max-width" */
|
| - void set maxWidth(var value) {
|
| + void set maxWidth(String value) {
|
| setProperty('max-width', value, '');
|
| }
|
|
|
| + /** Gets the value of "max-zoom" */
|
| + String get maxZoom =>
|
| + getPropertyValue('max-zoom');
|
| +
|
| + /** Sets the value of "max-zoom" */
|
| + void set maxZoom(String value) {
|
| + setProperty('max-zoom', value, '');
|
| + }
|
| +
|
| /** Gets the value of "min-height" */
|
| String get minHeight =>
|
| getPropertyValue('min-height');
|
|
|
| /** Sets the value of "min-height" */
|
| - void set minHeight(var value) {
|
| + void set minHeight(String value) {
|
| setProperty('min-height', value, '');
|
| }
|
|
|
| @@ -3266,7 +3500,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}min-logical-height');
|
|
|
| /** Sets the value of "min-logical-height" */
|
| - void set minLogicalHeight(var value) {
|
| + void set minLogicalHeight(String value) {
|
| setProperty('${_browserPrefix}min-logical-height', value, '');
|
| }
|
|
|
| @@ -3275,7 +3509,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}min-logical-width');
|
|
|
| /** Sets the value of "min-logical-width" */
|
| - void set minLogicalWidth(var value) {
|
| + void set minLogicalWidth(String value) {
|
| setProperty('${_browserPrefix}min-logical-width', value, '');
|
| }
|
|
|
| @@ -3284,16 +3518,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('min-width');
|
|
|
| /** Sets the value of "min-width" */
|
| - void set minWidth(var value) {
|
| + void set minWidth(String value) {
|
| setProperty('min-width', value, '');
|
| }
|
|
|
| + /** Gets the value of "min-zoom" */
|
| + String get minZoom =>
|
| + getPropertyValue('min-zoom');
|
| +
|
| + /** Sets the value of "min-zoom" */
|
| + void set minZoom(String value) {
|
| + setProperty('min-zoom', value, '');
|
| + }
|
| +
|
| /** Gets the value of "nbsp-mode" */
|
| String get nbspMode =>
|
| getPropertyValue('${_browserPrefix}nbsp-mode');
|
|
|
| /** Sets the value of "nbsp-mode" */
|
| - void set nbspMode(var value) {
|
| + void set nbspMode(String value) {
|
| setProperty('${_browserPrefix}nbsp-mode', value, '');
|
| }
|
|
|
| @@ -3302,16 +3545,34 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('opacity');
|
|
|
| /** Sets the value of "opacity" */
|
| - void set opacity(var value) {
|
| + void set opacity(String value) {
|
| setProperty('opacity', value, '');
|
| }
|
|
|
| + /** Gets the value of "order" */
|
| + String get order =>
|
| + getPropertyValue('${_browserPrefix}order');
|
| +
|
| + /** Sets the value of "order" */
|
| + void set order(String value) {
|
| + setProperty('${_browserPrefix}order', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "orientation" */
|
| + String get orientation =>
|
| + getPropertyValue('orientation');
|
| +
|
| + /** Sets the value of "orientation" */
|
| + void set orientation(String value) {
|
| + setProperty('orientation', value, '');
|
| + }
|
| +
|
| /** Gets the value of "orphans" */
|
| String get orphans =>
|
| getPropertyValue('orphans');
|
|
|
| /** Sets the value of "orphans" */
|
| - void set orphans(var value) {
|
| + void set orphans(String value) {
|
| setProperty('orphans', value, '');
|
| }
|
|
|
| @@ -3320,7 +3581,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('outline');
|
|
|
| /** Sets the value of "outline" */
|
| - void set outline(var value) {
|
| + void set outline(String value) {
|
| setProperty('outline', value, '');
|
| }
|
|
|
| @@ -3329,7 +3590,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('outline-color');
|
|
|
| /** Sets the value of "outline-color" */
|
| - void set outlineColor(var value) {
|
| + void set outlineColor(String value) {
|
| setProperty('outline-color', value, '');
|
| }
|
|
|
| @@ -3338,7 +3599,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('outline-offset');
|
|
|
| /** Sets the value of "outline-offset" */
|
| - void set outlineOffset(var value) {
|
| + void set outlineOffset(String value) {
|
| setProperty('outline-offset', value, '');
|
| }
|
|
|
| @@ -3347,7 +3608,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('outline-style');
|
|
|
| /** Sets the value of "outline-style" */
|
| - void set outlineStyle(var value) {
|
| + void set outlineStyle(String value) {
|
| setProperty('outline-style', value, '');
|
| }
|
|
|
| @@ -3356,7 +3617,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('outline-width');
|
|
|
| /** Sets the value of "outline-width" */
|
| - void set outlineWidth(var value) {
|
| + void set outlineWidth(String value) {
|
| setProperty('outline-width', value, '');
|
| }
|
|
|
| @@ -3365,16 +3626,34 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('overflow');
|
|
|
| /** Sets the value of "overflow" */
|
| - void set overflow(var value) {
|
| + void set overflow(String value) {
|
| setProperty('overflow', value, '');
|
| }
|
|
|
| + /** Gets the value of "overflow-scrolling" */
|
| + String get overflowScrolling =>
|
| + getPropertyValue('${_browserPrefix}overflow-scrolling');
|
| +
|
| + /** Sets the value of "overflow-scrolling" */
|
| + void set overflowScrolling(String value) {
|
| + setProperty('${_browserPrefix}overflow-scrolling', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "overflow-wrap" */
|
| + String get overflowWrap =>
|
| + getPropertyValue('overflow-wrap');
|
| +
|
| + /** Sets the value of "overflow-wrap" */
|
| + void set overflowWrap(String value) {
|
| + setProperty('overflow-wrap', value, '');
|
| + }
|
| +
|
| /** Gets the value of "overflow-x" */
|
| String get overflowX =>
|
| getPropertyValue('overflow-x');
|
|
|
| /** Sets the value of "overflow-x" */
|
| - void set overflowX(var value) {
|
| + void set overflowX(String value) {
|
| setProperty('overflow-x', value, '');
|
| }
|
|
|
| @@ -3383,7 +3662,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('overflow-y');
|
|
|
| /** Sets the value of "overflow-y" */
|
| - void set overflowY(var value) {
|
| + void set overflowY(String value) {
|
| setProperty('overflow-y', value, '');
|
| }
|
|
|
| @@ -3392,7 +3671,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('padding');
|
|
|
| /** Sets the value of "padding" */
|
| - void set padding(var value) {
|
| + void set padding(String value) {
|
| setProperty('padding', value, '');
|
| }
|
|
|
| @@ -3401,7 +3680,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}padding-after');
|
|
|
| /** Sets the value of "padding-after" */
|
| - void set paddingAfter(var value) {
|
| + void set paddingAfter(String value) {
|
| setProperty('${_browserPrefix}padding-after', value, '');
|
| }
|
|
|
| @@ -3410,7 +3689,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}padding-before');
|
|
|
| /** Sets the value of "padding-before" */
|
| - void set paddingBefore(var value) {
|
| + void set paddingBefore(String value) {
|
| setProperty('${_browserPrefix}padding-before', value, '');
|
| }
|
|
|
| @@ -3419,7 +3698,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('padding-bottom');
|
|
|
| /** Sets the value of "padding-bottom" */
|
| - void set paddingBottom(var value) {
|
| + void set paddingBottom(String value) {
|
| setProperty('padding-bottom', value, '');
|
| }
|
|
|
| @@ -3428,7 +3707,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}padding-end');
|
|
|
| /** Sets the value of "padding-end" */
|
| - void set paddingEnd(var value) {
|
| + void set paddingEnd(String value) {
|
| setProperty('${_browserPrefix}padding-end', value, '');
|
| }
|
|
|
| @@ -3437,7 +3716,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('padding-left');
|
|
|
| /** Sets the value of "padding-left" */
|
| - void set paddingLeft(var value) {
|
| + void set paddingLeft(String value) {
|
| setProperty('padding-left', value, '');
|
| }
|
|
|
| @@ -3446,7 +3725,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('padding-right');
|
|
|
| /** Sets the value of "padding-right" */
|
| - void set paddingRight(var value) {
|
| + void set paddingRight(String value) {
|
| setProperty('padding-right', value, '');
|
| }
|
|
|
| @@ -3455,7 +3734,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}padding-start');
|
|
|
| /** Sets the value of "padding-start" */
|
| - void set paddingStart(var value) {
|
| + void set paddingStart(String value) {
|
| setProperty('${_browserPrefix}padding-start', value, '');
|
| }
|
|
|
| @@ -3464,7 +3743,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('padding-top');
|
|
|
| /** Sets the value of "padding-top" */
|
| - void set paddingTop(var value) {
|
| + void set paddingTop(String value) {
|
| setProperty('padding-top', value, '');
|
| }
|
|
|
| @@ -3473,7 +3752,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('page');
|
|
|
| /** Sets the value of "page" */
|
| - void set page(var value) {
|
| + void set page(String value) {
|
| setProperty('page', value, '');
|
| }
|
|
|
| @@ -3482,7 +3761,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('page-break-after');
|
|
|
| /** Sets the value of "page-break-after" */
|
| - void set pageBreakAfter(var value) {
|
| + void set pageBreakAfter(String value) {
|
| setProperty('page-break-after', value, '');
|
| }
|
|
|
| @@ -3491,7 +3770,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('page-break-before');
|
|
|
| /** Sets the value of "page-break-before" */
|
| - void set pageBreakBefore(var value) {
|
| + void set pageBreakBefore(String value) {
|
| setProperty('page-break-before', value, '');
|
| }
|
|
|
| @@ -3500,7 +3779,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('page-break-inside');
|
|
|
| /** Sets the value of "page-break-inside" */
|
| - void set pageBreakInside(var value) {
|
| + void set pageBreakInside(String value) {
|
| setProperty('page-break-inside', value, '');
|
| }
|
|
|
| @@ -3509,7 +3788,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}perspective');
|
|
|
| /** Sets the value of "perspective" */
|
| - void set perspective(var value) {
|
| + void set perspective(String value) {
|
| setProperty('${_browserPrefix}perspective', value, '');
|
| }
|
|
|
| @@ -3518,7 +3797,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}perspective-origin');
|
|
|
| /** Sets the value of "perspective-origin" */
|
| - void set perspectiveOrigin(var value) {
|
| + void set perspectiveOrigin(String value) {
|
| setProperty('${_browserPrefix}perspective-origin', value, '');
|
| }
|
|
|
| @@ -3527,7 +3806,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}perspective-origin-x');
|
|
|
| /** Sets the value of "perspective-origin-x" */
|
| - void set perspectiveOriginX(var value) {
|
| + void set perspectiveOriginX(String value) {
|
| setProperty('${_browserPrefix}perspective-origin-x', value, '');
|
| }
|
|
|
| @@ -3536,7 +3815,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}perspective-origin-y');
|
|
|
| /** Sets the value of "perspective-origin-y" */
|
| - void set perspectiveOriginY(var value) {
|
| + void set perspectiveOriginY(String value) {
|
| setProperty('${_browserPrefix}perspective-origin-y', value, '');
|
| }
|
|
|
| @@ -3545,7 +3824,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('pointer-events');
|
|
|
| /** Sets the value of "pointer-events" */
|
| - void set pointerEvents(var value) {
|
| + void set pointerEvents(String value) {
|
| setProperty('pointer-events', value, '');
|
| }
|
|
|
| @@ -3554,16 +3833,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('position');
|
|
|
| /** Sets the value of "position" */
|
| - void set position(var value) {
|
| + void set position(String value) {
|
| setProperty('position', value, '');
|
| }
|
|
|
| + /** Gets the value of "print-color-adjust" */
|
| + String get printColorAdjust =>
|
| + getPropertyValue('${_browserPrefix}print-color-adjust');
|
| +
|
| + /** Sets the value of "print-color-adjust" */
|
| + void set printColorAdjust(String value) {
|
| + setProperty('${_browserPrefix}print-color-adjust', value, '');
|
| + }
|
| +
|
| /** Gets the value of "quotes" */
|
| String get quotes =>
|
| getPropertyValue('quotes');
|
|
|
| /** Sets the value of "quotes" */
|
| - void set quotes(var value) {
|
| + void set quotes(String value) {
|
| setProperty('quotes', value, '');
|
| }
|
|
|
| @@ -3572,7 +3860,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}region-break-after');
|
|
|
| /** Sets the value of "region-break-after" */
|
| - void set regionBreakAfter(var value) {
|
| + void set regionBreakAfter(String value) {
|
| setProperty('${_browserPrefix}region-break-after', value, '');
|
| }
|
|
|
| @@ -3581,7 +3869,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}region-break-before');
|
|
|
| /** Sets the value of "region-break-before" */
|
| - void set regionBreakBefore(var value) {
|
| + void set regionBreakBefore(String value) {
|
| setProperty('${_browserPrefix}region-break-before', value, '');
|
| }
|
|
|
| @@ -3590,7 +3878,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}region-break-inside');
|
|
|
| /** Sets the value of "region-break-inside" */
|
| - void set regionBreakInside(var value) {
|
| + void set regionBreakInside(String value) {
|
| setProperty('${_browserPrefix}region-break-inside', value, '');
|
| }
|
|
|
| @@ -3599,7 +3887,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}region-overflow');
|
|
|
| /** Sets the value of "region-overflow" */
|
| - void set regionOverflow(var value) {
|
| + void set regionOverflow(String value) {
|
| setProperty('${_browserPrefix}region-overflow', value, '');
|
| }
|
|
|
| @@ -3608,7 +3896,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('resize');
|
|
|
| /** Sets the value of "resize" */
|
| - void set resize(var value) {
|
| + void set resize(String value) {
|
| setProperty('resize', value, '');
|
| }
|
|
|
| @@ -3617,7 +3905,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('right');
|
|
|
| /** Sets the value of "right" */
|
| - void set right(var value) {
|
| + void set right(String value) {
|
| setProperty('right', value, '');
|
| }
|
|
|
| @@ -3626,16 +3914,52 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}rtl-ordering');
|
|
|
| /** Sets the value of "rtl-ordering" */
|
| - void set rtlOrdering(var value) {
|
| + void set rtlOrdering(String value) {
|
| setProperty('${_browserPrefix}rtl-ordering', value, '');
|
| }
|
|
|
| + /** Gets the value of "shape-inside" */
|
| + String get shapeInside =>
|
| + getPropertyValue('${_browserPrefix}shape-inside');
|
| +
|
| + /** Sets the value of "shape-inside" */
|
| + void set shapeInside(String value) {
|
| + setProperty('${_browserPrefix}shape-inside', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "shape-margin" */
|
| + String get shapeMargin =>
|
| + getPropertyValue('${_browserPrefix}shape-margin');
|
| +
|
| + /** Sets the value of "shape-margin" */
|
| + void set shapeMargin(String value) {
|
| + setProperty('${_browserPrefix}shape-margin', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "shape-outside" */
|
| + String get shapeOutside =>
|
| + getPropertyValue('${_browserPrefix}shape-outside');
|
| +
|
| + /** Sets the value of "shape-outside" */
|
| + void set shapeOutside(String value) {
|
| + setProperty('${_browserPrefix}shape-outside', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "shape-padding" */
|
| + String get shapePadding =>
|
| + getPropertyValue('${_browserPrefix}shape-padding');
|
| +
|
| + /** Sets the value of "shape-padding" */
|
| + void set shapePadding(String value) {
|
| + setProperty('${_browserPrefix}shape-padding', value, '');
|
| + }
|
| +
|
| /** Gets the value of "size" */
|
| String get size =>
|
| getPropertyValue('size');
|
|
|
| /** Sets the value of "size" */
|
| - void set size(var value) {
|
| + void set size(String value) {
|
| setProperty('size', value, '');
|
| }
|
|
|
| @@ -3644,7 +3968,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('speak');
|
|
|
| /** Sets the value of "speak" */
|
| - void set speak(var value) {
|
| + void set speak(String value) {
|
| setProperty('speak', value, '');
|
| }
|
|
|
| @@ -3653,16 +3977,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('src');
|
|
|
| /** Sets the value of "src" */
|
| - void set src(var value) {
|
| + void set src(String value) {
|
| setProperty('src', value, '');
|
| }
|
|
|
| + /** Gets the value of "tab-size" */
|
| + String get tabSize =>
|
| + getPropertyValue('tab-size');
|
| +
|
| + /** Sets the value of "tab-size" */
|
| + void set tabSize(String value) {
|
| + setProperty('tab-size', value, '');
|
| + }
|
| +
|
| /** Gets the value of "table-layout" */
|
| String get tableLayout =>
|
| getPropertyValue('table-layout');
|
|
|
| /** Sets the value of "table-layout" */
|
| - void set tableLayout(var value) {
|
| + void set tableLayout(String value) {
|
| setProperty('table-layout', value, '');
|
| }
|
|
|
| @@ -3671,7 +4004,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}tap-highlight-color');
|
|
|
| /** Sets the value of "tap-highlight-color" */
|
| - void set tapHighlightColor(var value) {
|
| + void set tapHighlightColor(String value) {
|
| setProperty('${_browserPrefix}tap-highlight-color', value, '');
|
| }
|
|
|
| @@ -3680,16 +4013,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-align');
|
|
|
| /** Sets the value of "text-align" */
|
| - void set textAlign(var value) {
|
| + void set textAlign(String value) {
|
| setProperty('text-align', value, '');
|
| }
|
|
|
| + /** Gets the value of "text-align-last" */
|
| + String get textAlignLast =>
|
| + getPropertyValue('${_browserPrefix}text-align-last');
|
| +
|
| + /** Sets the value of "text-align-last" */
|
| + void set textAlignLast(String value) {
|
| + setProperty('${_browserPrefix}text-align-last', value, '');
|
| + }
|
| +
|
| /** Gets the value of "text-combine" */
|
| String get textCombine =>
|
| getPropertyValue('${_browserPrefix}text-combine');
|
|
|
| /** Sets the value of "text-combine" */
|
| - void set textCombine(var value) {
|
| + void set textCombine(String value) {
|
| setProperty('${_browserPrefix}text-combine', value, '');
|
| }
|
|
|
| @@ -3698,16 +4040,34 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-decoration');
|
|
|
| /** Sets the value of "text-decoration" */
|
| - void set textDecoration(var value) {
|
| + void set textDecoration(String value) {
|
| setProperty('text-decoration', value, '');
|
| }
|
|
|
| + /** Gets the value of "text-decoration-line" */
|
| + String get textDecorationLine =>
|
| + getPropertyValue('${_browserPrefix}text-decoration-line');
|
| +
|
| + /** Sets the value of "text-decoration-line" */
|
| + void set textDecorationLine(String value) {
|
| + setProperty('${_browserPrefix}text-decoration-line', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "text-decoration-style" */
|
| + String get textDecorationStyle =>
|
| + getPropertyValue('${_browserPrefix}text-decoration-style');
|
| +
|
| + /** Sets the value of "text-decoration-style" */
|
| + void set textDecorationStyle(String value) {
|
| + setProperty('${_browserPrefix}text-decoration-style', value, '');
|
| + }
|
| +
|
| /** Gets the value of "text-decorations-in-effect" */
|
| String get textDecorationsInEffect =>
|
| getPropertyValue('${_browserPrefix}text-decorations-in-effect');
|
|
|
| /** Sets the value of "text-decorations-in-effect" */
|
| - void set textDecorationsInEffect(var value) {
|
| + void set textDecorationsInEffect(String value) {
|
| setProperty('${_browserPrefix}text-decorations-in-effect', value, '');
|
| }
|
|
|
| @@ -3716,7 +4076,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-emphasis');
|
|
|
| /** Sets the value of "text-emphasis" */
|
| - void set textEmphasis(var value) {
|
| + void set textEmphasis(String value) {
|
| setProperty('${_browserPrefix}text-emphasis', value, '');
|
| }
|
|
|
| @@ -3725,7 +4085,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-emphasis-color');
|
|
|
| /** Sets the value of "text-emphasis-color" */
|
| - void set textEmphasisColor(var value) {
|
| + void set textEmphasisColor(String value) {
|
| setProperty('${_browserPrefix}text-emphasis-color', value, '');
|
| }
|
|
|
| @@ -3734,7 +4094,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-emphasis-position');
|
|
|
| /** Sets the value of "text-emphasis-position" */
|
| - void set textEmphasisPosition(var value) {
|
| + void set textEmphasisPosition(String value) {
|
| setProperty('${_browserPrefix}text-emphasis-position', value, '');
|
| }
|
|
|
| @@ -3743,7 +4103,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-emphasis-style');
|
|
|
| /** Sets the value of "text-emphasis-style" */
|
| - void set textEmphasisStyle(var value) {
|
| + void set textEmphasisStyle(String value) {
|
| setProperty('${_browserPrefix}text-emphasis-style', value, '');
|
| }
|
|
|
| @@ -3752,7 +4112,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-fill-color');
|
|
|
| /** Sets the value of "text-fill-color" */
|
| - void set textFillColor(var value) {
|
| + void set textFillColor(String value) {
|
| setProperty('${_browserPrefix}text-fill-color', value, '');
|
| }
|
|
|
| @@ -3761,7 +4121,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-indent');
|
|
|
| /** Sets the value of "text-indent" */
|
| - void set textIndent(var value) {
|
| + void set textIndent(String value) {
|
| setProperty('text-indent', value, '');
|
| }
|
|
|
| @@ -3770,7 +4130,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-line-through');
|
|
|
| /** Sets the value of "text-line-through" */
|
| - void set textLineThrough(var value) {
|
| + void set textLineThrough(String value) {
|
| setProperty('text-line-through', value, '');
|
| }
|
|
|
| @@ -3779,7 +4139,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-line-through-color');
|
|
|
| /** Sets the value of "text-line-through-color" */
|
| - void set textLineThroughColor(var value) {
|
| + void set textLineThroughColor(String value) {
|
| setProperty('text-line-through-color', value, '');
|
| }
|
|
|
| @@ -3788,7 +4148,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-line-through-mode');
|
|
|
| /** Sets the value of "text-line-through-mode" */
|
| - void set textLineThroughMode(var value) {
|
| + void set textLineThroughMode(String value) {
|
| setProperty('text-line-through-mode', value, '');
|
| }
|
|
|
| @@ -3797,7 +4157,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-line-through-style');
|
|
|
| /** Sets the value of "text-line-through-style" */
|
| - void set textLineThroughStyle(var value) {
|
| + void set textLineThroughStyle(String value) {
|
| setProperty('text-line-through-style', value, '');
|
| }
|
|
|
| @@ -3806,7 +4166,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-line-through-width');
|
|
|
| /** Sets the value of "text-line-through-width" */
|
| - void set textLineThroughWidth(var value) {
|
| + void set textLineThroughWidth(String value) {
|
| setProperty('text-line-through-width', value, '');
|
| }
|
|
|
| @@ -3815,7 +4175,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-orientation');
|
|
|
| /** Sets the value of "text-orientation" */
|
| - void set textOrientation(var value) {
|
| + void set textOrientation(String value) {
|
| setProperty('${_browserPrefix}text-orientation', value, '');
|
| }
|
|
|
| @@ -3824,7 +4184,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-overflow');
|
|
|
| /** Sets the value of "text-overflow" */
|
| - void set textOverflow(var value) {
|
| + void set textOverflow(String value) {
|
| setProperty('text-overflow', value, '');
|
| }
|
|
|
| @@ -3833,7 +4193,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-overline');
|
|
|
| /** Sets the value of "text-overline" */
|
| - void set textOverline(var value) {
|
| + void set textOverline(String value) {
|
| setProperty('text-overline', value, '');
|
| }
|
|
|
| @@ -3842,7 +4202,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-overline-color');
|
|
|
| /** Sets the value of "text-overline-color" */
|
| - void set textOverlineColor(var value) {
|
| + void set textOverlineColor(String value) {
|
| setProperty('text-overline-color', value, '');
|
| }
|
|
|
| @@ -3851,7 +4211,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-overline-mode');
|
|
|
| /** Sets the value of "text-overline-mode" */
|
| - void set textOverlineMode(var value) {
|
| + void set textOverlineMode(String value) {
|
| setProperty('text-overline-mode', value, '');
|
| }
|
|
|
| @@ -3860,7 +4220,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-overline-style');
|
|
|
| /** Sets the value of "text-overline-style" */
|
| - void set textOverlineStyle(var value) {
|
| + void set textOverlineStyle(String value) {
|
| setProperty('text-overline-style', value, '');
|
| }
|
|
|
| @@ -3869,7 +4229,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-overline-width');
|
|
|
| /** Sets the value of "text-overline-width" */
|
| - void set textOverlineWidth(var value) {
|
| + void set textOverlineWidth(String value) {
|
| setProperty('text-overline-width', value, '');
|
| }
|
|
|
| @@ -3878,7 +4238,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-rendering');
|
|
|
| /** Sets the value of "text-rendering" */
|
| - void set textRendering(var value) {
|
| + void set textRendering(String value) {
|
| setProperty('text-rendering', value, '');
|
| }
|
|
|
| @@ -3887,7 +4247,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-security');
|
|
|
| /** Sets the value of "text-security" */
|
| - void set textSecurity(var value) {
|
| + void set textSecurity(String value) {
|
| setProperty('${_browserPrefix}text-security', value, '');
|
| }
|
|
|
| @@ -3896,7 +4256,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-shadow');
|
|
|
| /** Sets the value of "text-shadow" */
|
| - void set textShadow(var value) {
|
| + void set textShadow(String value) {
|
| setProperty('text-shadow', value, '');
|
| }
|
|
|
| @@ -3905,7 +4265,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-size-adjust');
|
|
|
| /** Sets the value of "text-size-adjust" */
|
| - void set textSizeAdjust(var value) {
|
| + void set textSizeAdjust(String value) {
|
| setProperty('${_browserPrefix}text-size-adjust', value, '');
|
| }
|
|
|
| @@ -3914,7 +4274,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-stroke');
|
|
|
| /** Sets the value of "text-stroke" */
|
| - void set textStroke(var value) {
|
| + void set textStroke(String value) {
|
| setProperty('${_browserPrefix}text-stroke', value, '');
|
| }
|
|
|
| @@ -3923,7 +4283,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-stroke-color');
|
|
|
| /** Sets the value of "text-stroke-color" */
|
| - void set textStrokeColor(var value) {
|
| + void set textStrokeColor(String value) {
|
| setProperty('${_browserPrefix}text-stroke-color', value, '');
|
| }
|
|
|
| @@ -3932,7 +4292,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}text-stroke-width');
|
|
|
| /** Sets the value of "text-stroke-width" */
|
| - void set textStrokeWidth(var value) {
|
| + void set textStrokeWidth(String value) {
|
| setProperty('${_browserPrefix}text-stroke-width', value, '');
|
| }
|
|
|
| @@ -3941,7 +4301,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-transform');
|
|
|
| /** Sets the value of "text-transform" */
|
| - void set textTransform(var value) {
|
| + void set textTransform(String value) {
|
| setProperty('text-transform', value, '');
|
| }
|
|
|
| @@ -3950,7 +4310,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-underline');
|
|
|
| /** Sets the value of "text-underline" */
|
| - void set textUnderline(var value) {
|
| + void set textUnderline(String value) {
|
| setProperty('text-underline', value, '');
|
| }
|
|
|
| @@ -3959,7 +4319,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-underline-color');
|
|
|
| /** Sets the value of "text-underline-color" */
|
| - void set textUnderlineColor(var value) {
|
| + void set textUnderlineColor(String value) {
|
| setProperty('text-underline-color', value, '');
|
| }
|
|
|
| @@ -3968,7 +4328,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-underline-mode');
|
|
|
| /** Sets the value of "text-underline-mode" */
|
| - void set textUnderlineMode(var value) {
|
| + void set textUnderlineMode(String value) {
|
| setProperty('text-underline-mode', value, '');
|
| }
|
|
|
| @@ -3977,7 +4337,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-underline-style');
|
|
|
| /** Sets the value of "text-underline-style" */
|
| - void set textUnderlineStyle(var value) {
|
| + void set textUnderlineStyle(String value) {
|
| setProperty('text-underline-style', value, '');
|
| }
|
|
|
| @@ -3986,7 +4346,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('text-underline-width');
|
|
|
| /** Sets the value of "text-underline-width" */
|
| - void set textUnderlineWidth(var value) {
|
| + void set textUnderlineWidth(String value) {
|
| setProperty('text-underline-width', value, '');
|
| }
|
|
|
| @@ -3995,7 +4355,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('top');
|
|
|
| /** Sets the value of "top" */
|
| - void set top(var value) {
|
| + void set top(String value) {
|
| setProperty('top', value, '');
|
| }
|
|
|
| @@ -4004,7 +4364,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transform');
|
|
|
| /** Sets the value of "transform" */
|
| - void set transform(var value) {
|
| + void set transform(String value) {
|
| setProperty('${_browserPrefix}transform', value, '');
|
| }
|
|
|
| @@ -4013,7 +4373,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transform-origin');
|
|
|
| /** Sets the value of "transform-origin" */
|
| - void set transformOrigin(var value) {
|
| + void set transformOrigin(String value) {
|
| setProperty('${_browserPrefix}transform-origin', value, '');
|
| }
|
|
|
| @@ -4022,7 +4382,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transform-origin-x');
|
|
|
| /** Sets the value of "transform-origin-x" */
|
| - void set transformOriginX(var value) {
|
| + void set transformOriginX(String value) {
|
| setProperty('${_browserPrefix}transform-origin-x', value, '');
|
| }
|
|
|
| @@ -4031,7 +4391,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transform-origin-y');
|
|
|
| /** Sets the value of "transform-origin-y" */
|
| - void set transformOriginY(var value) {
|
| + void set transformOriginY(String value) {
|
| setProperty('${_browserPrefix}transform-origin-y', value, '');
|
| }
|
|
|
| @@ -4040,7 +4400,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transform-origin-z');
|
|
|
| /** Sets the value of "transform-origin-z" */
|
| - void set transformOriginZ(var value) {
|
| + void set transformOriginZ(String value) {
|
| setProperty('${_browserPrefix}transform-origin-z', value, '');
|
| }
|
|
|
| @@ -4049,7 +4409,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transform-style');
|
|
|
| /** Sets the value of "transform-style" */
|
| - void set transformStyle(var value) {
|
| + void set transformStyle(String value) {
|
| setProperty('${_browserPrefix}transform-style', value, '');
|
| }
|
|
|
| @@ -4058,7 +4418,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transition');
|
|
|
| /** Sets the value of "transition" */
|
| - void set transition(var value) {
|
| + void set transition(String value) {
|
| setProperty('${_browserPrefix}transition', value, '');
|
| }
|
|
|
| @@ -4067,7 +4427,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transition-delay');
|
|
|
| /** Sets the value of "transition-delay" */
|
| - void set transitionDelay(var value) {
|
| + void set transitionDelay(String value) {
|
| setProperty('${_browserPrefix}transition-delay', value, '');
|
| }
|
|
|
| @@ -4076,7 +4436,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transition-duration');
|
|
|
| /** Sets the value of "transition-duration" */
|
| - void set transitionDuration(var value) {
|
| + void set transitionDuration(String value) {
|
| setProperty('${_browserPrefix}transition-duration', value, '');
|
| }
|
|
|
| @@ -4085,7 +4445,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transition-property');
|
|
|
| /** Sets the value of "transition-property" */
|
| - void set transitionProperty(var value) {
|
| + void set transitionProperty(String value) {
|
| setProperty('${_browserPrefix}transition-property', value, '');
|
| }
|
|
|
| @@ -4094,7 +4454,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}transition-timing-function');
|
|
|
| /** Sets the value of "transition-timing-function" */
|
| - void set transitionTimingFunction(var value) {
|
| + void set transitionTimingFunction(String value) {
|
| setProperty('${_browserPrefix}transition-timing-function', value, '');
|
| }
|
|
|
| @@ -4103,7 +4463,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('unicode-bidi');
|
|
|
| /** Sets the value of "unicode-bidi" */
|
| - void set unicodeBidi(var value) {
|
| + void set unicodeBidi(String value) {
|
| setProperty('unicode-bidi', value, '');
|
| }
|
|
|
| @@ -4112,7 +4472,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('unicode-range');
|
|
|
| /** Sets the value of "unicode-range" */
|
| - void set unicodeRange(var value) {
|
| + void set unicodeRange(String value) {
|
| setProperty('unicode-range', value, '');
|
| }
|
|
|
| @@ -4121,7 +4481,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}user-drag');
|
|
|
| /** Sets the value of "user-drag" */
|
| - void set userDrag(var value) {
|
| + void set userDrag(String value) {
|
| setProperty('${_browserPrefix}user-drag', value, '');
|
| }
|
|
|
| @@ -4130,7 +4490,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}user-modify');
|
|
|
| /** Sets the value of "user-modify" */
|
| - void set userModify(var value) {
|
| + void set userModify(String value) {
|
| setProperty('${_browserPrefix}user-modify', value, '');
|
| }
|
|
|
| @@ -4139,16 +4499,25 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}user-select');
|
|
|
| /** Sets the value of "user-select" */
|
| - void set userSelect(var value) {
|
| + void set userSelect(String value) {
|
| setProperty('${_browserPrefix}user-select', value, '');
|
| }
|
|
|
| + /** Gets the value of "user-zoom" */
|
| + String get userZoom =>
|
| + getPropertyValue('user-zoom');
|
| +
|
| + /** Sets the value of "user-zoom" */
|
| + void set userZoom(String value) {
|
| + setProperty('user-zoom', value, '');
|
| + }
|
| +
|
| /** Gets the value of "vertical-align" */
|
| String get verticalAlign =>
|
| getPropertyValue('vertical-align');
|
|
|
| /** Sets the value of "vertical-align" */
|
| - void set verticalAlign(var value) {
|
| + void set verticalAlign(String value) {
|
| setProperty('vertical-align', value, '');
|
| }
|
|
|
| @@ -4157,7 +4526,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('visibility');
|
|
|
| /** Sets the value of "visibility" */
|
| - void set visibility(var value) {
|
| + void set visibility(String value) {
|
| setProperty('visibility', value, '');
|
| }
|
|
|
| @@ -4166,7 +4535,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('white-space');
|
|
|
| /** Sets the value of "white-space" */
|
| - void set whiteSpace(var value) {
|
| + void set whiteSpace(String value) {
|
| setProperty('white-space', value, '');
|
| }
|
|
|
| @@ -4175,7 +4544,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('widows');
|
|
|
| /** Sets the value of "widows" */
|
| - void set widows(var value) {
|
| + void set widows(String value) {
|
| setProperty('widows', value, '');
|
| }
|
|
|
| @@ -4184,7 +4553,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('width');
|
|
|
| /** Sets the value of "width" */
|
| - void set width(var value) {
|
| + void set width(String value) {
|
| setProperty('width', value, '');
|
| }
|
|
|
| @@ -4193,7 +4562,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('word-break');
|
|
|
| /** Sets the value of "word-break" */
|
| - void set wordBreak(var value) {
|
| + void set wordBreak(String value) {
|
| setProperty('word-break', value, '');
|
| }
|
|
|
| @@ -4202,7 +4571,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('word-spacing');
|
|
|
| /** Sets the value of "word-spacing" */
|
| - void set wordSpacing(var value) {
|
| + void set wordSpacing(String value) {
|
| setProperty('word-spacing', value, '');
|
| }
|
|
|
| @@ -4211,17 +4580,35 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('word-wrap');
|
|
|
| /** Sets the value of "word-wrap" */
|
| - void set wordWrap(var value) {
|
| + void set wordWrap(String value) {
|
| setProperty('word-wrap', value, '');
|
| }
|
|
|
| - /** Gets the value of "wrap-shape" */
|
| - String get wrapShape =>
|
| - getPropertyValue('${_browserPrefix}wrap-shape');
|
| + /** Gets the value of "wrap" */
|
| + String get wrap =>
|
| + getPropertyValue('${_browserPrefix}wrap');
|
| +
|
| + /** Sets the value of "wrap" */
|
| + void set wrap(String value) {
|
| + setProperty('${_browserPrefix}wrap', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "wrap-flow" */
|
| + String get wrapFlow =>
|
| + getPropertyValue('${_browserPrefix}wrap-flow');
|
| +
|
| + /** Sets the value of "wrap-flow" */
|
| + void set wrapFlow(String value) {
|
| + setProperty('${_browserPrefix}wrap-flow', value, '');
|
| + }
|
| +
|
| + /** Gets the value of "wrap-through" */
|
| + String get wrapThrough =>
|
| + getPropertyValue('${_browserPrefix}wrap-through');
|
|
|
| - /** Sets the value of "wrap-shape" */
|
| - void set wrapShape(var value) {
|
| - setProperty('${_browserPrefix}wrap-shape', value, '');
|
| + /** Sets the value of "wrap-through" */
|
| + void set wrapThrough(String value) {
|
| + setProperty('${_browserPrefix}wrap-through', value, '');
|
| }
|
|
|
| /** Gets the value of "writing-mode" */
|
| @@ -4229,7 +4616,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('${_browserPrefix}writing-mode');
|
|
|
| /** Sets the value of "writing-mode" */
|
| - void set writingMode(var value) {
|
| + void set writingMode(String value) {
|
| setProperty('${_browserPrefix}writing-mode', value, '');
|
| }
|
|
|
| @@ -4238,7 +4625,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('z-index');
|
|
|
| /** Sets the value of "z-index" */
|
| - void set zIndex(var value) {
|
| + void set zIndex(String value) {
|
| setProperty('z-index', value, '');
|
| }
|
|
|
| @@ -4247,7 +4634,7 @@ class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
| getPropertyValue('zoom');
|
|
|
| /** Sets the value of "zoom" */
|
| - void set zoom(var value) {
|
| + void set zoom(String value) {
|
| setProperty('zoom', value, '');
|
| }
|
| }
|
|
|