| Index: client/html/release/htmlimpl.dart
 | 
| diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
 | 
| index f3b0d21ef9d38aff917ba1bacf71c3c7331abdaf..3e3ad30ea6ac57e8b810453fcc959e87883a3375 100644
 | 
| --- a/client/html/release/htmlimpl.dart
 | 
| +++ b/client/html/release/htmlimpl.dart
 | 
| @@ -18792,7 +18792,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|  
 | 
|    String get cssText() { return _ptr.cssText; }
 | 
|  
 | 
| -  void set cssText(String value) { _ptr.cssText = value; }
 | 
| +  void set cssText(var value) { _ptr.cssText = value; }
 | 
|  
 | 
|    int get length() { return _ptr.length; }
 | 
|  
 | 
| @@ -18826,8 +18826,8 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      return _ptr.removeProperty(propertyName);
 | 
|    }
 | 
|  
 | 
| -  void setProperty(String propertyName, String value, [String priority = '']) {
 | 
| -    _ptr.setProperty(propertyName, value, priority);
 | 
| +  void setProperty(String propertyName, var value, [String priority = '']) {
 | 
| +    _ptr.setProperty(propertyName, '$value', priority);
 | 
|    }
 | 
|  
 | 
|    String get typeName() { return "CSSStyleDeclaration"; }
 | 
| @@ -18838,7 +18838,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation');
 | 
|  
 | 
|    /** Sets the value of "animation" */
 | 
| -  void set animation(String value) {
 | 
| +  void set animation(var value) {
 | 
|      setProperty('${_browserPrefix}animation', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18847,7 +18847,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-delay');
 | 
|  
 | 
|    /** Sets the value of "animation-delay" */
 | 
| -  void set animationDelay(String value) {
 | 
| +  void set animationDelay(var value) {
 | 
|      setProperty('${_browserPrefix}animation-delay', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18856,7 +18856,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-direction');
 | 
|  
 | 
|    /** Sets the value of "animation-direction" */
 | 
| -  void set animationDirection(String value) {
 | 
| +  void set animationDirection(var value) {
 | 
|      setProperty('${_browserPrefix}animation-direction', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18865,7 +18865,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-duration');
 | 
|  
 | 
|    /** Sets the value of "animation-duration" */
 | 
| -  void set animationDuration(String value) {
 | 
| +  void set animationDuration(var value) {
 | 
|      setProperty('${_browserPrefix}animation-duration', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18874,7 +18874,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-fill-mode');
 | 
|  
 | 
|    /** Sets the value of "animation-fill-mode" */
 | 
| -  void set animationFillMode(String value) {
 | 
| +  void set animationFillMode(var value) {
 | 
|      setProperty('${_browserPrefix}animation-fill-mode', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18883,7 +18883,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-iteration-count');
 | 
|  
 | 
|    /** Sets the value of "animation-iteration-count" */
 | 
| -  void set animationIterationCount(String value) {
 | 
| +  void set animationIterationCount(var value) {
 | 
|      setProperty('${_browserPrefix}animation-iteration-count', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18892,7 +18892,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-name');
 | 
|  
 | 
|    /** Sets the value of "animation-name" */
 | 
| -  void set animationName(String value) {
 | 
| +  void set animationName(var value) {
 | 
|      setProperty('${_browserPrefix}animation-name', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18901,7 +18901,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-play-state');
 | 
|  
 | 
|    /** Sets the value of "animation-play-state" */
 | 
| -  void set animationPlayState(String value) {
 | 
| +  void set animationPlayState(var value) {
 | 
|      setProperty('${_browserPrefix}animation-play-state', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18910,7 +18910,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}animation-timing-function');
 | 
|  
 | 
|    /** Sets the value of "animation-timing-function" */
 | 
| -  void set animationTimingFunction(String value) {
 | 
| +  void set animationTimingFunction(var value) {
 | 
|      setProperty('${_browserPrefix}animation-timing-function', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18919,7 +18919,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}appearance');
 | 
|  
 | 
|    /** Sets the value of "appearance" */
 | 
| -  void set appearance(String value) {
 | 
| +  void set appearance(var value) {
 | 
|      setProperty('${_browserPrefix}appearance', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18928,7 +18928,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}backface-visibility');
 | 
|  
 | 
|    /** Sets the value of "backface-visibility" */
 | 
| -  void set backfaceVisibility(String value) {
 | 
| +  void set backfaceVisibility(var value) {
 | 
|      setProperty('${_browserPrefix}backface-visibility', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18937,7 +18937,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background');
 | 
|  
 | 
|    /** Sets the value of "background" */
 | 
| -  void set background(String value) {
 | 
| +  void set background(var value) {
 | 
|      setProperty('background', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18946,7 +18946,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-attachment');
 | 
|  
 | 
|    /** Sets the value of "background-attachment" */
 | 
| -  void set backgroundAttachment(String value) {
 | 
| +  void set backgroundAttachment(var value) {
 | 
|      setProperty('background-attachment', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18955,7 +18955,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-clip');
 | 
|  
 | 
|    /** Sets the value of "background-clip" */
 | 
| -  void set backgroundClip(String value) {
 | 
| +  void set backgroundClip(var value) {
 | 
|      setProperty('background-clip', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18964,7 +18964,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-color');
 | 
|  
 | 
|    /** Sets the value of "background-color" */
 | 
| -  void set backgroundColor(String value) {
 | 
| +  void set backgroundColor(var value) {
 | 
|      setProperty('background-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18973,7 +18973,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}background-composite');
 | 
|  
 | 
|    /** Sets the value of "background-composite" */
 | 
| -  void set backgroundComposite(String value) {
 | 
| +  void set backgroundComposite(var value) {
 | 
|      setProperty('${_browserPrefix}background-composite', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18982,7 +18982,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-image');
 | 
|  
 | 
|    /** Sets the value of "background-image" */
 | 
| -  void set backgroundImage(String value) {
 | 
| +  void set backgroundImage(var value) {
 | 
|      setProperty('background-image', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -18991,7 +18991,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-origin');
 | 
|  
 | 
|    /** Sets the value of "background-origin" */
 | 
| -  void set backgroundOrigin(String value) {
 | 
| +  void set backgroundOrigin(var value) {
 | 
|      setProperty('background-origin', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19000,7 +19000,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-position');
 | 
|  
 | 
|    /** Sets the value of "background-position" */
 | 
| -  void set backgroundPosition(String value) {
 | 
| +  void set backgroundPosition(var value) {
 | 
|      setProperty('background-position', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19009,7 +19009,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-position-x');
 | 
|  
 | 
|    /** Sets the value of "background-position-x" */
 | 
| -  void set backgroundPositionX(String value) {
 | 
| +  void set backgroundPositionX(var value) {
 | 
|      setProperty('background-position-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19018,7 +19018,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-position-y');
 | 
|  
 | 
|    /** Sets the value of "background-position-y" */
 | 
| -  void set backgroundPositionY(String value) {
 | 
| +  void set backgroundPositionY(var value) {
 | 
|      setProperty('background-position-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19027,7 +19027,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-repeat');
 | 
|  
 | 
|    /** Sets the value of "background-repeat" */
 | 
| -  void set backgroundRepeat(String value) {
 | 
| +  void set backgroundRepeat(var value) {
 | 
|      setProperty('background-repeat', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19036,7 +19036,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-repeat-x');
 | 
|  
 | 
|    /** Sets the value of "background-repeat-x" */
 | 
| -  void set backgroundRepeatX(String value) {
 | 
| +  void set backgroundRepeatX(var value) {
 | 
|      setProperty('background-repeat-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19045,7 +19045,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-repeat-y');
 | 
|  
 | 
|    /** Sets the value of "background-repeat-y" */
 | 
| -  void set backgroundRepeatY(String value) {
 | 
| +  void set backgroundRepeatY(var value) {
 | 
|      setProperty('background-repeat-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19054,7 +19054,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('background-size');
 | 
|  
 | 
|    /** Sets the value of "background-size" */
 | 
| -  void set backgroundSize(String value) {
 | 
| +  void set backgroundSize(var value) {
 | 
|      setProperty('background-size', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19063,7 +19063,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border');
 | 
|  
 | 
|    /** Sets the value of "border" */
 | 
| -  void set border(String value) {
 | 
| +  void set border(var value) {
 | 
|      setProperty('border', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19072,7 +19072,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-after');
 | 
|  
 | 
|    /** Sets the value of "border-after" */
 | 
| -  void set borderAfter(String value) {
 | 
| +  void set borderAfter(var value) {
 | 
|      setProperty('${_browserPrefix}border-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19081,7 +19081,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-after-color');
 | 
|  
 | 
|    /** Sets the value of "border-after-color" */
 | 
| -  void set borderAfterColor(String value) {
 | 
| +  void set borderAfterColor(var value) {
 | 
|      setProperty('${_browserPrefix}border-after-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19090,7 +19090,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-after-style');
 | 
|  
 | 
|    /** Sets the value of "border-after-style" */
 | 
| -  void set borderAfterStyle(String value) {
 | 
| +  void set borderAfterStyle(var value) {
 | 
|      setProperty('${_browserPrefix}border-after-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19099,7 +19099,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-after-width');
 | 
|  
 | 
|    /** Sets the value of "border-after-width" */
 | 
| -  void set borderAfterWidth(String value) {
 | 
| +  void set borderAfterWidth(var value) {
 | 
|      setProperty('${_browserPrefix}border-after-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19108,7 +19108,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-before');
 | 
|  
 | 
|    /** Sets the value of "border-before" */
 | 
| -  void set borderBefore(String value) {
 | 
| +  void set borderBefore(var value) {
 | 
|      setProperty('${_browserPrefix}border-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19117,7 +19117,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-before-color');
 | 
|  
 | 
|    /** Sets the value of "border-before-color" */
 | 
| -  void set borderBeforeColor(String value) {
 | 
| +  void set borderBeforeColor(var value) {
 | 
|      setProperty('${_browserPrefix}border-before-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19126,7 +19126,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-before-style');
 | 
|  
 | 
|    /** Sets the value of "border-before-style" */
 | 
| -  void set borderBeforeStyle(String value) {
 | 
| +  void set borderBeforeStyle(var value) {
 | 
|      setProperty('${_browserPrefix}border-before-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19135,7 +19135,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-before-width');
 | 
|  
 | 
|    /** Sets the value of "border-before-width" */
 | 
| -  void set borderBeforeWidth(String value) {
 | 
| +  void set borderBeforeWidth(var value) {
 | 
|      setProperty('${_browserPrefix}border-before-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19144,7 +19144,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-bottom');
 | 
|  
 | 
|    /** Sets the value of "border-bottom" */
 | 
| -  void set borderBottom(String value) {
 | 
| +  void set borderBottom(var value) {
 | 
|      setProperty('border-bottom', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19153,7 +19153,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-bottom-color');
 | 
|  
 | 
|    /** Sets the value of "border-bottom-color" */
 | 
| -  void set borderBottomColor(String value) {
 | 
| +  void set borderBottomColor(var value) {
 | 
|      setProperty('border-bottom-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19162,7 +19162,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-bottom-left-radius');
 | 
|  
 | 
|    /** Sets the value of "border-bottom-left-radius" */
 | 
| -  void set borderBottomLeftRadius(String value) {
 | 
| +  void set borderBottomLeftRadius(var value) {
 | 
|      setProperty('border-bottom-left-radius', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19171,7 +19171,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-bottom-right-radius');
 | 
|  
 | 
|    /** Sets the value of "border-bottom-right-radius" */
 | 
| -  void set borderBottomRightRadius(String value) {
 | 
| +  void set borderBottomRightRadius(var value) {
 | 
|      setProperty('border-bottom-right-radius', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19180,7 +19180,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-bottom-style');
 | 
|  
 | 
|    /** Sets the value of "border-bottom-style" */
 | 
| -  void set borderBottomStyle(String value) {
 | 
| +  void set borderBottomStyle(var value) {
 | 
|      setProperty('border-bottom-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19189,7 +19189,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-bottom-width');
 | 
|  
 | 
|    /** Sets the value of "border-bottom-width" */
 | 
| -  void set borderBottomWidth(String value) {
 | 
| +  void set borderBottomWidth(var value) {
 | 
|      setProperty('border-bottom-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19198,7 +19198,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-collapse');
 | 
|  
 | 
|    /** Sets the value of "border-collapse" */
 | 
| -  void set borderCollapse(String value) {
 | 
| +  void set borderCollapse(var value) {
 | 
|      setProperty('border-collapse', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19207,7 +19207,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-color');
 | 
|  
 | 
|    /** Sets the value of "border-color" */
 | 
| -  void set borderColor(String value) {
 | 
| +  void set borderColor(var value) {
 | 
|      setProperty('border-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19216,7 +19216,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-end');
 | 
|  
 | 
|    /** Sets the value of "border-end" */
 | 
| -  void set borderEnd(String value) {
 | 
| +  void set borderEnd(var value) {
 | 
|      setProperty('${_browserPrefix}border-end', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19225,7 +19225,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-end-color');
 | 
|  
 | 
|    /** Sets the value of "border-end-color" */
 | 
| -  void set borderEndColor(String value) {
 | 
| +  void set borderEndColor(var value) {
 | 
|      setProperty('${_browserPrefix}border-end-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19234,7 +19234,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-end-style');
 | 
|  
 | 
|    /** Sets the value of "border-end-style" */
 | 
| -  void set borderEndStyle(String value) {
 | 
| +  void set borderEndStyle(var value) {
 | 
|      setProperty('${_browserPrefix}border-end-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19243,7 +19243,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-end-width');
 | 
|  
 | 
|    /** Sets the value of "border-end-width" */
 | 
| -  void set borderEndWidth(String value) {
 | 
| +  void set borderEndWidth(var value) {
 | 
|      setProperty('${_browserPrefix}border-end-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19252,7 +19252,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-fit');
 | 
|  
 | 
|    /** Sets the value of "border-fit" */
 | 
| -  void set borderFit(String value) {
 | 
| +  void set borderFit(var value) {
 | 
|      setProperty('${_browserPrefix}border-fit', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19261,7 +19261,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-horizontal-spacing');
 | 
|  
 | 
|    /** Sets the value of "border-horizontal-spacing" */
 | 
| -  void set borderHorizontalSpacing(String value) {
 | 
| +  void set borderHorizontalSpacing(var value) {
 | 
|      setProperty('${_browserPrefix}border-horizontal-spacing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19270,7 +19270,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-image');
 | 
|  
 | 
|    /** Sets the value of "border-image" */
 | 
| -  void set borderImage(String value) {
 | 
| +  void set borderImage(var value) {
 | 
|      setProperty('border-image', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19279,7 +19279,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-image-outset');
 | 
|  
 | 
|    /** Sets the value of "border-image-outset" */
 | 
| -  void set borderImageOutset(String value) {
 | 
| +  void set borderImageOutset(var value) {
 | 
|      setProperty('border-image-outset', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19288,7 +19288,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-image-repeat');
 | 
|  
 | 
|    /** Sets the value of "border-image-repeat" */
 | 
| -  void set borderImageRepeat(String value) {
 | 
| +  void set borderImageRepeat(var value) {
 | 
|      setProperty('border-image-repeat', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19297,7 +19297,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-image-slice');
 | 
|  
 | 
|    /** Sets the value of "border-image-slice" */
 | 
| -  void set borderImageSlice(String value) {
 | 
| +  void set borderImageSlice(var value) {
 | 
|      setProperty('border-image-slice', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19306,7 +19306,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-image-source');
 | 
|  
 | 
|    /** Sets the value of "border-image-source" */
 | 
| -  void set borderImageSource(String value) {
 | 
| +  void set borderImageSource(var value) {
 | 
|      setProperty('border-image-source', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19315,7 +19315,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-image-width');
 | 
|  
 | 
|    /** Sets the value of "border-image-width" */
 | 
| -  void set borderImageWidth(String value) {
 | 
| +  void set borderImageWidth(var value) {
 | 
|      setProperty('border-image-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19324,7 +19324,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-left');
 | 
|  
 | 
|    /** Sets the value of "border-left" */
 | 
| -  void set borderLeft(String value) {
 | 
| +  void set borderLeft(var value) {
 | 
|      setProperty('border-left', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19333,7 +19333,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-left-color');
 | 
|  
 | 
|    /** Sets the value of "border-left-color" */
 | 
| -  void set borderLeftColor(String value) {
 | 
| +  void set borderLeftColor(var value) {
 | 
|      setProperty('border-left-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19342,7 +19342,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-left-style');
 | 
|  
 | 
|    /** Sets the value of "border-left-style" */
 | 
| -  void set borderLeftStyle(String value) {
 | 
| +  void set borderLeftStyle(var value) {
 | 
|      setProperty('border-left-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19351,7 +19351,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-left-width');
 | 
|  
 | 
|    /** Sets the value of "border-left-width" */
 | 
| -  void set borderLeftWidth(String value) {
 | 
| +  void set borderLeftWidth(var value) {
 | 
|      setProperty('border-left-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19360,7 +19360,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-radius');
 | 
|  
 | 
|    /** Sets the value of "border-radius" */
 | 
| -  void set borderRadius(String value) {
 | 
| +  void set borderRadius(var value) {
 | 
|      setProperty('border-radius', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19369,7 +19369,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-right');
 | 
|  
 | 
|    /** Sets the value of "border-right" */
 | 
| -  void set borderRight(String value) {
 | 
| +  void set borderRight(var value) {
 | 
|      setProperty('border-right', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19378,7 +19378,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-right-color');
 | 
|  
 | 
|    /** Sets the value of "border-right-color" */
 | 
| -  void set borderRightColor(String value) {
 | 
| +  void set borderRightColor(var value) {
 | 
|      setProperty('border-right-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19387,7 +19387,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-right-style');
 | 
|  
 | 
|    /** Sets the value of "border-right-style" */
 | 
| -  void set borderRightStyle(String value) {
 | 
| +  void set borderRightStyle(var value) {
 | 
|      setProperty('border-right-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19396,7 +19396,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-right-width');
 | 
|  
 | 
|    /** Sets the value of "border-right-width" */
 | 
| -  void set borderRightWidth(String value) {
 | 
| +  void set borderRightWidth(var value) {
 | 
|      setProperty('border-right-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19405,7 +19405,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-spacing');
 | 
|  
 | 
|    /** Sets the value of "border-spacing" */
 | 
| -  void set borderSpacing(String value) {
 | 
| +  void set borderSpacing(var value) {
 | 
|      setProperty('border-spacing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19414,7 +19414,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-start');
 | 
|  
 | 
|    /** Sets the value of "border-start" */
 | 
| -  void set borderStart(String value) {
 | 
| +  void set borderStart(var value) {
 | 
|      setProperty('${_browserPrefix}border-start', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19423,7 +19423,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-start-color');
 | 
|  
 | 
|    /** Sets the value of "border-start-color" */
 | 
| -  void set borderStartColor(String value) {
 | 
| +  void set borderStartColor(var value) {
 | 
|      setProperty('${_browserPrefix}border-start-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19432,7 +19432,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-start-style');
 | 
|  
 | 
|    /** Sets the value of "border-start-style" */
 | 
| -  void set borderStartStyle(String value) {
 | 
| +  void set borderStartStyle(var value) {
 | 
|      setProperty('${_browserPrefix}border-start-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19441,7 +19441,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-start-width');
 | 
|  
 | 
|    /** Sets the value of "border-start-width" */
 | 
| -  void set borderStartWidth(String value) {
 | 
| +  void set borderStartWidth(var value) {
 | 
|      setProperty('${_browserPrefix}border-start-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19450,7 +19450,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-style');
 | 
|  
 | 
|    /** Sets the value of "border-style" */
 | 
| -  void set borderStyle(String value) {
 | 
| +  void set borderStyle(var value) {
 | 
|      setProperty('border-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19459,7 +19459,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-top');
 | 
|  
 | 
|    /** Sets the value of "border-top" */
 | 
| -  void set borderTop(String value) {
 | 
| +  void set borderTop(var value) {
 | 
|      setProperty('border-top', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19468,7 +19468,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-top-color');
 | 
|  
 | 
|    /** Sets the value of "border-top-color" */
 | 
| -  void set borderTopColor(String value) {
 | 
| +  void set borderTopColor(var value) {
 | 
|      setProperty('border-top-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19477,7 +19477,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-top-left-radius');
 | 
|  
 | 
|    /** Sets the value of "border-top-left-radius" */
 | 
| -  void set borderTopLeftRadius(String value) {
 | 
| +  void set borderTopLeftRadius(var value) {
 | 
|      setProperty('border-top-left-radius', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19486,7 +19486,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-top-right-radius');
 | 
|  
 | 
|    /** Sets the value of "border-top-right-radius" */
 | 
| -  void set borderTopRightRadius(String value) {
 | 
| +  void set borderTopRightRadius(var value) {
 | 
|      setProperty('border-top-right-radius', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19495,7 +19495,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-top-style');
 | 
|  
 | 
|    /** Sets the value of "border-top-style" */
 | 
| -  void set borderTopStyle(String value) {
 | 
| +  void set borderTopStyle(var value) {
 | 
|      setProperty('border-top-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19504,7 +19504,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-top-width');
 | 
|  
 | 
|    /** Sets the value of "border-top-width" */
 | 
| -  void set borderTopWidth(String value) {
 | 
| +  void set borderTopWidth(var value) {
 | 
|      setProperty('border-top-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19513,7 +19513,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}border-vertical-spacing');
 | 
|  
 | 
|    /** Sets the value of "border-vertical-spacing" */
 | 
| -  void set borderVerticalSpacing(String value) {
 | 
| +  void set borderVerticalSpacing(var value) {
 | 
|      setProperty('${_browserPrefix}border-vertical-spacing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19522,7 +19522,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('border-width');
 | 
|  
 | 
|    /** Sets the value of "border-width" */
 | 
| -  void set borderWidth(String value) {
 | 
| +  void set borderWidth(var value) {
 | 
|      setProperty('border-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19531,7 +19531,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('bottom');
 | 
|  
 | 
|    /** Sets the value of "bottom" */
 | 
| -  void set bottom(String value) {
 | 
| +  void set bottom(var value) {
 | 
|      setProperty('bottom', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19540,7 +19540,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-align');
 | 
|  
 | 
|    /** Sets the value of "box-align" */
 | 
| -  void set boxAlign(String value) {
 | 
| +  void set boxAlign(var value) {
 | 
|      setProperty('${_browserPrefix}box-align', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19549,7 +19549,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-direction');
 | 
|  
 | 
|    /** Sets the value of "box-direction" */
 | 
| -  void set boxDirection(String value) {
 | 
| +  void set boxDirection(var value) {
 | 
|      setProperty('${_browserPrefix}box-direction', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19558,7 +19558,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-flex');
 | 
|  
 | 
|    /** Sets the value of "box-flex" */
 | 
| -  void set boxFlex(String value) {
 | 
| +  void set boxFlex(var value) {
 | 
|      setProperty('${_browserPrefix}box-flex', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19567,7 +19567,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-flex-group');
 | 
|  
 | 
|    /** Sets the value of "box-flex-group" */
 | 
| -  void set boxFlexGroup(String value) {
 | 
| +  void set boxFlexGroup(var value) {
 | 
|      setProperty('${_browserPrefix}box-flex-group', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19576,7 +19576,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-lines');
 | 
|  
 | 
|    /** Sets the value of "box-lines" */
 | 
| -  void set boxLines(String value) {
 | 
| +  void set boxLines(var value) {
 | 
|      setProperty('${_browserPrefix}box-lines', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19585,7 +19585,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-ordinal-group');
 | 
|  
 | 
|    /** Sets the value of "box-ordinal-group" */
 | 
| -  void set boxOrdinalGroup(String value) {
 | 
| +  void set boxOrdinalGroup(var value) {
 | 
|      setProperty('${_browserPrefix}box-ordinal-group', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19594,7 +19594,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-orient');
 | 
|  
 | 
|    /** Sets the value of "box-orient" */
 | 
| -  void set boxOrient(String value) {
 | 
| +  void set boxOrient(var value) {
 | 
|      setProperty('${_browserPrefix}box-orient', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19603,7 +19603,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-pack');
 | 
|  
 | 
|    /** Sets the value of "box-pack" */
 | 
| -  void set boxPack(String value) {
 | 
| +  void set boxPack(var value) {
 | 
|      setProperty('${_browserPrefix}box-pack', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19612,7 +19612,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}box-reflect');
 | 
|  
 | 
|    /** Sets the value of "box-reflect" */
 | 
| -  void set boxReflect(String value) {
 | 
| +  void set boxReflect(var value) {
 | 
|      setProperty('${_browserPrefix}box-reflect', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19621,7 +19621,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('box-shadow');
 | 
|  
 | 
|    /** Sets the value of "box-shadow" */
 | 
| -  void set boxShadow(String value) {
 | 
| +  void set boxShadow(var value) {
 | 
|      setProperty('box-shadow', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19630,7 +19630,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('box-sizing');
 | 
|  
 | 
|    /** Sets the value of "box-sizing" */
 | 
| -  void set boxSizing(String value) {
 | 
| +  void set boxSizing(var value) {
 | 
|      setProperty('box-sizing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19639,7 +19639,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('caption-side');
 | 
|  
 | 
|    /** Sets the value of "caption-side" */
 | 
| -  void set captionSide(String value) {
 | 
| +  void set captionSide(var value) {
 | 
|      setProperty('caption-side', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19648,7 +19648,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('clear');
 | 
|  
 | 
|    /** Sets the value of "clear" */
 | 
| -  void set clear(String value) {
 | 
| +  void set clear(var value) {
 | 
|      setProperty('clear', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19657,7 +19657,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('clip');
 | 
|  
 | 
|    /** Sets the value of "clip" */
 | 
| -  void set clip(String value) {
 | 
| +  void set clip(var value) {
 | 
|      setProperty('clip', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19666,7 +19666,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('color');
 | 
|  
 | 
|    /** Sets the value of "color" */
 | 
| -  void set color(String value) {
 | 
| +  void set color(var value) {
 | 
|      setProperty('color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19675,7 +19675,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}color-correction');
 | 
|  
 | 
|    /** Sets the value of "color-correction" */
 | 
| -  void set colorCorrection(String value) {
 | 
| +  void set colorCorrection(var value) {
 | 
|      setProperty('${_browserPrefix}color-correction', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19684,7 +19684,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-break-after');
 | 
|  
 | 
|    /** Sets the value of "column-break-after" */
 | 
| -  void set columnBreakAfter(String value) {
 | 
| +  void set columnBreakAfter(var value) {
 | 
|      setProperty('${_browserPrefix}column-break-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19693,7 +19693,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-break-before');
 | 
|  
 | 
|    /** Sets the value of "column-break-before" */
 | 
| -  void set columnBreakBefore(String value) {
 | 
| +  void set columnBreakBefore(var value) {
 | 
|      setProperty('${_browserPrefix}column-break-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19702,7 +19702,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-break-inside');
 | 
|  
 | 
|    /** Sets the value of "column-break-inside" */
 | 
| -  void set columnBreakInside(String value) {
 | 
| +  void set columnBreakInside(var value) {
 | 
|      setProperty('${_browserPrefix}column-break-inside', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19711,7 +19711,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-count');
 | 
|  
 | 
|    /** Sets the value of "column-count" */
 | 
| -  void set columnCount(String value) {
 | 
| +  void set columnCount(var value) {
 | 
|      setProperty('${_browserPrefix}column-count', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19720,7 +19720,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-gap');
 | 
|  
 | 
|    /** Sets the value of "column-gap" */
 | 
| -  void set columnGap(String value) {
 | 
| +  void set columnGap(var value) {
 | 
|      setProperty('${_browserPrefix}column-gap', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19729,7 +19729,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-rule');
 | 
|  
 | 
|    /** Sets the value of "column-rule" */
 | 
| -  void set columnRule(String value) {
 | 
| +  void set columnRule(var value) {
 | 
|      setProperty('${_browserPrefix}column-rule', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19738,7 +19738,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-rule-color');
 | 
|  
 | 
|    /** Sets the value of "column-rule-color" */
 | 
| -  void set columnRuleColor(String value) {
 | 
| +  void set columnRuleColor(var value) {
 | 
|      setProperty('${_browserPrefix}column-rule-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19747,7 +19747,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-rule-style');
 | 
|  
 | 
|    /** Sets the value of "column-rule-style" */
 | 
| -  void set columnRuleStyle(String value) {
 | 
| +  void set columnRuleStyle(var value) {
 | 
|      setProperty('${_browserPrefix}column-rule-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19756,7 +19756,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-rule-width');
 | 
|  
 | 
|    /** Sets the value of "column-rule-width" */
 | 
| -  void set columnRuleWidth(String value) {
 | 
| +  void set columnRuleWidth(var value) {
 | 
|      setProperty('${_browserPrefix}column-rule-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19765,7 +19765,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-span');
 | 
|  
 | 
|    /** Sets the value of "column-span" */
 | 
| -  void set columnSpan(String value) {
 | 
| +  void set columnSpan(var value) {
 | 
|      setProperty('${_browserPrefix}column-span', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19774,7 +19774,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}column-width');
 | 
|  
 | 
|    /** Sets the value of "column-width" */
 | 
| -  void set columnWidth(String value) {
 | 
| +  void set columnWidth(var value) {
 | 
|      setProperty('${_browserPrefix}column-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19783,7 +19783,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}columns');
 | 
|  
 | 
|    /** Sets the value of "columns" */
 | 
| -  void set columns(String value) {
 | 
| +  void set columns(var value) {
 | 
|      setProperty('${_browserPrefix}columns', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19792,7 +19792,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('content');
 | 
|  
 | 
|    /** Sets the value of "content" */
 | 
| -  void set content(String value) {
 | 
| +  void set content(var value) {
 | 
|      setProperty('content', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19801,7 +19801,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('counter-increment');
 | 
|  
 | 
|    /** Sets the value of "counter-increment" */
 | 
| -  void set counterIncrement(String value) {
 | 
| +  void set counterIncrement(var value) {
 | 
|      setProperty('counter-increment', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19810,7 +19810,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('counter-reset');
 | 
|  
 | 
|    /** Sets the value of "counter-reset" */
 | 
| -  void set counterReset(String value) {
 | 
| +  void set counterReset(var value) {
 | 
|      setProperty('counter-reset', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19819,7 +19819,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('cursor');
 | 
|  
 | 
|    /** Sets the value of "cursor" */
 | 
| -  void set cursor(String value) {
 | 
| +  void set cursor(var value) {
 | 
|      setProperty('cursor', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19828,7 +19828,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('direction');
 | 
|  
 | 
|    /** Sets the value of "direction" */
 | 
| -  void set direction(String value) {
 | 
| +  void set direction(var value) {
 | 
|      setProperty('direction', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19837,7 +19837,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('display');
 | 
|  
 | 
|    /** Sets the value of "display" */
 | 
| -  void set display(String value) {
 | 
| +  void set display(var value) {
 | 
|      setProperty('display', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19846,7 +19846,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('empty-cells');
 | 
|  
 | 
|    /** Sets the value of "empty-cells" */
 | 
| -  void set emptyCells(String value) {
 | 
| +  void set emptyCells(var value) {
 | 
|      setProperty('empty-cells', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19855,7 +19855,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}filter');
 | 
|  
 | 
|    /** Sets the value of "filter" */
 | 
| -  void set filter(String value) {
 | 
| +  void set filter(var value) {
 | 
|      setProperty('${_browserPrefix}filter', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19864,7 +19864,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}flex-align');
 | 
|  
 | 
|    /** Sets the value of "flex-align" */
 | 
| -  void set flexAlign(String value) {
 | 
| +  void set flexAlign(var value) {
 | 
|      setProperty('${_browserPrefix}flex-align', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19873,7 +19873,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}flex-flow');
 | 
|  
 | 
|    /** Sets the value of "flex-flow" */
 | 
| -  void set flexFlow(String value) {
 | 
| +  void set flexFlow(var value) {
 | 
|      setProperty('${_browserPrefix}flex-flow', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19882,7 +19882,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}flex-order');
 | 
|  
 | 
|    /** Sets the value of "flex-order" */
 | 
| -  void set flexOrder(String value) {
 | 
| +  void set flexOrder(var value) {
 | 
|      setProperty('${_browserPrefix}flex-order', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19891,7 +19891,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}flex-pack');
 | 
|  
 | 
|    /** Sets the value of "flex-pack" */
 | 
| -  void set flexPack(String value) {
 | 
| +  void set flexPack(var value) {
 | 
|      setProperty('${_browserPrefix}flex-pack', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19900,7 +19900,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('float');
 | 
|  
 | 
|    /** Sets the value of "float" */
 | 
| -  void set float(String value) {
 | 
| +  void set float(var value) {
 | 
|      setProperty('float', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19909,7 +19909,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}flow-from');
 | 
|  
 | 
|    /** Sets the value of "flow-from" */
 | 
| -  void set flowFrom(String value) {
 | 
| +  void set flowFrom(var value) {
 | 
|      setProperty('${_browserPrefix}flow-from', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19918,7 +19918,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}flow-into');
 | 
|  
 | 
|    /** Sets the value of "flow-into" */
 | 
| -  void set flowInto(String value) {
 | 
| +  void set flowInto(var value) {
 | 
|      setProperty('${_browserPrefix}flow-into', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19927,7 +19927,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font');
 | 
|  
 | 
|    /** Sets the value of "font" */
 | 
| -  void set font(String value) {
 | 
| +  void set font(var value) {
 | 
|      setProperty('font', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19936,7 +19936,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font-family');
 | 
|  
 | 
|    /** Sets the value of "font-family" */
 | 
| -  void set fontFamily(String value) {
 | 
| +  void set fontFamily(var value) {
 | 
|      setProperty('font-family', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19945,7 +19945,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}font-feature-settings');
 | 
|  
 | 
|    /** Sets the value of "font-feature-settings" */
 | 
| -  void set fontFeatureSettings(String value) {
 | 
| +  void set fontFeatureSettings(var value) {
 | 
|      setProperty('${_browserPrefix}font-feature-settings', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19954,7 +19954,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font-size');
 | 
|  
 | 
|    /** Sets the value of "font-size" */
 | 
| -  void set fontSize(String value) {
 | 
| +  void set fontSize(var value) {
 | 
|      setProperty('font-size', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19963,7 +19963,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}font-size-delta');
 | 
|  
 | 
|    /** Sets the value of "font-size-delta" */
 | 
| -  void set fontSizeDelta(String value) {
 | 
| +  void set fontSizeDelta(var value) {
 | 
|      setProperty('${_browserPrefix}font-size-delta', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19972,7 +19972,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}font-smoothing');
 | 
|  
 | 
|    /** Sets the value of "font-smoothing" */
 | 
| -  void set fontSmoothing(String value) {
 | 
| +  void set fontSmoothing(var value) {
 | 
|      setProperty('${_browserPrefix}font-smoothing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19981,7 +19981,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font-stretch');
 | 
|  
 | 
|    /** Sets the value of "font-stretch" */
 | 
| -  void set fontStretch(String value) {
 | 
| +  void set fontStretch(var value) {
 | 
|      setProperty('font-stretch', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19990,7 +19990,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font-style');
 | 
|  
 | 
|    /** Sets the value of "font-style" */
 | 
| -  void set fontStyle(String value) {
 | 
| +  void set fontStyle(var value) {
 | 
|      setProperty('font-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -19999,7 +19999,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font-variant');
 | 
|  
 | 
|    /** Sets the value of "font-variant" */
 | 
| -  void set fontVariant(String value) {
 | 
| +  void set fontVariant(var value) {
 | 
|      setProperty('font-variant', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20008,7 +20008,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('font-weight');
 | 
|  
 | 
|    /** Sets the value of "font-weight" */
 | 
| -  void set fontWeight(String value) {
 | 
| +  void set fontWeight(var value) {
 | 
|      setProperty('font-weight', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20017,7 +20017,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('height');
 | 
|  
 | 
|    /** Sets the value of "height" */
 | 
| -  void set height(String value) {
 | 
| +  void set height(var value) {
 | 
|      setProperty('height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20026,7 +20026,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}highlight');
 | 
|  
 | 
|    /** Sets the value of "highlight" */
 | 
| -  void set highlight(String value) {
 | 
| +  void set highlight(var value) {
 | 
|      setProperty('${_browserPrefix}highlight', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20035,7 +20035,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}hyphenate-character');
 | 
|  
 | 
|    /** Sets the value of "hyphenate-character" */
 | 
| -  void set hyphenateCharacter(String value) {
 | 
| +  void set hyphenateCharacter(var value) {
 | 
|      setProperty('${_browserPrefix}hyphenate-character', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20044,7 +20044,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}hyphenate-limit-after');
 | 
|  
 | 
|    /** Sets the value of "hyphenate-limit-after" */
 | 
| -  void set hyphenateLimitAfter(String value) {
 | 
| +  void set hyphenateLimitAfter(var value) {
 | 
|      setProperty('${_browserPrefix}hyphenate-limit-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20053,7 +20053,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}hyphenate-limit-before');
 | 
|  
 | 
|    /** Sets the value of "hyphenate-limit-before" */
 | 
| -  void set hyphenateLimitBefore(String value) {
 | 
| +  void set hyphenateLimitBefore(var value) {
 | 
|      setProperty('${_browserPrefix}hyphenate-limit-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20062,7 +20062,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}hyphenate-limit-lines');
 | 
|  
 | 
|    /** Sets the value of "hyphenate-limit-lines" */
 | 
| -  void set hyphenateLimitLines(String value) {
 | 
| +  void set hyphenateLimitLines(var value) {
 | 
|      setProperty('${_browserPrefix}hyphenate-limit-lines', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20071,7 +20071,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}hyphens');
 | 
|  
 | 
|    /** Sets the value of "hyphens" */
 | 
| -  void set hyphens(String value) {
 | 
| +  void set hyphens(var value) {
 | 
|      setProperty('${_browserPrefix}hyphens', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20080,7 +20080,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('image-rendering');
 | 
|  
 | 
|    /** Sets the value of "image-rendering" */
 | 
| -  void set imageRendering(String value) {
 | 
| +  void set imageRendering(var value) {
 | 
|      setProperty('image-rendering', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20089,7 +20089,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('left');
 | 
|  
 | 
|    /** Sets the value of "left" */
 | 
| -  void set left(String value) {
 | 
| +  void set left(var value) {
 | 
|      setProperty('left', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20098,7 +20098,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('letter-spacing');
 | 
|  
 | 
|    /** Sets the value of "letter-spacing" */
 | 
| -  void set letterSpacing(String value) {
 | 
| +  void set letterSpacing(var value) {
 | 
|      setProperty('letter-spacing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20107,7 +20107,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}line-box-contain');
 | 
|  
 | 
|    /** Sets the value of "line-box-contain" */
 | 
| -  void set lineBoxContain(String value) {
 | 
| +  void set lineBoxContain(var value) {
 | 
|      setProperty('${_browserPrefix}line-box-contain', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20116,7 +20116,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}line-break');
 | 
|  
 | 
|    /** Sets the value of "line-break" */
 | 
| -  void set lineBreak(String value) {
 | 
| +  void set lineBreak(var value) {
 | 
|      setProperty('${_browserPrefix}line-break', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20125,7 +20125,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}line-clamp');
 | 
|  
 | 
|    /** Sets the value of "line-clamp" */
 | 
| -  void set lineClamp(String value) {
 | 
| +  void set lineClamp(var value) {
 | 
|      setProperty('${_browserPrefix}line-clamp', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20134,7 +20134,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('line-height');
 | 
|  
 | 
|    /** Sets the value of "line-height" */
 | 
| -  void set lineHeight(String value) {
 | 
| +  void set lineHeight(var value) {
 | 
|      setProperty('line-height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20143,7 +20143,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('list-style');
 | 
|  
 | 
|    /** Sets the value of "list-style" */
 | 
| -  void set listStyle(String value) {
 | 
| +  void set listStyle(var value) {
 | 
|      setProperty('list-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20152,7 +20152,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('list-style-image');
 | 
|  
 | 
|    /** Sets the value of "list-style-image" */
 | 
| -  void set listStyleImage(String value) {
 | 
| +  void set listStyleImage(var value) {
 | 
|      setProperty('list-style-image', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20161,7 +20161,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('list-style-position');
 | 
|  
 | 
|    /** Sets the value of "list-style-position" */
 | 
| -  void set listStylePosition(String value) {
 | 
| +  void set listStylePosition(var value) {
 | 
|      setProperty('list-style-position', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20170,7 +20170,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('list-style-type');
 | 
|  
 | 
|    /** Sets the value of "list-style-type" */
 | 
| -  void set listStyleType(String value) {
 | 
| +  void set listStyleType(var value) {
 | 
|      setProperty('list-style-type', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20179,7 +20179,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}locale');
 | 
|  
 | 
|    /** Sets the value of "locale" */
 | 
| -  void set locale(String value) {
 | 
| +  void set locale(var value) {
 | 
|      setProperty('${_browserPrefix}locale', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20188,7 +20188,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}logical-height');
 | 
|  
 | 
|    /** Sets the value of "logical-height" */
 | 
| -  void set logicalHeight(String value) {
 | 
| +  void set logicalHeight(var value) {
 | 
|      setProperty('${_browserPrefix}logical-height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20197,7 +20197,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}logical-width');
 | 
|  
 | 
|    /** Sets the value of "logical-width" */
 | 
| -  void set logicalWidth(String value) {
 | 
| +  void set logicalWidth(var value) {
 | 
|      setProperty('${_browserPrefix}logical-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20206,7 +20206,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('margin');
 | 
|  
 | 
|    /** Sets the value of "margin" */
 | 
| -  void set margin(String value) {
 | 
| +  void set margin(var value) {
 | 
|      setProperty('margin', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20215,7 +20215,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-after');
 | 
|  
 | 
|    /** Sets the value of "margin-after" */
 | 
| -  void set marginAfter(String value) {
 | 
| +  void set marginAfter(var value) {
 | 
|      setProperty('${_browserPrefix}margin-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20224,7 +20224,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-after-collapse');
 | 
|  
 | 
|    /** Sets the value of "margin-after-collapse" */
 | 
| -  void set marginAfterCollapse(String value) {
 | 
| +  void set marginAfterCollapse(var value) {
 | 
|      setProperty('${_browserPrefix}margin-after-collapse', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20233,7 +20233,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-before');
 | 
|  
 | 
|    /** Sets the value of "margin-before" */
 | 
| -  void set marginBefore(String value) {
 | 
| +  void set marginBefore(var value) {
 | 
|      setProperty('${_browserPrefix}margin-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20242,7 +20242,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-before-collapse');
 | 
|  
 | 
|    /** Sets the value of "margin-before-collapse" */
 | 
| -  void set marginBeforeCollapse(String value) {
 | 
| +  void set marginBeforeCollapse(var value) {
 | 
|      setProperty('${_browserPrefix}margin-before-collapse', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20251,7 +20251,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('margin-bottom');
 | 
|  
 | 
|    /** Sets the value of "margin-bottom" */
 | 
| -  void set marginBottom(String value) {
 | 
| +  void set marginBottom(var value) {
 | 
|      setProperty('margin-bottom', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20260,7 +20260,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-bottom-collapse');
 | 
|  
 | 
|    /** Sets the value of "margin-bottom-collapse" */
 | 
| -  void set marginBottomCollapse(String value) {
 | 
| +  void set marginBottomCollapse(var value) {
 | 
|      setProperty('${_browserPrefix}margin-bottom-collapse', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20269,7 +20269,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-collapse');
 | 
|  
 | 
|    /** Sets the value of "margin-collapse" */
 | 
| -  void set marginCollapse(String value) {
 | 
| +  void set marginCollapse(var value) {
 | 
|      setProperty('${_browserPrefix}margin-collapse', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20278,7 +20278,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-end');
 | 
|  
 | 
|    /** Sets the value of "margin-end" */
 | 
| -  void set marginEnd(String value) {
 | 
| +  void set marginEnd(var value) {
 | 
|      setProperty('${_browserPrefix}margin-end', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20287,7 +20287,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('margin-left');
 | 
|  
 | 
|    /** Sets the value of "margin-left" */
 | 
| -  void set marginLeft(String value) {
 | 
| +  void set marginLeft(var value) {
 | 
|      setProperty('margin-left', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20296,7 +20296,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('margin-right');
 | 
|  
 | 
|    /** Sets the value of "margin-right" */
 | 
| -  void set marginRight(String value) {
 | 
| +  void set marginRight(var value) {
 | 
|      setProperty('margin-right', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20305,7 +20305,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-start');
 | 
|  
 | 
|    /** Sets the value of "margin-start" */
 | 
| -  void set marginStart(String value) {
 | 
| +  void set marginStart(var value) {
 | 
|      setProperty('${_browserPrefix}margin-start', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20314,7 +20314,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('margin-top');
 | 
|  
 | 
|    /** Sets the value of "margin-top" */
 | 
| -  void set marginTop(String value) {
 | 
| +  void set marginTop(var value) {
 | 
|      setProperty('margin-top', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20323,7 +20323,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}margin-top-collapse');
 | 
|  
 | 
|    /** Sets the value of "margin-top-collapse" */
 | 
| -  void set marginTopCollapse(String value) {
 | 
| +  void set marginTopCollapse(var value) {
 | 
|      setProperty('${_browserPrefix}margin-top-collapse', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20332,7 +20332,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}marquee');
 | 
|  
 | 
|    /** Sets the value of "marquee" */
 | 
| -  void set marquee(String value) {
 | 
| +  void set marquee(var value) {
 | 
|      setProperty('${_browserPrefix}marquee', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20341,7 +20341,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}marquee-direction');
 | 
|  
 | 
|    /** Sets the value of "marquee-direction" */
 | 
| -  void set marqueeDirection(String value) {
 | 
| +  void set marqueeDirection(var value) {
 | 
|      setProperty('${_browserPrefix}marquee-direction', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20350,7 +20350,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}marquee-increment');
 | 
|  
 | 
|    /** Sets the value of "marquee-increment" */
 | 
| -  void set marqueeIncrement(String value) {
 | 
| +  void set marqueeIncrement(var value) {
 | 
|      setProperty('${_browserPrefix}marquee-increment', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20359,7 +20359,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}marquee-repetition');
 | 
|  
 | 
|    /** Sets the value of "marquee-repetition" */
 | 
| -  void set marqueeRepetition(String value) {
 | 
| +  void set marqueeRepetition(var value) {
 | 
|      setProperty('${_browserPrefix}marquee-repetition', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20368,7 +20368,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}marquee-speed');
 | 
|  
 | 
|    /** Sets the value of "marquee-speed" */
 | 
| -  void set marqueeSpeed(String value) {
 | 
| +  void set marqueeSpeed(var value) {
 | 
|      setProperty('${_browserPrefix}marquee-speed', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20377,7 +20377,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}marquee-style');
 | 
|  
 | 
|    /** Sets the value of "marquee-style" */
 | 
| -  void set marqueeStyle(String value) {
 | 
| +  void set marqueeStyle(var value) {
 | 
|      setProperty('${_browserPrefix}marquee-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20386,7 +20386,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask');
 | 
|  
 | 
|    /** Sets the value of "mask" */
 | 
| -  void set mask(String value) {
 | 
| +  void set mask(var value) {
 | 
|      setProperty('${_browserPrefix}mask', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20395,7 +20395,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-attachment');
 | 
|  
 | 
|    /** Sets the value of "mask-attachment" */
 | 
| -  void set maskAttachment(String value) {
 | 
| +  void set maskAttachment(var value) {
 | 
|      setProperty('${_browserPrefix}mask-attachment', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20404,7 +20404,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-box-image');
 | 
|  
 | 
|    /** Sets the value of "mask-box-image" */
 | 
| -  void set maskBoxImage(String value) {
 | 
| +  void set maskBoxImage(var value) {
 | 
|      setProperty('${_browserPrefix}mask-box-image', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20413,7 +20413,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-box-image-outset');
 | 
|  
 | 
|    /** Sets the value of "mask-box-image-outset" */
 | 
| -  void set maskBoxImageOutset(String value) {
 | 
| +  void set maskBoxImageOutset(var value) {
 | 
|      setProperty('${_browserPrefix}mask-box-image-outset', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20422,7 +20422,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-box-image-repeat');
 | 
|  
 | 
|    /** Sets the value of "mask-box-image-repeat" */
 | 
| -  void set maskBoxImageRepeat(String value) {
 | 
| +  void set maskBoxImageRepeat(var value) {
 | 
|      setProperty('${_browserPrefix}mask-box-image-repeat', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20431,7 +20431,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-box-image-slice');
 | 
|  
 | 
|    /** Sets the value of "mask-box-image-slice" */
 | 
| -  void set maskBoxImageSlice(String value) {
 | 
| +  void set maskBoxImageSlice(var value) {
 | 
|      setProperty('${_browserPrefix}mask-box-image-slice', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20440,7 +20440,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-box-image-source');
 | 
|  
 | 
|    /** Sets the value of "mask-box-image-source" */
 | 
| -  void set maskBoxImageSource(String value) {
 | 
| +  void set maskBoxImageSource(var value) {
 | 
|      setProperty('${_browserPrefix}mask-box-image-source', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20449,7 +20449,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-box-image-width');
 | 
|  
 | 
|    /** Sets the value of "mask-box-image-width" */
 | 
| -  void set maskBoxImageWidth(String value) {
 | 
| +  void set maskBoxImageWidth(var value) {
 | 
|      setProperty('${_browserPrefix}mask-box-image-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20458,7 +20458,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-clip');
 | 
|  
 | 
|    /** Sets the value of "mask-clip" */
 | 
| -  void set maskClip(String value) {
 | 
| +  void set maskClip(var value) {
 | 
|      setProperty('${_browserPrefix}mask-clip', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20467,7 +20467,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-composite');
 | 
|  
 | 
|    /** Sets the value of "mask-composite" */
 | 
| -  void set maskComposite(String value) {
 | 
| +  void set maskComposite(var value) {
 | 
|      setProperty('${_browserPrefix}mask-composite', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20476,7 +20476,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-image');
 | 
|  
 | 
|    /** Sets the value of "mask-image" */
 | 
| -  void set maskImage(String value) {
 | 
| +  void set maskImage(var value) {
 | 
|      setProperty('${_browserPrefix}mask-image', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20485,7 +20485,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-origin');
 | 
|  
 | 
|    /** Sets the value of "mask-origin" */
 | 
| -  void set maskOrigin(String value) {
 | 
| +  void set maskOrigin(var value) {
 | 
|      setProperty('${_browserPrefix}mask-origin', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20494,7 +20494,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-position');
 | 
|  
 | 
|    /** Sets the value of "mask-position" */
 | 
| -  void set maskPosition(String value) {
 | 
| +  void set maskPosition(var value) {
 | 
|      setProperty('${_browserPrefix}mask-position', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20503,7 +20503,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-position-x');
 | 
|  
 | 
|    /** Sets the value of "mask-position-x" */
 | 
| -  void set maskPositionX(String value) {
 | 
| +  void set maskPositionX(var value) {
 | 
|      setProperty('${_browserPrefix}mask-position-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20512,7 +20512,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-position-y');
 | 
|  
 | 
|    /** Sets the value of "mask-position-y" */
 | 
| -  void set maskPositionY(String value) {
 | 
| +  void set maskPositionY(var value) {
 | 
|      setProperty('${_browserPrefix}mask-position-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20521,7 +20521,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-repeat');
 | 
|  
 | 
|    /** Sets the value of "mask-repeat" */
 | 
| -  void set maskRepeat(String value) {
 | 
| +  void set maskRepeat(var value) {
 | 
|      setProperty('${_browserPrefix}mask-repeat', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20530,7 +20530,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-repeat-x');
 | 
|  
 | 
|    /** Sets the value of "mask-repeat-x" */
 | 
| -  void set maskRepeatX(String value) {
 | 
| +  void set maskRepeatX(var value) {
 | 
|      setProperty('${_browserPrefix}mask-repeat-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20539,7 +20539,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-repeat-y');
 | 
|  
 | 
|    /** Sets the value of "mask-repeat-y" */
 | 
| -  void set maskRepeatY(String value) {
 | 
| +  void set maskRepeatY(var value) {
 | 
|      setProperty('${_browserPrefix}mask-repeat-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20548,7 +20548,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}mask-size');
 | 
|  
 | 
|    /** Sets the value of "mask-size" */
 | 
| -  void set maskSize(String value) {
 | 
| +  void set maskSize(var value) {
 | 
|      setProperty('${_browserPrefix}mask-size', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20557,7 +20557,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}match-nearest-mail-blockquote-color');
 | 
|  
 | 
|    /** Sets the value of "match-nearest-mail-blockquote-color" */
 | 
| -  void set matchNearestMailBlockquoteColor(String value) {
 | 
| +  void set matchNearestMailBlockquoteColor(var value) {
 | 
|      setProperty('${_browserPrefix}match-nearest-mail-blockquote-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20566,7 +20566,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('max-height');
 | 
|  
 | 
|    /** Sets the value of "max-height" */
 | 
| -  void set maxHeight(String value) {
 | 
| +  void set maxHeight(var value) {
 | 
|      setProperty('max-height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20575,7 +20575,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}max-logical-height');
 | 
|  
 | 
|    /** Sets the value of "max-logical-height" */
 | 
| -  void set maxLogicalHeight(String value) {
 | 
| +  void set maxLogicalHeight(var value) {
 | 
|      setProperty('${_browserPrefix}max-logical-height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20584,7 +20584,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}max-logical-width');
 | 
|  
 | 
|    /** Sets the value of "max-logical-width" */
 | 
| -  void set maxLogicalWidth(String value) {
 | 
| +  void set maxLogicalWidth(var value) {
 | 
|      setProperty('${_browserPrefix}max-logical-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20593,7 +20593,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('max-width');
 | 
|  
 | 
|    /** Sets the value of "max-width" */
 | 
| -  void set maxWidth(String value) {
 | 
| +  void set maxWidth(var value) {
 | 
|      setProperty('max-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20602,7 +20602,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('min-height');
 | 
|  
 | 
|    /** Sets the value of "min-height" */
 | 
| -  void set minHeight(String value) {
 | 
| +  void set minHeight(var value) {
 | 
|      setProperty('min-height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20611,7 +20611,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}min-logical-height');
 | 
|  
 | 
|    /** Sets the value of "min-logical-height" */
 | 
| -  void set minLogicalHeight(String value) {
 | 
| +  void set minLogicalHeight(var value) {
 | 
|      setProperty('${_browserPrefix}min-logical-height', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20620,7 +20620,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}min-logical-width');
 | 
|  
 | 
|    /** Sets the value of "min-logical-width" */
 | 
| -  void set minLogicalWidth(String value) {
 | 
| +  void set minLogicalWidth(var value) {
 | 
|      setProperty('${_browserPrefix}min-logical-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20629,7 +20629,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('min-width');
 | 
|  
 | 
|    /** Sets the value of "min-width" */
 | 
| -  void set minWidth(String value) {
 | 
| +  void set minWidth(var value) {
 | 
|      setProperty('min-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20638,7 +20638,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}nbsp-mode');
 | 
|  
 | 
|    /** Sets the value of "nbsp-mode" */
 | 
| -  void set nbspMode(String value) {
 | 
| +  void set nbspMode(var value) {
 | 
|      setProperty('${_browserPrefix}nbsp-mode', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20647,7 +20647,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('opacity');
 | 
|  
 | 
|    /** Sets the value of "opacity" */
 | 
| -  void set opacity(String value) {
 | 
| +  void set opacity(var value) {
 | 
|      setProperty('opacity', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20656,7 +20656,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('orphans');
 | 
|  
 | 
|    /** Sets the value of "orphans" */
 | 
| -  void set orphans(String value) {
 | 
| +  void set orphans(var value) {
 | 
|      setProperty('orphans', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20665,7 +20665,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('outline');
 | 
|  
 | 
|    /** Sets the value of "outline" */
 | 
| -  void set outline(String value) {
 | 
| +  void set outline(var value) {
 | 
|      setProperty('outline', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20674,7 +20674,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('outline-color');
 | 
|  
 | 
|    /** Sets the value of "outline-color" */
 | 
| -  void set outlineColor(String value) {
 | 
| +  void set outlineColor(var value) {
 | 
|      setProperty('outline-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20683,7 +20683,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('outline-offset');
 | 
|  
 | 
|    /** Sets the value of "outline-offset" */
 | 
| -  void set outlineOffset(String value) {
 | 
| +  void set outlineOffset(var value) {
 | 
|      setProperty('outline-offset', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20692,7 +20692,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('outline-style');
 | 
|  
 | 
|    /** Sets the value of "outline-style" */
 | 
| -  void set outlineStyle(String value) {
 | 
| +  void set outlineStyle(var value) {
 | 
|      setProperty('outline-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20701,7 +20701,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('outline-width');
 | 
|  
 | 
|    /** Sets the value of "outline-width" */
 | 
| -  void set outlineWidth(String value) {
 | 
| +  void set outlineWidth(var value) {
 | 
|      setProperty('outline-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20710,7 +20710,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('overflow');
 | 
|  
 | 
|    /** Sets the value of "overflow" */
 | 
| -  void set overflow(String value) {
 | 
| +  void set overflow(var value) {
 | 
|      setProperty('overflow', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20719,7 +20719,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('overflow-x');
 | 
|  
 | 
|    /** Sets the value of "overflow-x" */
 | 
| -  void set overflowX(String value) {
 | 
| +  void set overflowX(var value) {
 | 
|      setProperty('overflow-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20728,7 +20728,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('overflow-y');
 | 
|  
 | 
|    /** Sets the value of "overflow-y" */
 | 
| -  void set overflowY(String value) {
 | 
| +  void set overflowY(var value) {
 | 
|      setProperty('overflow-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20737,7 +20737,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('padding');
 | 
|  
 | 
|    /** Sets the value of "padding" */
 | 
| -  void set padding(String value) {
 | 
| +  void set padding(var value) {
 | 
|      setProperty('padding', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20746,7 +20746,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}padding-after');
 | 
|  
 | 
|    /** Sets the value of "padding-after" */
 | 
| -  void set paddingAfter(String value) {
 | 
| +  void set paddingAfter(var value) {
 | 
|      setProperty('${_browserPrefix}padding-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20755,7 +20755,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}padding-before');
 | 
|  
 | 
|    /** Sets the value of "padding-before" */
 | 
| -  void set paddingBefore(String value) {
 | 
| +  void set paddingBefore(var value) {
 | 
|      setProperty('${_browserPrefix}padding-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20764,7 +20764,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('padding-bottom');
 | 
|  
 | 
|    /** Sets the value of "padding-bottom" */
 | 
| -  void set paddingBottom(String value) {
 | 
| +  void set paddingBottom(var value) {
 | 
|      setProperty('padding-bottom', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20773,7 +20773,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}padding-end');
 | 
|  
 | 
|    /** Sets the value of "padding-end" */
 | 
| -  void set paddingEnd(String value) {
 | 
| +  void set paddingEnd(var value) {
 | 
|      setProperty('${_browserPrefix}padding-end', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20782,7 +20782,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('padding-left');
 | 
|  
 | 
|    /** Sets the value of "padding-left" */
 | 
| -  void set paddingLeft(String value) {
 | 
| +  void set paddingLeft(var value) {
 | 
|      setProperty('padding-left', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20791,7 +20791,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('padding-right');
 | 
|  
 | 
|    /** Sets the value of "padding-right" */
 | 
| -  void set paddingRight(String value) {
 | 
| +  void set paddingRight(var value) {
 | 
|      setProperty('padding-right', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20800,7 +20800,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}padding-start');
 | 
|  
 | 
|    /** Sets the value of "padding-start" */
 | 
| -  void set paddingStart(String value) {
 | 
| +  void set paddingStart(var value) {
 | 
|      setProperty('${_browserPrefix}padding-start', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20809,7 +20809,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('padding-top');
 | 
|  
 | 
|    /** Sets the value of "padding-top" */
 | 
| -  void set paddingTop(String value) {
 | 
| +  void set paddingTop(var value) {
 | 
|      setProperty('padding-top', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20818,7 +20818,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('page');
 | 
|  
 | 
|    /** Sets the value of "page" */
 | 
| -  void set page(String value) {
 | 
| +  void set page(var value) {
 | 
|      setProperty('page', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20827,7 +20827,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('page-break-after');
 | 
|  
 | 
|    /** Sets the value of "page-break-after" */
 | 
| -  void set pageBreakAfter(String value) {
 | 
| +  void set pageBreakAfter(var value) {
 | 
|      setProperty('page-break-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20836,7 +20836,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('page-break-before');
 | 
|  
 | 
|    /** Sets the value of "page-break-before" */
 | 
| -  void set pageBreakBefore(String value) {
 | 
| +  void set pageBreakBefore(var value) {
 | 
|      setProperty('page-break-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20845,7 +20845,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('page-break-inside');
 | 
|  
 | 
|    /** Sets the value of "page-break-inside" */
 | 
| -  void set pageBreakInside(String value) {
 | 
| +  void set pageBreakInside(var value) {
 | 
|      setProperty('page-break-inside', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20854,7 +20854,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}perspective');
 | 
|  
 | 
|    /** Sets the value of "perspective" */
 | 
| -  void set perspective(String value) {
 | 
| +  void set perspective(var value) {
 | 
|      setProperty('${_browserPrefix}perspective', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20863,7 +20863,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}perspective-origin');
 | 
|  
 | 
|    /** Sets the value of "perspective-origin" */
 | 
| -  void set perspectiveOrigin(String value) {
 | 
| +  void set perspectiveOrigin(var value) {
 | 
|      setProperty('${_browserPrefix}perspective-origin', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20872,7 +20872,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}perspective-origin-x');
 | 
|  
 | 
|    /** Sets the value of "perspective-origin-x" */
 | 
| -  void set perspectiveOriginX(String value) {
 | 
| +  void set perspectiveOriginX(var value) {
 | 
|      setProperty('${_browserPrefix}perspective-origin-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20881,7 +20881,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}perspective-origin-y');
 | 
|  
 | 
|    /** Sets the value of "perspective-origin-y" */
 | 
| -  void set perspectiveOriginY(String value) {
 | 
| +  void set perspectiveOriginY(var value) {
 | 
|      setProperty('${_browserPrefix}perspective-origin-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20890,7 +20890,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('pointer-events');
 | 
|  
 | 
|    /** Sets the value of "pointer-events" */
 | 
| -  void set pointerEvents(String value) {
 | 
| +  void set pointerEvents(var value) {
 | 
|      setProperty('pointer-events', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20899,7 +20899,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('position');
 | 
|  
 | 
|    /** Sets the value of "position" */
 | 
| -  void set position(String value) {
 | 
| +  void set position(var value) {
 | 
|      setProperty('position', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20908,7 +20908,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('quotes');
 | 
|  
 | 
|    /** Sets the value of "quotes" */
 | 
| -  void set quotes(String value) {
 | 
| +  void set quotes(var value) {
 | 
|      setProperty('quotes', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20917,7 +20917,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}region-break-after');
 | 
|  
 | 
|    /** Sets the value of "region-break-after" */
 | 
| -  void set regionBreakAfter(String value) {
 | 
| +  void set regionBreakAfter(var value) {
 | 
|      setProperty('${_browserPrefix}region-break-after', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20926,7 +20926,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}region-break-before');
 | 
|  
 | 
|    /** Sets the value of "region-break-before" */
 | 
| -  void set regionBreakBefore(String value) {
 | 
| +  void set regionBreakBefore(var value) {
 | 
|      setProperty('${_browserPrefix}region-break-before', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20935,7 +20935,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}region-break-inside');
 | 
|  
 | 
|    /** Sets the value of "region-break-inside" */
 | 
| -  void set regionBreakInside(String value) {
 | 
| +  void set regionBreakInside(var value) {
 | 
|      setProperty('${_browserPrefix}region-break-inside', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20944,7 +20944,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}region-overflow');
 | 
|  
 | 
|    /** Sets the value of "region-overflow" */
 | 
| -  void set regionOverflow(String value) {
 | 
| +  void set regionOverflow(var value) {
 | 
|      setProperty('${_browserPrefix}region-overflow', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20953,7 +20953,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('resize');
 | 
|  
 | 
|    /** Sets the value of "resize" */
 | 
| -  void set resize(String value) {
 | 
| +  void set resize(var value) {
 | 
|      setProperty('resize', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20962,7 +20962,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('right');
 | 
|  
 | 
|    /** Sets the value of "right" */
 | 
| -  void set right(String value) {
 | 
| +  void set right(var value) {
 | 
|      setProperty('right', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20971,7 +20971,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}rtl-ordering');
 | 
|  
 | 
|    /** Sets the value of "rtl-ordering" */
 | 
| -  void set rtlOrdering(String value) {
 | 
| +  void set rtlOrdering(var value) {
 | 
|      setProperty('${_browserPrefix}rtl-ordering', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20980,7 +20980,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('size');
 | 
|  
 | 
|    /** Sets the value of "size" */
 | 
| -  void set size(String value) {
 | 
| +  void set size(var value) {
 | 
|      setProperty('size', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20989,7 +20989,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('speak');
 | 
|  
 | 
|    /** Sets the value of "speak" */
 | 
| -  void set speak(String value) {
 | 
| +  void set speak(var value) {
 | 
|      setProperty('speak', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -20998,7 +20998,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('src');
 | 
|  
 | 
|    /** Sets the value of "src" */
 | 
| -  void set src(String value) {
 | 
| +  void set src(var value) {
 | 
|      setProperty('src', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21007,7 +21007,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('table-layout');
 | 
|  
 | 
|    /** Sets the value of "table-layout" */
 | 
| -  void set tableLayout(String value) {
 | 
| +  void set tableLayout(var value) {
 | 
|      setProperty('table-layout', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21016,7 +21016,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}tap-highlight-color');
 | 
|  
 | 
|    /** Sets the value of "tap-highlight-color" */
 | 
| -  void set tapHighlightColor(String value) {
 | 
| +  void set tapHighlightColor(var value) {
 | 
|      setProperty('${_browserPrefix}tap-highlight-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21025,7 +21025,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-align');
 | 
|  
 | 
|    /** Sets the value of "text-align" */
 | 
| -  void set textAlign(String value) {
 | 
| +  void set textAlign(var value) {
 | 
|      setProperty('text-align', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21034,7 +21034,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-combine');
 | 
|  
 | 
|    /** Sets the value of "text-combine" */
 | 
| -  void set textCombine(String value) {
 | 
| +  void set textCombine(var value) {
 | 
|      setProperty('${_browserPrefix}text-combine', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21043,7 +21043,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-decoration');
 | 
|  
 | 
|    /** Sets the value of "text-decoration" */
 | 
| -  void set textDecoration(String value) {
 | 
| +  void set textDecoration(var value) {
 | 
|      setProperty('text-decoration', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21052,7 +21052,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-decorations-in-effect');
 | 
|  
 | 
|    /** Sets the value of "text-decorations-in-effect" */
 | 
| -  void set textDecorationsInEffect(String value) {
 | 
| +  void set textDecorationsInEffect(var value) {
 | 
|      setProperty('${_browserPrefix}text-decorations-in-effect', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21061,7 +21061,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-emphasis');
 | 
|  
 | 
|    /** Sets the value of "text-emphasis" */
 | 
| -  void set textEmphasis(String value) {
 | 
| +  void set textEmphasis(var value) {
 | 
|      setProperty('${_browserPrefix}text-emphasis', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21070,7 +21070,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-emphasis-color');
 | 
|  
 | 
|    /** Sets the value of "text-emphasis-color" */
 | 
| -  void set textEmphasisColor(String value) {
 | 
| +  void set textEmphasisColor(var value) {
 | 
|      setProperty('${_browserPrefix}text-emphasis-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21079,7 +21079,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-emphasis-position');
 | 
|  
 | 
|    /** Sets the value of "text-emphasis-position" */
 | 
| -  void set textEmphasisPosition(String value) {
 | 
| +  void set textEmphasisPosition(var value) {
 | 
|      setProperty('${_browserPrefix}text-emphasis-position', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21088,7 +21088,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-emphasis-style');
 | 
|  
 | 
|    /** Sets the value of "text-emphasis-style" */
 | 
| -  void set textEmphasisStyle(String value) {
 | 
| +  void set textEmphasisStyle(var value) {
 | 
|      setProperty('${_browserPrefix}text-emphasis-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21097,7 +21097,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-fill-color');
 | 
|  
 | 
|    /** Sets the value of "text-fill-color" */
 | 
| -  void set textFillColor(String value) {
 | 
| +  void set textFillColor(var value) {
 | 
|      setProperty('${_browserPrefix}text-fill-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21106,7 +21106,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-indent');
 | 
|  
 | 
|    /** Sets the value of "text-indent" */
 | 
| -  void set textIndent(String value) {
 | 
| +  void set textIndent(var value) {
 | 
|      setProperty('text-indent', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21115,7 +21115,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-line-through');
 | 
|  
 | 
|    /** Sets the value of "text-line-through" */
 | 
| -  void set textLineThrough(String value) {
 | 
| +  void set textLineThrough(var value) {
 | 
|      setProperty('text-line-through', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21124,7 +21124,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-line-through-color');
 | 
|  
 | 
|    /** Sets the value of "text-line-through-color" */
 | 
| -  void set textLineThroughColor(String value) {
 | 
| +  void set textLineThroughColor(var value) {
 | 
|      setProperty('text-line-through-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21133,7 +21133,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-line-through-mode');
 | 
|  
 | 
|    /** Sets the value of "text-line-through-mode" */
 | 
| -  void set textLineThroughMode(String value) {
 | 
| +  void set textLineThroughMode(var value) {
 | 
|      setProperty('text-line-through-mode', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21142,7 +21142,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-line-through-style');
 | 
|  
 | 
|    /** Sets the value of "text-line-through-style" */
 | 
| -  void set textLineThroughStyle(String value) {
 | 
| +  void set textLineThroughStyle(var value) {
 | 
|      setProperty('text-line-through-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21151,7 +21151,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-line-through-width');
 | 
|  
 | 
|    /** Sets the value of "text-line-through-width" */
 | 
| -  void set textLineThroughWidth(String value) {
 | 
| +  void set textLineThroughWidth(var value) {
 | 
|      setProperty('text-line-through-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21160,7 +21160,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-orientation');
 | 
|  
 | 
|    /** Sets the value of "text-orientation" */
 | 
| -  void set textOrientation(String value) {
 | 
| +  void set textOrientation(var value) {
 | 
|      setProperty('${_browserPrefix}text-orientation', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21169,7 +21169,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-overflow');
 | 
|  
 | 
|    /** Sets the value of "text-overflow" */
 | 
| -  void set textOverflow(String value) {
 | 
| +  void set textOverflow(var value) {
 | 
|      setProperty('text-overflow', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21178,7 +21178,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-overline');
 | 
|  
 | 
|    /** Sets the value of "text-overline" */
 | 
| -  void set textOverline(String value) {
 | 
| +  void set textOverline(var value) {
 | 
|      setProperty('text-overline', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21187,7 +21187,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-overline-color');
 | 
|  
 | 
|    /** Sets the value of "text-overline-color" */
 | 
| -  void set textOverlineColor(String value) {
 | 
| +  void set textOverlineColor(var value) {
 | 
|      setProperty('text-overline-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21196,7 +21196,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-overline-mode');
 | 
|  
 | 
|    /** Sets the value of "text-overline-mode" */
 | 
| -  void set textOverlineMode(String value) {
 | 
| +  void set textOverlineMode(var value) {
 | 
|      setProperty('text-overline-mode', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21205,7 +21205,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-overline-style');
 | 
|  
 | 
|    /** Sets the value of "text-overline-style" */
 | 
| -  void set textOverlineStyle(String value) {
 | 
| +  void set textOverlineStyle(var value) {
 | 
|      setProperty('text-overline-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21214,7 +21214,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-overline-width');
 | 
|  
 | 
|    /** Sets the value of "text-overline-width" */
 | 
| -  void set textOverlineWidth(String value) {
 | 
| +  void set textOverlineWidth(var value) {
 | 
|      setProperty('text-overline-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21223,7 +21223,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-rendering');
 | 
|  
 | 
|    /** Sets the value of "text-rendering" */
 | 
| -  void set textRendering(String value) {
 | 
| +  void set textRendering(var value) {
 | 
|      setProperty('text-rendering', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21232,7 +21232,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-security');
 | 
|  
 | 
|    /** Sets the value of "text-security" */
 | 
| -  void set textSecurity(String value) {
 | 
| +  void set textSecurity(var value) {
 | 
|      setProperty('${_browserPrefix}text-security', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21241,7 +21241,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-shadow');
 | 
|  
 | 
|    /** Sets the value of "text-shadow" */
 | 
| -  void set textShadow(String value) {
 | 
| +  void set textShadow(var value) {
 | 
|      setProperty('text-shadow', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21250,7 +21250,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-size-adjust');
 | 
|  
 | 
|    /** Sets the value of "text-size-adjust" */
 | 
| -  void set textSizeAdjust(String value) {
 | 
| +  void set textSizeAdjust(var value) {
 | 
|      setProperty('${_browserPrefix}text-size-adjust', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21259,7 +21259,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-stroke');
 | 
|  
 | 
|    /** Sets the value of "text-stroke" */
 | 
| -  void set textStroke(String value) {
 | 
| +  void set textStroke(var value) {
 | 
|      setProperty('${_browserPrefix}text-stroke', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21268,7 +21268,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-stroke-color');
 | 
|  
 | 
|    /** Sets the value of "text-stroke-color" */
 | 
| -  void set textStrokeColor(String value) {
 | 
| +  void set textStrokeColor(var value) {
 | 
|      setProperty('${_browserPrefix}text-stroke-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21277,7 +21277,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}text-stroke-width');
 | 
|  
 | 
|    /** Sets the value of "text-stroke-width" */
 | 
| -  void set textStrokeWidth(String value) {
 | 
| +  void set textStrokeWidth(var value) {
 | 
|      setProperty('${_browserPrefix}text-stroke-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21286,7 +21286,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-transform');
 | 
|  
 | 
|    /** Sets the value of "text-transform" */
 | 
| -  void set textTransform(String value) {
 | 
| +  void set textTransform(var value) {
 | 
|      setProperty('text-transform', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21295,7 +21295,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-underline');
 | 
|  
 | 
|    /** Sets the value of "text-underline" */
 | 
| -  void set textUnderline(String value) {
 | 
| +  void set textUnderline(var value) {
 | 
|      setProperty('text-underline', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21304,7 +21304,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-underline-color');
 | 
|  
 | 
|    /** Sets the value of "text-underline-color" */
 | 
| -  void set textUnderlineColor(String value) {
 | 
| +  void set textUnderlineColor(var value) {
 | 
|      setProperty('text-underline-color', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21313,7 +21313,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-underline-mode');
 | 
|  
 | 
|    /** Sets the value of "text-underline-mode" */
 | 
| -  void set textUnderlineMode(String value) {
 | 
| +  void set textUnderlineMode(var value) {
 | 
|      setProperty('text-underline-mode', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21322,7 +21322,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-underline-style');
 | 
|  
 | 
|    /** Sets the value of "text-underline-style" */
 | 
| -  void set textUnderlineStyle(String value) {
 | 
| +  void set textUnderlineStyle(var value) {
 | 
|      setProperty('text-underline-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21331,7 +21331,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('text-underline-width');
 | 
|  
 | 
|    /** Sets the value of "text-underline-width" */
 | 
| -  void set textUnderlineWidth(String value) {
 | 
| +  void set textUnderlineWidth(var value) {
 | 
|      setProperty('text-underline-width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21340,7 +21340,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('top');
 | 
|  
 | 
|    /** Sets the value of "top" */
 | 
| -  void set top(String value) {
 | 
| +  void set top(var value) {
 | 
|      setProperty('top', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21349,7 +21349,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transform');
 | 
|  
 | 
|    /** Sets the value of "transform" */
 | 
| -  void set transform(String value) {
 | 
| +  void set transform(var value) {
 | 
|      setProperty('${_browserPrefix}transform', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21358,7 +21358,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transform-origin');
 | 
|  
 | 
|    /** Sets the value of "transform-origin" */
 | 
| -  void set transformOrigin(String value) {
 | 
| +  void set transformOrigin(var value) {
 | 
|      setProperty('${_browserPrefix}transform-origin', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21367,7 +21367,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transform-origin-x');
 | 
|  
 | 
|    /** Sets the value of "transform-origin-x" */
 | 
| -  void set transformOriginX(String value) {
 | 
| +  void set transformOriginX(var value) {
 | 
|      setProperty('${_browserPrefix}transform-origin-x', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21376,7 +21376,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transform-origin-y');
 | 
|  
 | 
|    /** Sets the value of "transform-origin-y" */
 | 
| -  void set transformOriginY(String value) {
 | 
| +  void set transformOriginY(var value) {
 | 
|      setProperty('${_browserPrefix}transform-origin-y', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21385,7 +21385,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transform-origin-z');
 | 
|  
 | 
|    /** Sets the value of "transform-origin-z" */
 | 
| -  void set transformOriginZ(String value) {
 | 
| +  void set transformOriginZ(var value) {
 | 
|      setProperty('${_browserPrefix}transform-origin-z', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21394,7 +21394,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transform-style');
 | 
|  
 | 
|    /** Sets the value of "transform-style" */
 | 
| -  void set transformStyle(String value) {
 | 
| +  void set transformStyle(var value) {
 | 
|      setProperty('${_browserPrefix}transform-style', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21403,7 +21403,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transition');
 | 
|  
 | 
|    /** Sets the value of "transition" */
 | 
| -  void set transition(String value) {
 | 
| +  void set transition(var value) {
 | 
|      setProperty('${_browserPrefix}transition', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21412,7 +21412,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transition-delay');
 | 
|  
 | 
|    /** Sets the value of "transition-delay" */
 | 
| -  void set transitionDelay(String value) {
 | 
| +  void set transitionDelay(var value) {
 | 
|      setProperty('${_browserPrefix}transition-delay', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21421,7 +21421,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transition-duration');
 | 
|  
 | 
|    /** Sets the value of "transition-duration" */
 | 
| -  void set transitionDuration(String value) {
 | 
| +  void set transitionDuration(var value) {
 | 
|      setProperty('${_browserPrefix}transition-duration', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21430,7 +21430,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transition-property');
 | 
|  
 | 
|    /** Sets the value of "transition-property" */
 | 
| -  void set transitionProperty(String value) {
 | 
| +  void set transitionProperty(var value) {
 | 
|      setProperty('${_browserPrefix}transition-property', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21439,7 +21439,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}transition-timing-function');
 | 
|  
 | 
|    /** Sets the value of "transition-timing-function" */
 | 
| -  void set transitionTimingFunction(String value) {
 | 
| +  void set transitionTimingFunction(var value) {
 | 
|      setProperty('${_browserPrefix}transition-timing-function', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21448,7 +21448,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('unicode-bidi');
 | 
|  
 | 
|    /** Sets the value of "unicode-bidi" */
 | 
| -  void set unicodeBidi(String value) {
 | 
| +  void set unicodeBidi(var value) {
 | 
|      setProperty('unicode-bidi', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21457,7 +21457,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('unicode-range');
 | 
|  
 | 
|    /** Sets the value of "unicode-range" */
 | 
| -  void set unicodeRange(String value) {
 | 
| +  void set unicodeRange(var value) {
 | 
|      setProperty('unicode-range', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21466,7 +21466,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}user-drag');
 | 
|  
 | 
|    /** Sets the value of "user-drag" */
 | 
| -  void set userDrag(String value) {
 | 
| +  void set userDrag(var value) {
 | 
|      setProperty('${_browserPrefix}user-drag', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21475,7 +21475,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}user-modify');
 | 
|  
 | 
|    /** Sets the value of "user-modify" */
 | 
| -  void set userModify(String value) {
 | 
| +  void set userModify(var value) {
 | 
|      setProperty('${_browserPrefix}user-modify', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21484,7 +21484,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}user-select');
 | 
|  
 | 
|    /** Sets the value of "user-select" */
 | 
| -  void set userSelect(String value) {
 | 
| +  void set userSelect(var value) {
 | 
|      setProperty('${_browserPrefix}user-select', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21493,7 +21493,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('vertical-align');
 | 
|  
 | 
|    /** Sets the value of "vertical-align" */
 | 
| -  void set verticalAlign(String value) {
 | 
| +  void set verticalAlign(var value) {
 | 
|      setProperty('vertical-align', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21502,7 +21502,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('visibility');
 | 
|  
 | 
|    /** Sets the value of "visibility" */
 | 
| -  void set visibility(String value) {
 | 
| +  void set visibility(var value) {
 | 
|      setProperty('visibility', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21511,7 +21511,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('white-space');
 | 
|  
 | 
|    /** Sets the value of "white-space" */
 | 
| -  void set whiteSpace(String value) {
 | 
| +  void set whiteSpace(var value) {
 | 
|      setProperty('white-space', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21520,7 +21520,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('widows');
 | 
|  
 | 
|    /** Sets the value of "widows" */
 | 
| -  void set widows(String value) {
 | 
| +  void set widows(var value) {
 | 
|      setProperty('widows', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21529,7 +21529,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('width');
 | 
|  
 | 
|    /** Sets the value of "width" */
 | 
| -  void set width(String value) {
 | 
| +  void set width(var value) {
 | 
|      setProperty('width', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21538,7 +21538,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('word-break');
 | 
|  
 | 
|    /** Sets the value of "word-break" */
 | 
| -  void set wordBreak(String value) {
 | 
| +  void set wordBreak(var value) {
 | 
|      setProperty('word-break', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21547,7 +21547,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('word-spacing');
 | 
|  
 | 
|    /** Sets the value of "word-spacing" */
 | 
| -  void set wordSpacing(String value) {
 | 
| +  void set wordSpacing(var value) {
 | 
|      setProperty('word-spacing', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21556,7 +21556,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('word-wrap');
 | 
|  
 | 
|    /** Sets the value of "word-wrap" */
 | 
| -  void set wordWrap(String value) {
 | 
| +  void set wordWrap(var value) {
 | 
|      setProperty('word-wrap', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21565,7 +21565,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}wrap-shape');
 | 
|  
 | 
|    /** Sets the value of "wrap-shape" */
 | 
| -  void set wrapShape(String value) {
 | 
| +  void set wrapShape(var value) {
 | 
|      setProperty('${_browserPrefix}wrap-shape', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21574,7 +21574,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('${_browserPrefix}writing-mode');
 | 
|  
 | 
|    /** Sets the value of "writing-mode" */
 | 
| -  void set writingMode(String value) {
 | 
| +  void set writingMode(var value) {
 | 
|      setProperty('${_browserPrefix}writing-mode', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21583,7 +21583,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('z-index');
 | 
|  
 | 
|    /** Sets the value of "z-index" */
 | 
| -  void set zIndex(String value) {
 | 
| +  void set zIndex(var value) {
 | 
|      setProperty('z-index', value, '');
 | 
|    }
 | 
|  
 | 
| @@ -21592,7 +21592,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
 | 
|      getPropertyValue('zoom');
 | 
|  
 | 
|    /** Sets the value of "zoom" */
 | 
| -  void set zoom(String value) {
 | 
| +  void set zoom(var value) {
 | 
|      setProperty('zoom', value, '');
 | 
|    }
 | 
|  }
 | 
| 
 |