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

Unified Diff: tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate

Issue 1327083002: Revert "Patched in Dartium JsInterop" (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate b/tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate
index 7cb4628227fbf2df73c3fa6d68b7c89073a0d903..12caf8c635c51913438927fac7f7abf285f08d9a 100644
--- a/tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate
+++ b/tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate
@@ -11,8 +11,18 @@
part of $LIBRARYNAME;
+$if DART2JS
+$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with
+ $(CLASSNAME)Base $IMPLEMENTS {
+$else
+ $if JSINTEROP
+$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS) class $CLASSNAME extends
+ $(CLASSNAME)Base $IMPLEMENTS {
+ $else
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with
$(CLASSNAME)Base $IMPLEMENTS {
+ $endif
+$endif
factory $CLASSNAME() => new CssStyleDeclaration.css('');
factory $CLASSNAME.css(String css) {
@@ -147,7 +157,7 @@ $if DART2JS
String get background => this._background;
/** Sets the value of "background" */
- set background(String value) {
+ void set background(String value) {
_background = value == null ? '' : value;
}
@Returns('String')
@@ -158,7 +168,7 @@ $if DART2JS
String get backgroundAttachment => this._backgroundAttachment;
/** Sets the value of "background-attachment" */
- set backgroundAttachment(String value) {
+ void set backgroundAttachment(String value) {
_backgroundAttachment = value == null ? '' : value;
}
@Returns('String')
@@ -169,7 +179,7 @@ $if DART2JS
String get backgroundColor => this._backgroundColor;
/** Sets the value of "background-color" */
- set backgroundColor(String value) {
+ void set backgroundColor(String value) {
_backgroundColor = value == null ? '' : value;
}
@Returns('String')
@@ -180,7 +190,7 @@ $if DART2JS
String get backgroundImage => this._backgroundImage;
/** Sets the value of "background-image" */
- set backgroundImage(String value) {
+ void set backgroundImage(String value) {
_backgroundImage = value == null ? '' : value;
}
@Returns('String')
@@ -191,7 +201,7 @@ $if DART2JS
String get backgroundPosition => this._backgroundPosition;
/** Sets the value of "background-position" */
- set backgroundPosition(String value) {
+ void set backgroundPosition(String value) {
_backgroundPosition = value == null ? '' : value;
}
@Returns('String')
@@ -202,7 +212,7 @@ $if DART2JS
String get backgroundRepeat => this._backgroundRepeat;
/** Sets the value of "background-repeat" */
- set backgroundRepeat(String value) {
+ void set backgroundRepeat(String value) {
_backgroundRepeat = value == null ? '' : value;
}
@Returns('String')
@@ -213,7 +223,7 @@ $if DART2JS
String get border => this._border;
/** Sets the value of "border" */
- set border(String value) {
+ void set border(String value) {
_border = value == null ? '' : value;
}
@Returns('String')
@@ -224,7 +234,7 @@ $if DART2JS
String get borderBottom => this._borderBottom;
/** Sets the value of "border-bottom" */
- set borderBottom(String value) {
+ void set borderBottom(String value) {
_borderBottom = value == null ? '' : value;
}
@Returns('String')
@@ -235,7 +245,7 @@ $if DART2JS
String get borderBottomColor => this._borderBottomColor;
/** Sets the value of "border-bottom-color" */
- set borderBottomColor(String value) {
+ void set borderBottomColor(String value) {
_borderBottomColor = value == null ? '' : value;
}
@Returns('String')
@@ -246,7 +256,7 @@ $if DART2JS
String get borderBottomStyle => this._borderBottomStyle;
/** Sets the value of "border-bottom-style" */
- set borderBottomStyle(String value) {
+ void set borderBottomStyle(String value) {
_borderBottomStyle = value == null ? '' : value;
}
@Returns('String')
@@ -257,7 +267,7 @@ $if DART2JS
String get borderBottomWidth => this._borderBottomWidth;
/** Sets the value of "border-bottom-width" */
- set borderBottomWidth(String value) {
+ void set borderBottomWidth(String value) {
_borderBottomWidth = value == null ? '' : value;
}
@Returns('String')
@@ -268,7 +278,7 @@ $if DART2JS
String get borderCollapse => this._borderCollapse;
/** Sets the value of "border-collapse" */
- set borderCollapse(String value) {
+ void set borderCollapse(String value) {
_borderCollapse = value == null ? '' : value;
}
@Returns('String')
@@ -279,7 +289,7 @@ $if DART2JS
String get borderColor => this._borderColor;
/** Sets the value of "border-color" */
- set borderColor(String value) {
+ void set borderColor(String value) {
_borderColor = value == null ? '' : value;
}
@Returns('String')
@@ -290,7 +300,7 @@ $if DART2JS
String get borderLeft => this._borderLeft;
/** Sets the value of "border-left" */
- set borderLeft(String value) {
+ void set borderLeft(String value) {
_borderLeft = value == null ? '' : value;
}
@Returns('String')
@@ -301,7 +311,7 @@ $if DART2JS
String get borderLeftColor => this._borderLeftColor;
/** Sets the value of "border-left-color" */
- set borderLeftColor(String value) {
+ void set borderLeftColor(String value) {
_borderLeftColor = value == null ? '' : value;
}
@Returns('String')
@@ -312,7 +322,7 @@ $if DART2JS
String get borderLeftStyle => this._borderLeftStyle;
/** Sets the value of "border-left-style" */
- set borderLeftStyle(String value) {
+ void set borderLeftStyle(String value) {
_borderLeftStyle = value == null ? '' : value;
}
@Returns('String')
@@ -323,7 +333,7 @@ $if DART2JS
String get borderLeftWidth => this._borderLeftWidth;
/** Sets the value of "border-left-width" */
- set borderLeftWidth(String value) {
+ void set borderLeftWidth(String value) {
_borderLeftWidth = value == null ? '' : value;
}
@Returns('String')
@@ -334,7 +344,7 @@ $if DART2JS
String get borderRight => this._borderRight;
/** Sets the value of "border-right" */
- set borderRight(String value) {
+ void set borderRight(String value) {
_borderRight = value == null ? '' : value;
}
@Returns('String')
@@ -345,7 +355,7 @@ $if DART2JS
String get borderRightColor => this._borderRightColor;
/** Sets the value of "border-right-color" */
- set borderRightColor(String value) {
+ void set borderRightColor(String value) {
_borderRightColor = value == null ? '' : value;
}
@Returns('String')
@@ -356,7 +366,7 @@ $if DART2JS
String get borderRightStyle => this._borderRightStyle;
/** Sets the value of "border-right-style" */
- set borderRightStyle(String value) {
+ void set borderRightStyle(String value) {
_borderRightStyle = value == null ? '' : value;
}
@Returns('String')
@@ -367,7 +377,7 @@ $if DART2JS
String get borderRightWidth => this._borderRightWidth;
/** Sets the value of "border-right-width" */
- set borderRightWidth(String value) {
+ void set borderRightWidth(String value) {
_borderRightWidth = value == null ? '' : value;
}
@Returns('String')
@@ -378,7 +388,7 @@ $if DART2JS
String get borderSpacing => this._borderSpacing;
/** Sets the value of "border-spacing" */
- set borderSpacing(String value) {
+ void set borderSpacing(String value) {
_borderSpacing = value == null ? '' : value;
}
@Returns('String')
@@ -389,7 +399,7 @@ $if DART2JS
String get borderStyle => this._borderStyle;
/** Sets the value of "border-style" */
- set borderStyle(String value) {
+ void set borderStyle(String value) {
_borderStyle = value == null ? '' : value;
}
@Returns('String')
@@ -400,7 +410,7 @@ $if DART2JS
String get borderTop => this._borderTop;
/** Sets the value of "border-top" */
- set borderTop(String value) {
+ void set borderTop(String value) {
_borderTop = value == null ? '' : value;
}
@Returns('String')
@@ -411,7 +421,7 @@ $if DART2JS
String get borderTopColor => this._borderTopColor;
/** Sets the value of "border-top-color" */
- set borderTopColor(String value) {
+ void set borderTopColor(String value) {
_borderTopColor = value == null ? '' : value;
}
@Returns('String')
@@ -422,7 +432,7 @@ $if DART2JS
String get borderTopStyle => this._borderTopStyle;
/** Sets the value of "border-top-style" */
- set borderTopStyle(String value) {
+ void set borderTopStyle(String value) {
_borderTopStyle = value == null ? '' : value;
}
@Returns('String')
@@ -433,7 +443,7 @@ $if DART2JS
String get borderTopWidth => this._borderTopWidth;
/** Sets the value of "border-top-width" */
- set borderTopWidth(String value) {
+ void set borderTopWidth(String value) {
_borderTopWidth = value == null ? '' : value;
}
@Returns('String')
@@ -444,7 +454,7 @@ $if DART2JS
String get borderWidth => this._borderWidth;
/** Sets the value of "border-width" */
- set borderWidth(String value) {
+ void set borderWidth(String value) {
_borderWidth = value == null ? '' : value;
}
@Returns('String')
@@ -455,7 +465,7 @@ $if DART2JS
String get bottom => this._bottom;
/** Sets the value of "bottom" */
- set bottom(String value) {
+ void set bottom(String value) {
_bottom = value == null ? '' : value;
}
@Returns('String')
@@ -466,7 +476,7 @@ $if DART2JS
String get captionSide => this._captionSide;
/** Sets the value of "caption-side" */
- set captionSide(String value) {
+ void set captionSide(String value) {
_captionSide = value == null ? '' : value;
}
@Returns('String')
@@ -477,7 +487,7 @@ $if DART2JS
String get clear => this._clear;
/** Sets the value of "clear" */
- set clear(String value) {
+ void set clear(String value) {
_clear = value == null ? '' : value;
}
@Returns('String')
@@ -488,7 +498,7 @@ $if DART2JS
String get clip => this._clip;
/** Sets the value of "clip" */
- set clip(String value) {
+ void set clip(String value) {
_clip = value == null ? '' : value;
}
@Returns('String')
@@ -499,7 +509,7 @@ $if DART2JS
String get color => this._color;
/** Sets the value of "color" */
- set color(String value) {
+ void set color(String value) {
_color = value == null ? '' : value;
}
@Returns('String')
@@ -510,7 +520,7 @@ $if DART2JS
String get content => this._content;
/** Sets the value of "content" */
- set content(String value) {
+ void set content(String value) {
_content = value == null ? '' : value;
}
@Returns('String')
@@ -521,7 +531,7 @@ $if DART2JS
String get cursor => this._cursor;
/** Sets the value of "cursor" */
- set cursor(String value) {
+ void set cursor(String value) {
_cursor = value == null ? '' : value;
}
@Returns('String')
@@ -532,7 +542,7 @@ $if DART2JS
String get direction => this._direction;
/** Sets the value of "direction" */
- set direction(String value) {
+ void set direction(String value) {
_direction = value == null ? '' : value;
}
@Returns('String')
@@ -543,7 +553,7 @@ $if DART2JS
String get display => this._display;
/** Sets the value of "display" */
- set display(String value) {
+ void set display(String value) {
_display = value == null ? '' : value;
}
@Returns('String')
@@ -554,7 +564,7 @@ $if DART2JS
String get emptyCells => this._emptyCells;
/** Sets the value of "empty-cells" */
- set emptyCells(String value) {
+ void set emptyCells(String value) {
_emptyCells = value == null ? '' : value;
}
@Returns('String')
@@ -565,7 +575,7 @@ $if DART2JS
String get font => this._font;
/** Sets the value of "font" */
- set font(String value) {
+ void set font(String value) {
_font = value == null ? '' : value;
}
@Returns('String')
@@ -576,7 +586,7 @@ $if DART2JS
String get fontFamily => this._fontFamily;
/** Sets the value of "font-family" */
- set fontFamily(String value) {
+ void set fontFamily(String value) {
_fontFamily = value == null ? '' : value;
}
@Returns('String')
@@ -587,7 +597,7 @@ $if DART2JS
String get fontSize => this._fontSize;
/** Sets the value of "font-size" */
- set fontSize(String value) {
+ void set fontSize(String value) {
_fontSize = value == null ? '' : value;
}
@Returns('String')
@@ -598,7 +608,7 @@ $if DART2JS
String get fontStyle => this._fontStyle;
/** Sets the value of "font-style" */
- set fontStyle(String value) {
+ void set fontStyle(String value) {
_fontStyle = value == null ? '' : value;
}
@Returns('String')
@@ -609,7 +619,7 @@ $if DART2JS
String get fontVariant => this._fontVariant;
/** Sets the value of "font-variant" */
- set fontVariant(String value) {
+ void set fontVariant(String value) {
_fontVariant = value == null ? '' : value;
}
@Returns('String')
@@ -620,7 +630,7 @@ $if DART2JS
String get fontWeight => this._fontWeight;
/** Sets the value of "font-weight" */
- set fontWeight(String value) {
+ void set fontWeight(String value) {
_fontWeight = value == null ? '' : value;
}
@Returns('String')
@@ -631,7 +641,7 @@ $if DART2JS
String get height => this._height;
/** Sets the value of "height" */
- set height(String value) {
+ void set height(String value) {
_height = value == null ? '' : value;
}
@Returns('String')
@@ -642,7 +652,7 @@ $if DART2JS
String get left => this._left;
/** Sets the value of "left" */
- set left(String value) {
+ void set left(String value) {
_left = value == null ? '' : value;
}
@Returns('String')
@@ -653,7 +663,7 @@ $if DART2JS
String get letterSpacing => this._letterSpacing;
/** Sets the value of "letter-spacing" */
- set letterSpacing(String value) {
+ void set letterSpacing(String value) {
_letterSpacing = value == null ? '' : value;
}
@Returns('String')
@@ -664,7 +674,7 @@ $if DART2JS
String get lineHeight => this._lineHeight;
/** Sets the value of "line-height" */
- set lineHeight(String value) {
+ void set lineHeight(String value) {
_lineHeight = value == null ? '' : value;
}
@Returns('String')
@@ -675,7 +685,7 @@ $if DART2JS
String get listStyle => this._listStyle;
/** Sets the value of "list-style" */
- set listStyle(String value) {
+ void set listStyle(String value) {
_listStyle = value == null ? '' : value;
}
@Returns('String')
@@ -686,7 +696,7 @@ $if DART2JS
String get listStyleImage => this._listStyleImage;
/** Sets the value of "list-style-image" */
- set listStyleImage(String value) {
+ void set listStyleImage(String value) {
_listStyleImage = value == null ? '' : value;
}
@Returns('String')
@@ -697,7 +707,7 @@ $if DART2JS
String get listStylePosition => this._listStylePosition;
/** Sets the value of "list-style-position" */
- set listStylePosition(String value) {
+ void set listStylePosition(String value) {
_listStylePosition = value == null ? '' : value;
}
@Returns('String')
@@ -708,7 +718,7 @@ $if DART2JS
String get listStyleType => this._listStyleType;
/** Sets the value of "list-style-type" */
- set listStyleType(String value) {
+ void set listStyleType(String value) {
_listStyleType = value == null ? '' : value;
}
@Returns('String')
@@ -719,7 +729,7 @@ $if DART2JS
String get margin => this._margin;
/** Sets the value of "margin" */
- set margin(String value) {
+ void set margin(String value) {
_margin = value == null ? '' : value;
}
@Returns('String')
@@ -730,7 +740,7 @@ $if DART2JS
String get marginBottom => this._marginBottom;
/** Sets the value of "margin-bottom" */
- set marginBottom(String value) {
+ void set marginBottom(String value) {
_marginBottom = value == null ? '' : value;
}
@Returns('String')
@@ -741,7 +751,7 @@ $if DART2JS
String get marginLeft => this._marginLeft;
/** Sets the value of "margin-left" */
- set marginLeft(String value) {
+ void set marginLeft(String value) {
_marginLeft = value == null ? '' : value;
}
@Returns('String')
@@ -752,7 +762,7 @@ $if DART2JS
String get marginRight => this._marginRight;
/** Sets the value of "margin-right" */
- set marginRight(String value) {
+ void set marginRight(String value) {
_marginRight = value == null ? '' : value;
}
@Returns('String')
@@ -763,7 +773,7 @@ $if DART2JS
String get marginTop => this._marginTop;
/** Sets the value of "margin-top" */
- set marginTop(String value) {
+ void set marginTop(String value) {
_marginTop = value == null ? '' : value;
}
@Returns('String')
@@ -774,7 +784,7 @@ $if DART2JS
String get maxHeight => this._maxHeight;
/** Sets the value of "max-height" */
- set maxHeight(String value) {
+ void set maxHeight(String value) {
_maxHeight = value == null ? '' : value;
}
@Returns('String')
@@ -785,7 +795,7 @@ $if DART2JS
String get maxWidth => this._maxWidth;
/** Sets the value of "max-width" */
- set maxWidth(String value) {
+ void set maxWidth(String value) {
_maxWidth = value == null ? '' : value;
}
@Returns('String')
@@ -796,7 +806,7 @@ $if DART2JS
String get minHeight => this._minHeight;
/** Sets the value of "min-height" */
- set minHeight(String value) {
+ void set minHeight(String value) {
_minHeight = value == null ? '' : value;
}
@Returns('String')
@@ -807,7 +817,7 @@ $if DART2JS
String get minWidth => this._minWidth;
/** Sets the value of "min-width" */
- set minWidth(String value) {
+ void set minWidth(String value) {
_minWidth = value == null ? '' : value;
}
@Returns('String')
@@ -818,7 +828,7 @@ $if DART2JS
String get outline => this._outline;
/** Sets the value of "outline" */
- set outline(String value) {
+ void set outline(String value) {
_outline = value == null ? '' : value;
}
@Returns('String')
@@ -829,7 +839,7 @@ $if DART2JS
String get outlineColor => this._outlineColor;
/** Sets the value of "outline-color" */
- set outlineColor(String value) {
+ void set outlineColor(String value) {
_outlineColor = value == null ? '' : value;
}
@Returns('String')
@@ -840,7 +850,7 @@ $if DART2JS
String get outlineStyle => this._outlineStyle;
/** Sets the value of "outline-style" */
- set outlineStyle(String value) {
+ void set outlineStyle(String value) {
_outlineStyle = value == null ? '' : value;
}
@Returns('String')
@@ -851,7 +861,7 @@ $if DART2JS
String get outlineWidth => this._outlineWidth;
/** Sets the value of "outline-width" */
- set outlineWidth(String value) {
+ void set outlineWidth(String value) {
_outlineWidth = value == null ? '' : value;
}
@Returns('String')
@@ -862,7 +872,7 @@ $if DART2JS
String get overflow => this._overflow;
/** Sets the value of "overflow" */
- set overflow(String value) {
+ void set overflow(String value) {
_overflow = value == null ? '' : value;
}
@Returns('String')
@@ -873,7 +883,7 @@ $if DART2JS
String get padding => this._padding;
/** Sets the value of "padding" */
- set padding(String value) {
+ void set padding(String value) {
_padding = value == null ? '' : value;
}
@Returns('String')
@@ -884,7 +894,7 @@ $if DART2JS
String get paddingBottom => this._paddingBottom;
/** Sets the value of "padding-bottom" */
- set paddingBottom(String value) {
+ void set paddingBottom(String value) {
_paddingBottom = value == null ? '' : value;
}
@Returns('String')
@@ -895,7 +905,7 @@ $if DART2JS
String get paddingLeft => this._paddingLeft;
/** Sets the value of "padding-left" */
- set paddingLeft(String value) {
+ void set paddingLeft(String value) {
_paddingLeft = value == null ? '' : value;
}
@Returns('String')
@@ -906,7 +916,7 @@ $if DART2JS
String get paddingRight => this._paddingRight;
/** Sets the value of "padding-right" */
- set paddingRight(String value) {
+ void set paddingRight(String value) {
_paddingRight = value == null ? '' : value;
}
@Returns('String')
@@ -917,7 +927,7 @@ $if DART2JS
String get paddingTop => this._paddingTop;
/** Sets the value of "padding-top" */
- set paddingTop(String value) {
+ void set paddingTop(String value) {
_paddingTop = value == null ? '' : value;
}
@Returns('String')
@@ -928,7 +938,7 @@ $if DART2JS
String get pageBreakAfter => this._pageBreakAfter;
/** Sets the value of "page-break-after" */
- set pageBreakAfter(String value) {
+ void set pageBreakAfter(String value) {
_pageBreakAfter = value == null ? '' : value;
}
@Returns('String')
@@ -939,7 +949,7 @@ $if DART2JS
String get pageBreakBefore => this._pageBreakBefore;
/** Sets the value of "page-break-before" */
- set pageBreakBefore(String value) {
+ void set pageBreakBefore(String value) {
_pageBreakBefore = value == null ? '' : value;
}
@Returns('String')
@@ -950,7 +960,7 @@ $if DART2JS
String get pageBreakInside => this._pageBreakInside;
/** Sets the value of "page-break-inside" */
- set pageBreakInside(String value) {
+ void set pageBreakInside(String value) {
_pageBreakInside = value == null ? '' : value;
}
@Returns('String')
@@ -961,7 +971,7 @@ $if DART2JS
String get position => this._position;
/** Sets the value of "position" */
- set position(String value) {
+ void set position(String value) {
_position = value == null ? '' : value;
}
@Returns('String')
@@ -972,7 +982,7 @@ $if DART2JS
String get quotes => this._quotes;
/** Sets the value of "quotes" */
- set quotes(String value) {
+ void set quotes(String value) {
_quotes = value == null ? '' : value;
}
@Returns('String')
@@ -983,7 +993,7 @@ $if DART2JS
String get right => this._right;
/** Sets the value of "right" */
- set right(String value) {
+ void set right(String value) {
_right = value == null ? '' : value;
}
@Returns('String')
@@ -994,7 +1004,7 @@ $if DART2JS
String get tableLayout => this._tableLayout;
/** Sets the value of "table-layout" */
- set tableLayout(String value) {
+ void set tableLayout(String value) {
_tableLayout = value == null ? '' : value;
}
@Returns('String')
@@ -1005,7 +1015,7 @@ $if DART2JS
String get textAlign => this._textAlign;
/** Sets the value of "text-align" */
- set textAlign(String value) {
+ void set textAlign(String value) {
_textAlign = value == null ? '' : value;
}
@Returns('String')
@@ -1016,7 +1026,7 @@ $if DART2JS
String get textDecoration => this._textDecoration;
/** Sets the value of "text-decoration" */
- set textDecoration(String value) {
+ void set textDecoration(String value) {
_textDecoration = value == null ? '' : value;
}
@Returns('String')
@@ -1027,7 +1037,7 @@ $if DART2JS
String get textIndent => this._textIndent;
/** Sets the value of "text-indent" */
- set textIndent(String value) {
+ void set textIndent(String value) {
_textIndent = value == null ? '' : value;
}
@Returns('String')
@@ -1038,7 +1048,7 @@ $if DART2JS
String get textTransform => this._textTransform;
/** Sets the value of "text-transform" */
- set textTransform(String value) {
+ void set textTransform(String value) {
_textTransform = value == null ? '' : value;
}
@Returns('String')
@@ -1049,7 +1059,7 @@ $if DART2JS
String get top => this._top;
/** Sets the value of "top" */
- set top(String value) {
+ void set top(String value) {
_top = value == null ? '' : value;
}
@Returns('String')
@@ -1060,7 +1070,7 @@ $if DART2JS
String get unicodeBidi => this._unicodeBidi;
/** Sets the value of "unicode-bidi" */
- set unicodeBidi(String value) {
+ void set unicodeBidi(String value) {
_unicodeBidi = value == null ? '' : value;
}
@Returns('String')
@@ -1071,7 +1081,7 @@ $if DART2JS
String get verticalAlign => this._verticalAlign;
/** Sets the value of "vertical-align" */
- set verticalAlign(String value) {
+ void set verticalAlign(String value) {
_verticalAlign = value == null ? '' : value;
}
@Returns('String')
@@ -1082,7 +1092,7 @@ $if DART2JS
String get visibility => this._visibility;
/** Sets the value of "visibility" */
- set visibility(String value) {
+ void set visibility(String value) {
_visibility = value == null ? '' : value;
}
@Returns('String')
@@ -1093,7 +1103,7 @@ $if DART2JS
String get whiteSpace => this._whiteSpace;
/** Sets the value of "white-space" */
- set whiteSpace(String value) {
+ void set whiteSpace(String value) {
_whiteSpace = value == null ? '' : value;
}
@Returns('String')
@@ -1104,7 +1114,7 @@ $if DART2JS
String get width => this._width;
/** Sets the value of "width" */
- set width(String value) {
+ void set width(String value) {
_width = value == null ? '' : value;
}
@Returns('String')
@@ -1115,7 +1125,7 @@ $if DART2JS
String get wordSpacing => this._wordSpacing;
/** Sets the value of "word-spacing" */
- set wordSpacing(String value) {
+ void set wordSpacing(String value) {
_wordSpacing = value == null ? '' : value;
}
@Returns('String')
@@ -1126,7 +1136,7 @@ $if DART2JS
String get zIndex => this._zIndex;
/** Sets the value of "z-index" */
- set zIndex(String value) {
+ void set zIndex(String value) {
_zIndex = value == null ? '' : value;
}
@Returns('String')
@@ -1136,7 +1146,15 @@ $if DART2JS
$endif
}
+$if DART2JS
+class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase {
+$else
+ $if JSINTEROP
+class _CssStyleDeclarationSet extends CssStyleDeclarationBase {
+ $else
class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase {
+ $endif
+$endif
final Iterable<Element> _elementIterable;
Iterable<CssStyleDeclaration> _elementCssStyleDeclarationSetIterable;
@@ -1164,452 +1182,452 @@ $if DART2JS
}
/** Sets the value of "background" */
- set background(String value) {
+ void set background(String value) {
_setAll('background', value);
}
/** Sets the value of "background-attachment" */
- set backgroundAttachment(String value) {
+ void set backgroundAttachment(String value) {
_setAll('backgroundAttachment', value);
}
/** Sets the value of "background-color" */
- set backgroundColor(String value) {
+ void set backgroundColor(String value) {
_setAll('backgroundColor', value);
}
/** Sets the value of "background-image" */
- set backgroundImage(String value) {
+ void set backgroundImage(String value) {
_setAll('backgroundImage', value);
}
/** Sets the value of "background-position" */
- set backgroundPosition(String value) {
+ void set backgroundPosition(String value) {
_setAll('backgroundPosition', value);
}
/** Sets the value of "background-repeat" */
- set backgroundRepeat(String value) {
+ void set backgroundRepeat(String value) {
_setAll('backgroundRepeat', value);
}
/** Sets the value of "border" */
- set border(String value) {
+ void set border(String value) {
_setAll('border', value);
}
/** Sets the value of "border-bottom" */
- set borderBottom(String value) {
+ void set borderBottom(String value) {
_setAll('borderBottom', value);
}
/** Sets the value of "border-bottom-color" */
- set borderBottomColor(String value) {
+ void set borderBottomColor(String value) {
_setAll('borderBottomColor', value);
}
/** Sets the value of "border-bottom-style" */
- set borderBottomStyle(String value) {
+ void set borderBottomStyle(String value) {
_setAll('borderBottomStyle', value);
}
/** Sets the value of "border-bottom-width" */
- set borderBottomWidth(String value) {
+ void set borderBottomWidth(String value) {
_setAll('borderBottomWidth', value);
}
/** Sets the value of "border-collapse" */
- set borderCollapse(String value) {
+ void set borderCollapse(String value) {
_setAll('borderCollapse', value);
}
/** Sets the value of "border-color" */
- set borderColor(String value) {
+ void set borderColor(String value) {
_setAll('borderColor', value);
}
/** Sets the value of "border-left" */
- set borderLeft(String value) {
+ void set borderLeft(String value) {
_setAll('borderLeft', value);
}
/** Sets the value of "border-left-color" */
- set borderLeftColor(String value) {
+ void set borderLeftColor(String value) {
_setAll('borderLeftColor', value);
}
/** Sets the value of "border-left-style" */
- set borderLeftStyle(String value) {
+ void set borderLeftStyle(String value) {
_setAll('borderLeftStyle', value);
}
/** Sets the value of "border-left-width" */
- set borderLeftWidth(String value) {
+ void set borderLeftWidth(String value) {
_setAll('borderLeftWidth', value);
}
/** Sets the value of "border-right" */
- set borderRight(String value) {
+ void set borderRight(String value) {
_setAll('borderRight', value);
}
/** Sets the value of "border-right-color" */
- set borderRightColor(String value) {
+ void set borderRightColor(String value) {
_setAll('borderRightColor', value);
}
/** Sets the value of "border-right-style" */
- set borderRightStyle(String value) {
+ void set borderRightStyle(String value) {
_setAll('borderRightStyle', value);
}
/** Sets the value of "border-right-width" */
- set borderRightWidth(String value) {
+ void set borderRightWidth(String value) {
_setAll('borderRightWidth', value);
}
/** Sets the value of "border-spacing" */
- set borderSpacing(String value) {
+ void set borderSpacing(String value) {
_setAll('borderSpacing', value);
}
/** Sets the value of "border-style" */
- set borderStyle(String value) {
+ void set borderStyle(String value) {
_setAll('borderStyle', value);
}
/** Sets the value of "border-top" */
- set borderTop(String value) {
+ void set borderTop(String value) {
_setAll('borderTop', value);
}
/** Sets the value of "border-top-color" */
- set borderTopColor(String value) {
+ void set borderTopColor(String value) {
_setAll('borderTopColor', value);
}
/** Sets the value of "border-top-style" */
- set borderTopStyle(String value) {
+ void set borderTopStyle(String value) {
_setAll('borderTopStyle', value);
}
/** Sets the value of "border-top-width" */
- set borderTopWidth(String value) {
+ void set borderTopWidth(String value) {
_setAll('borderTopWidth', value);
}
/** Sets the value of "border-width" */
- set borderWidth(String value) {
+ void set borderWidth(String value) {
_setAll('borderWidth', value);
}
/** Sets the value of "bottom" */
- set bottom(String value) {
+ void set bottom(String value) {
_setAll('bottom', value);
}
/** Sets the value of "caption-side" */
- set captionSide(String value) {
+ void set captionSide(String value) {
_setAll('captionSide', value);
}
/** Sets the value of "clear" */
- set clear(String value) {
+ void set clear(String value) {
_setAll('clear', value);
}
/** Sets the value of "clip" */
- set clip(String value) {
+ void set clip(String value) {
_setAll('clip', value);
}
/** Sets the value of "color" */
- set color(String value) {
+ void set color(String value) {
_setAll('color', value);
}
/** Sets the value of "content" */
- set content(String value) {
+ void set content(String value) {
_setAll('content', value);
}
/** Sets the value of "cursor" */
- set cursor(String value) {
+ void set cursor(String value) {
_setAll('cursor', value);
}
/** Sets the value of "direction" */
- set direction(String value) {
+ void set direction(String value) {
_setAll('direction', value);
}
/** Sets the value of "display" */
- set display(String value) {
+ void set display(String value) {
_setAll('display', value);
}
/** Sets the value of "empty-cells" */
- set emptyCells(String value) {
+ void set emptyCells(String value) {
_setAll('emptyCells', value);
}
/** Sets the value of "font" */
- set font(String value) {
+ void set font(String value) {
_setAll('font', value);
}
/** Sets the value of "font-family" */
- set fontFamily(String value) {
+ void set fontFamily(String value) {
_setAll('fontFamily', value);
}
/** Sets the value of "font-size" */
- set fontSize(String value) {
+ void set fontSize(String value) {
_setAll('fontSize', value);
}
/** Sets the value of "font-style" */
- set fontStyle(String value) {
+ void set fontStyle(String value) {
_setAll('fontStyle', value);
}
/** Sets the value of "font-variant" */
- set fontVariant(String value) {
+ void set fontVariant(String value) {
_setAll('fontVariant', value);
}
/** Sets the value of "font-weight" */
- set fontWeight(String value) {
+ void set fontWeight(String value) {
_setAll('fontWeight', value);
}
/** Sets the value of "height" */
- set height(String value) {
+ void set height(String value) {
_setAll('height', value);
}
/** Sets the value of "left" */
- set left(String value) {
+ void set left(String value) {
_setAll('left', value);
}
/** Sets the value of "letter-spacing" */
- set letterSpacing(String value) {
+ void set letterSpacing(String value) {
_setAll('letterSpacing', value);
}
/** Sets the value of "line-height" */
- set lineHeight(String value) {
+ void set lineHeight(String value) {
_setAll('lineHeight', value);
}
/** Sets the value of "list-style" */
- set listStyle(String value) {
+ void set listStyle(String value) {
_setAll('listStyle', value);
}
/** Sets the value of "list-style-image" */
- set listStyleImage(String value) {
+ void set listStyleImage(String value) {
_setAll('listStyleImage', value);
}
/** Sets the value of "list-style-position" */
- set listStylePosition(String value) {
+ void set listStylePosition(String value) {
_setAll('listStylePosition', value);
}
/** Sets the value of "list-style-type" */
- set listStyleType(String value) {
+ void set listStyleType(String value) {
_setAll('listStyleType', value);
}
/** Sets the value of "margin" */
- set margin(String value) {
+ void set margin(String value) {
_setAll('margin', value);
}
/** Sets the value of "margin-bottom" */
- set marginBottom(String value) {
+ void set marginBottom(String value) {
_setAll('marginBottom', value);
}
/** Sets the value of "margin-left" */
- set marginLeft(String value) {
+ void set marginLeft(String value) {
_setAll('marginLeft', value);
}
/** Sets the value of "margin-right" */
- set marginRight(String value) {
+ void set marginRight(String value) {
_setAll('marginRight', value);
}
/** Sets the value of "margin-top" */
- set marginTop(String value) {
+ void set marginTop(String value) {
_setAll('marginTop', value);
}
/** Sets the value of "max-height" */
- set maxHeight(String value) {
+ void set maxHeight(String value) {
_setAll('maxHeight', value);
}
/** Sets the value of "max-width" */
- set maxWidth(String value) {
+ void set maxWidth(String value) {
_setAll('maxWidth', value);
}
/** Sets the value of "min-height" */
- set minHeight(String value) {
+ void set minHeight(String value) {
_setAll('minHeight', value);
}
/** Sets the value of "min-width" */
- set minWidth(String value) {
+ void set minWidth(String value) {
_setAll('minWidth', value);
}
/** Sets the value of "outline" */
- set outline(String value) {
+ void set outline(String value) {
_setAll('outline', value);
}
/** Sets the value of "outline-color" */
- set outlineColor(String value) {
+ void set outlineColor(String value) {
_setAll('outlineColor', value);
}
/** Sets the value of "outline-style" */
- set outlineStyle(String value) {
+ void set outlineStyle(String value) {
_setAll('outlineStyle', value);
}
/** Sets the value of "outline-width" */
- set outlineWidth(String value) {
+ void set outlineWidth(String value) {
_setAll('outlineWidth', value);
}
/** Sets the value of "overflow" */
- set overflow(String value) {
+ void set overflow(String value) {
_setAll('overflow', value);
}
/** Sets the value of "padding" */
- set padding(String value) {
+ void set padding(String value) {
_setAll('padding', value);
}
/** Sets the value of "padding-bottom" */
- set paddingBottom(String value) {
+ void set paddingBottom(String value) {
_setAll('paddingBottom', value);
}
/** Sets the value of "padding-left" */
- set paddingLeft(String value) {
+ void set paddingLeft(String value) {
_setAll('paddingLeft', value);
}
/** Sets the value of "padding-right" */
- set paddingRight(String value) {
+ void set paddingRight(String value) {
_setAll('paddingRight', value);
}
/** Sets the value of "padding-top" */
- set paddingTop(String value) {
+ void set paddingTop(String value) {
_setAll('paddingTop', value);
}
/** Sets the value of "page-break-after" */
- set pageBreakAfter(String value) {
+ void set pageBreakAfter(String value) {
_setAll('pageBreakAfter', value);
}
/** Sets the value of "page-break-before" */
- set pageBreakBefore(String value) {
+ void set pageBreakBefore(String value) {
_setAll('pageBreakBefore', value);
}
/** Sets the value of "page-break-inside" */
- set pageBreakInside(String value) {
+ void set pageBreakInside(String value) {
_setAll('pageBreakInside', value);
}
/** Sets the value of "position" */
- set position(String value) {
+ void set position(String value) {
_setAll('position', value);
}
/** Sets the value of "quotes" */
- set quotes(String value) {
+ void set quotes(String value) {
_setAll('quotes', value);
}
/** Sets the value of "right" */
- set right(String value) {
+ void set right(String value) {
_setAll('right', value);
}
/** Sets the value of "table-layout" */
- set tableLayout(String value) {
+ void set tableLayout(String value) {
_setAll('tableLayout', value);
}
/** Sets the value of "text-align" */
- set textAlign(String value) {
+ void set textAlign(String value) {
_setAll('textAlign', value);
}
/** Sets the value of "text-decoration" */
- set textDecoration(String value) {
+ void set textDecoration(String value) {
_setAll('textDecoration', value);
}
/** Sets the value of "text-indent" */
- set textIndent(String value) {
+ void set textIndent(String value) {
_setAll('textIndent', value);
}
/** Sets the value of "text-transform" */
- set textTransform(String value) {
+ void set textTransform(String value) {
_setAll('textTransform', value);
}
/** Sets the value of "top" */
- set top(String value) {
+ void set top(String value) {
_setAll('top', value);
}
/** Sets the value of "unicode-bidi" */
- set unicodeBidi(String value) {
+ void set unicodeBidi(String value) {
_setAll('unicodeBidi', value);
}
/** Sets the value of "vertical-align" */
- set verticalAlign(String value) {
+ void set verticalAlign(String value) {
_setAll('verticalAlign', value);
}
/** Sets the value of "visibility" */
- set visibility(String value) {
+ void set visibility(String value) {
_setAll('visibility', value);
}
/** Sets the value of "white-space" */
- set whiteSpace(String value) {
+ void set whiteSpace(String value) {
_setAll('whiteSpace', value);
}
/** Sets the value of "width" */
- set width(String value) {
+ void set width(String value) {
_setAll('width', value);
}
/** Sets the value of "word-spacing" */
- set wordSpacing(String value) {
+ void set wordSpacing(String value) {
_setAll('wordSpacing', value);
}
/** Sets the value of "z-index" */
- set zIndex(String value) {
+ void set zIndex(String value) {
_setAll('zIndex', value);
}
@@ -1645,7 +1663,7 @@ $endif
getPropertyValue('align-content');
/** Sets the value of "align-content" */
- set alignContent(String value) {
+ void set alignContent(String value) {
setProperty('align-content', value, '');
}
@@ -1654,7 +1672,7 @@ $endif
getPropertyValue('align-items');
/** Sets the value of "align-items" */
- set alignItems(String value) {
+ void set alignItems(String value) {
setProperty('align-items', value, '');
}
@@ -1663,7 +1681,7 @@ $endif
getPropertyValue('align-self');
/** Sets the value of "align-self" */
- set alignSelf(String value) {
+ void set alignSelf(String value) {
setProperty('align-self', value, '');
}
@@ -1672,7 +1690,7 @@ $endif
getPropertyValue('animation');
/** Sets the value of "animation" */
- set animation(String value) {
+ void set animation(String value) {
setProperty('animation', value, '');
}
@@ -1681,7 +1699,7 @@ $endif
getPropertyValue('animation-delay');
/** Sets the value of "animation-delay" */
- set animationDelay(String value) {
+ void set animationDelay(String value) {
setProperty('animation-delay', value, '');
}
@@ -1690,7 +1708,7 @@ $endif
getPropertyValue('animation-direction');
/** Sets the value of "animation-direction" */
- set animationDirection(String value) {
+ void set animationDirection(String value) {
setProperty('animation-direction', value, '');
}
@@ -1699,7 +1717,7 @@ $endif
getPropertyValue('animation-duration');
/** Sets the value of "animation-duration" */
- set animationDuration(String value) {
+ void set animationDuration(String value) {
setProperty('animation-duration', value, '');
}
@@ -1708,7 +1726,7 @@ $endif
getPropertyValue('animation-fill-mode');
/** Sets the value of "animation-fill-mode" */
- set animationFillMode(String value) {
+ void set animationFillMode(String value) {
setProperty('animation-fill-mode', value, '');
}
@@ -1717,7 +1735,7 @@ $endif
getPropertyValue('animation-iteration-count');
/** Sets the value of "animation-iteration-count" */
- set animationIterationCount(String value) {
+ void set animationIterationCount(String value) {
setProperty('animation-iteration-count', value, '');
}
@@ -1726,7 +1744,7 @@ $endif
getPropertyValue('animation-name');
/** Sets the value of "animation-name" */
- set animationName(String value) {
+ void set animationName(String value) {
setProperty('animation-name', value, '');
}
@@ -1735,7 +1753,7 @@ $endif
getPropertyValue('animation-play-state');
/** Sets the value of "animation-play-state" */
- set animationPlayState(String value) {
+ void set animationPlayState(String value) {
setProperty('animation-play-state', value, '');
}
@@ -1744,7 +1762,7 @@ $endif
getPropertyValue('animation-timing-function');
/** Sets the value of "animation-timing-function" */
- set animationTimingFunction(String value) {
+ void set animationTimingFunction(String value) {
setProperty('animation-timing-function', value, '');
}
@@ -1753,7 +1771,7 @@ $endif
getPropertyValue('app-region');
/** Sets the value of "app-region" */
- set appRegion(String value) {
+ void set appRegion(String value) {
setProperty('app-region', value, '');
}
@@ -1762,7 +1780,7 @@ $endif
getPropertyValue('appearance');
/** Sets the value of "appearance" */
- set appearance(String value) {
+ void set appearance(String value) {
setProperty('appearance', value, '');
}
@@ -1771,7 +1789,7 @@ $endif
getPropertyValue('aspect-ratio');
/** Sets the value of "aspect-ratio" */
- set aspectRatio(String value) {
+ void set aspectRatio(String value) {
setProperty('aspect-ratio', value, '');
}
@@ -1780,7 +1798,7 @@ $endif
getPropertyValue('backface-visibility');
/** Sets the value of "backface-visibility" */
- set backfaceVisibility(String value) {
+ void set backfaceVisibility(String value) {
setProperty('backface-visibility', value, '');
}
@@ -1789,7 +1807,7 @@ $endif
getPropertyValue('background');
/** Sets the value of "background" */
- set background(String value) {
+ void set background(String value) {
setProperty('background', value, '');
}
@@ -1798,7 +1816,7 @@ $endif
getPropertyValue('background-attachment');
/** Sets the value of "background-attachment" */
- set backgroundAttachment(String value) {
+ void set backgroundAttachment(String value) {
setProperty('background-attachment', value, '');
}
@@ -1807,7 +1825,7 @@ $endif
getPropertyValue('background-blend-mode');
/** Sets the value of "background-blend-mode" */
- set backgroundBlendMode(String value) {
+ void set backgroundBlendMode(String value) {
setProperty('background-blend-mode', value, '');
}
@@ -1816,7 +1834,7 @@ $endif
getPropertyValue('background-clip');
/** Sets the value of "background-clip" */
- set backgroundClip(String value) {
+ void set backgroundClip(String value) {
setProperty('background-clip', value, '');
}
@@ -1825,7 +1843,7 @@ $endif
getPropertyValue('background-color');
/** Sets the value of "background-color" */
- set backgroundColor(String value) {
+ void set backgroundColor(String value) {
setProperty('background-color', value, '');
}
@@ -1834,7 +1852,7 @@ $endif
getPropertyValue('background-composite');
/** Sets the value of "background-composite" */
- set backgroundComposite(String value) {
+ void set backgroundComposite(String value) {
setProperty('background-composite', value, '');
}
@@ -1843,7 +1861,7 @@ $endif
getPropertyValue('background-image');
/** Sets the value of "background-image" */
- set backgroundImage(String value) {
+ void set backgroundImage(String value) {
setProperty('background-image', value, '');
}
@@ -1852,7 +1870,7 @@ $endif
getPropertyValue('background-origin');
/** Sets the value of "background-origin" */
- set backgroundOrigin(String value) {
+ void set backgroundOrigin(String value) {
setProperty('background-origin', value, '');
}
@@ -1861,7 +1879,7 @@ $endif
getPropertyValue('background-position');
/** Sets the value of "background-position" */
- set backgroundPosition(String value) {
+ void set backgroundPosition(String value) {
setProperty('background-position', value, '');
}
@@ -1870,7 +1888,7 @@ $endif
getPropertyValue('background-position-x');
/** Sets the value of "background-position-x" */
- set backgroundPositionX(String value) {
+ void set backgroundPositionX(String value) {
setProperty('background-position-x', value, '');
}
@@ -1879,7 +1897,7 @@ $endif
getPropertyValue('background-position-y');
/** Sets the value of "background-position-y" */
- set backgroundPositionY(String value) {
+ void set backgroundPositionY(String value) {
setProperty('background-position-y', value, '');
}
@@ -1888,7 +1906,7 @@ $endif
getPropertyValue('background-repeat');
/** Sets the value of "background-repeat" */
- set backgroundRepeat(String value) {
+ void set backgroundRepeat(String value) {
setProperty('background-repeat', value, '');
}
@@ -1897,7 +1915,7 @@ $endif
getPropertyValue('background-repeat-x');
/** Sets the value of "background-repeat-x" */
- set backgroundRepeatX(String value) {
+ void set backgroundRepeatX(String value) {
setProperty('background-repeat-x', value, '');
}
@@ -1906,7 +1924,7 @@ $endif
getPropertyValue('background-repeat-y');
/** Sets the value of "background-repeat-y" */
- set backgroundRepeatY(String value) {
+ void set backgroundRepeatY(String value) {
setProperty('background-repeat-y', value, '');
}
@@ -1915,7 +1933,7 @@ $endif
getPropertyValue('background-size');
/** Sets the value of "background-size" */
- set backgroundSize(String value) {
+ void set backgroundSize(String value) {
setProperty('background-size', value, '');
}
@@ -1924,7 +1942,7 @@ $endif
getPropertyValue('border');
/** Sets the value of "border" */
- set border(String value) {
+ void set border(String value) {
setProperty('border', value, '');
}
@@ -1933,7 +1951,7 @@ $endif
getPropertyValue('border-after');
/** Sets the value of "border-after" */
- set borderAfter(String value) {
+ void set borderAfter(String value) {
setProperty('border-after', value, '');
}
@@ -1942,7 +1960,7 @@ $endif
getPropertyValue('border-after-color');
/** Sets the value of "border-after-color" */
- set borderAfterColor(String value) {
+ void set borderAfterColor(String value) {
setProperty('border-after-color', value, '');
}
@@ -1951,7 +1969,7 @@ $endif
getPropertyValue('border-after-style');
/** Sets the value of "border-after-style" */
- set borderAfterStyle(String value) {
+ void set borderAfterStyle(String value) {
setProperty('border-after-style', value, '');
}
@@ -1960,7 +1978,7 @@ $endif
getPropertyValue('border-after-width');
/** Sets the value of "border-after-width" */
- set borderAfterWidth(String value) {
+ void set borderAfterWidth(String value) {
setProperty('border-after-width', value, '');
}
@@ -1969,7 +1987,7 @@ $endif
getPropertyValue('border-before');
/** Sets the value of "border-before" */
- set borderBefore(String value) {
+ void set borderBefore(String value) {
setProperty('border-before', value, '');
}
@@ -1978,7 +1996,7 @@ $endif
getPropertyValue('border-before-color');
/** Sets the value of "border-before-color" */
- set borderBeforeColor(String value) {
+ void set borderBeforeColor(String value) {
setProperty('border-before-color', value, '');
}
@@ -1987,7 +2005,7 @@ $endif
getPropertyValue('border-before-style');
/** Sets the value of "border-before-style" */
- set borderBeforeStyle(String value) {
+ void set borderBeforeStyle(String value) {
setProperty('border-before-style', value, '');
}
@@ -1996,7 +2014,7 @@ $endif
getPropertyValue('border-before-width');
/** Sets the value of "border-before-width" */
- set borderBeforeWidth(String value) {
+ void set borderBeforeWidth(String value) {
setProperty('border-before-width', value, '');
}
@@ -2005,7 +2023,7 @@ $endif
getPropertyValue('border-bottom');
/** Sets the value of "border-bottom" */
- set borderBottom(String value) {
+ void set borderBottom(String value) {
setProperty('border-bottom', value, '');
}
@@ -2014,7 +2032,7 @@ $endif
getPropertyValue('border-bottom-color');
/** Sets the value of "border-bottom-color" */
- set borderBottomColor(String value) {
+ void set borderBottomColor(String value) {
setProperty('border-bottom-color', value, '');
}
@@ -2023,7 +2041,7 @@ $endif
getPropertyValue('border-bottom-left-radius');
/** Sets the value of "border-bottom-left-radius" */
- set borderBottomLeftRadius(String value) {
+ void set borderBottomLeftRadius(String value) {
setProperty('border-bottom-left-radius', value, '');
}
@@ -2032,7 +2050,7 @@ $endif
getPropertyValue('border-bottom-right-radius');
/** Sets the value of "border-bottom-right-radius" */
- set borderBottomRightRadius(String value) {
+ void set borderBottomRightRadius(String value) {
setProperty('border-bottom-right-radius', value, '');
}
@@ -2041,7 +2059,7 @@ $endif
getPropertyValue('border-bottom-style');
/** Sets the value of "border-bottom-style" */
- set borderBottomStyle(String value) {
+ void set borderBottomStyle(String value) {
setProperty('border-bottom-style', value, '');
}
@@ -2050,7 +2068,7 @@ $endif
getPropertyValue('border-bottom-width');
/** Sets the value of "border-bottom-width" */
- set borderBottomWidth(String value) {
+ void set borderBottomWidth(String value) {
setProperty('border-bottom-width', value, '');
}
@@ -2059,7 +2077,7 @@ $endif
getPropertyValue('border-collapse');
/** Sets the value of "border-collapse" */
- set borderCollapse(String value) {
+ void set borderCollapse(String value) {
setProperty('border-collapse', value, '');
}
@@ -2068,7 +2086,7 @@ $endif
getPropertyValue('border-color');
/** Sets the value of "border-color" */
- set borderColor(String value) {
+ void set borderColor(String value) {
setProperty('border-color', value, '');
}
@@ -2077,7 +2095,7 @@ $endif
getPropertyValue('border-end');
/** Sets the value of "border-end" */
- set borderEnd(String value) {
+ void set borderEnd(String value) {
setProperty('border-end', value, '');
}
@@ -2086,7 +2104,7 @@ $endif
getPropertyValue('border-end-color');
/** Sets the value of "border-end-color" */
- set borderEndColor(String value) {
+ void set borderEndColor(String value) {
setProperty('border-end-color', value, '');
}
@@ -2095,7 +2113,7 @@ $endif
getPropertyValue('border-end-style');
/** Sets the value of "border-end-style" */
- set borderEndStyle(String value) {
+ void set borderEndStyle(String value) {
setProperty('border-end-style', value, '');
}
@@ -2104,7 +2122,7 @@ $endif
getPropertyValue('border-end-width');
/** Sets the value of "border-end-width" */
- set borderEndWidth(String value) {
+ void set borderEndWidth(String value) {
setProperty('border-end-width', value, '');
}
@@ -2113,7 +2131,7 @@ $endif
getPropertyValue('border-fit');
/** Sets the value of "border-fit" */
- set borderFit(String value) {
+ void set borderFit(String value) {
setProperty('border-fit', value, '');
}
@@ -2122,7 +2140,7 @@ $endif
getPropertyValue('border-horizontal-spacing');
/** Sets the value of "border-horizontal-spacing" */
- set borderHorizontalSpacing(String value) {
+ void set borderHorizontalSpacing(String value) {
setProperty('border-horizontal-spacing', value, '');
}
@@ -2131,7 +2149,7 @@ $endif
getPropertyValue('border-image');
/** Sets the value of "border-image" */
- set borderImage(String value) {
+ void set borderImage(String value) {
setProperty('border-image', value, '');
}
@@ -2140,7 +2158,7 @@ $endif
getPropertyValue('border-image-outset');
/** Sets the value of "border-image-outset" */
- set borderImageOutset(String value) {
+ void set borderImageOutset(String value) {
setProperty('border-image-outset', value, '');
}
@@ -2149,7 +2167,7 @@ $endif
getPropertyValue('border-image-repeat');
/** Sets the value of "border-image-repeat" */
- set borderImageRepeat(String value) {
+ void set borderImageRepeat(String value) {
setProperty('border-image-repeat', value, '');
}
@@ -2158,7 +2176,7 @@ $endif
getPropertyValue('border-image-slice');
/** Sets the value of "border-image-slice" */
- set borderImageSlice(String value) {
+ void set borderImageSlice(String value) {
setProperty('border-image-slice', value, '');
}
@@ -2167,7 +2185,7 @@ $endif
getPropertyValue('border-image-source');
/** Sets the value of "border-image-source" */
- set borderImageSource(String value) {
+ void set borderImageSource(String value) {
setProperty('border-image-source', value, '');
}
@@ -2176,7 +2194,7 @@ $endif
getPropertyValue('border-image-width');
/** Sets the value of "border-image-width" */
- set borderImageWidth(String value) {
+ void set borderImageWidth(String value) {
setProperty('border-image-width', value, '');
}
@@ -2185,7 +2203,7 @@ $endif
getPropertyValue('border-left');
/** Sets the value of "border-left" */
- set borderLeft(String value) {
+ void set borderLeft(String value) {
setProperty('border-left', value, '');
}
@@ -2194,7 +2212,7 @@ $endif
getPropertyValue('border-left-color');
/** Sets the value of "border-left-color" */
- set borderLeftColor(String value) {
+ void set borderLeftColor(String value) {
setProperty('border-left-color', value, '');
}
@@ -2203,7 +2221,7 @@ $endif
getPropertyValue('border-left-style');
/** Sets the value of "border-left-style" */
- set borderLeftStyle(String value) {
+ void set borderLeftStyle(String value) {
setProperty('border-left-style', value, '');
}
@@ -2212,7 +2230,7 @@ $endif
getPropertyValue('border-left-width');
/** Sets the value of "border-left-width" */
- set borderLeftWidth(String value) {
+ void set borderLeftWidth(String value) {
setProperty('border-left-width', value, '');
}
@@ -2221,7 +2239,7 @@ $endif
getPropertyValue('border-radius');
/** Sets the value of "border-radius" */
- set borderRadius(String value) {
+ void set borderRadius(String value) {
setProperty('border-radius', value, '');
}
@@ -2230,7 +2248,7 @@ $endif
getPropertyValue('border-right');
/** Sets the value of "border-right" */
- set borderRight(String value) {
+ void set borderRight(String value) {
setProperty('border-right', value, '');
}
@@ -2239,7 +2257,7 @@ $endif
getPropertyValue('border-right-color');
/** Sets the value of "border-right-color" */
- set borderRightColor(String value) {
+ void set borderRightColor(String value) {
setProperty('border-right-color', value, '');
}
@@ -2248,7 +2266,7 @@ $endif
getPropertyValue('border-right-style');
/** Sets the value of "border-right-style" */
- set borderRightStyle(String value) {
+ void set borderRightStyle(String value) {
setProperty('border-right-style', value, '');
}
@@ -2257,7 +2275,7 @@ $endif
getPropertyValue('border-right-width');
/** Sets the value of "border-right-width" */
- set borderRightWidth(String value) {
+ void set borderRightWidth(String value) {
setProperty('border-right-width', value, '');
}
@@ -2266,7 +2284,7 @@ $endif
getPropertyValue('border-spacing');
/** Sets the value of "border-spacing" */
- set borderSpacing(String value) {
+ void set borderSpacing(String value) {
setProperty('border-spacing', value, '');
}
@@ -2275,7 +2293,7 @@ $endif
getPropertyValue('border-start');
/** Sets the value of "border-start" */
- set borderStart(String value) {
+ void set borderStart(String value) {
setProperty('border-start', value, '');
}
@@ -2284,7 +2302,7 @@ $endif
getPropertyValue('border-start-color');
/** Sets the value of "border-start-color" */
- set borderStartColor(String value) {
+ void set borderStartColor(String value) {
setProperty('border-start-color', value, '');
}
@@ -2293,7 +2311,7 @@ $endif
getPropertyValue('border-start-style');
/** Sets the value of "border-start-style" */
- set borderStartStyle(String value) {
+ void set borderStartStyle(String value) {
setProperty('border-start-style', value, '');
}
@@ -2302,7 +2320,7 @@ $endif
getPropertyValue('border-start-width');
/** Sets the value of "border-start-width" */
- set borderStartWidth(String value) {
+ void set borderStartWidth(String value) {
setProperty('border-start-width', value, '');
}
@@ -2311,7 +2329,7 @@ $endif
getPropertyValue('border-style');
/** Sets the value of "border-style" */
- set borderStyle(String value) {
+ void set borderStyle(String value) {
setProperty('border-style', value, '');
}
@@ -2320,7 +2338,7 @@ $endif
getPropertyValue('border-top');
/** Sets the value of "border-top" */
- set borderTop(String value) {
+ void set borderTop(String value) {
setProperty('border-top', value, '');
}
@@ -2329,7 +2347,7 @@ $endif
getPropertyValue('border-top-color');
/** Sets the value of "border-top-color" */
- set borderTopColor(String value) {
+ void set borderTopColor(String value) {
setProperty('border-top-color', value, '');
}
@@ -2338,7 +2356,7 @@ $endif
getPropertyValue('border-top-left-radius');
/** Sets the value of "border-top-left-radius" */
- set borderTopLeftRadius(String value) {
+ void set borderTopLeftRadius(String value) {
setProperty('border-top-left-radius', value, '');
}
@@ -2347,7 +2365,7 @@ $endif
getPropertyValue('border-top-right-radius');
/** Sets the value of "border-top-right-radius" */
- set borderTopRightRadius(String value) {
+ void set borderTopRightRadius(String value) {
setProperty('border-top-right-radius', value, '');
}
@@ -2356,7 +2374,7 @@ $endif
getPropertyValue('border-top-style');
/** Sets the value of "border-top-style" */
- set borderTopStyle(String value) {
+ void set borderTopStyle(String value) {
setProperty('border-top-style', value, '');
}
@@ -2365,7 +2383,7 @@ $endif
getPropertyValue('border-top-width');
/** Sets the value of "border-top-width" */
- set borderTopWidth(String value) {
+ void set borderTopWidth(String value) {
setProperty('border-top-width', value, '');
}
@@ -2374,7 +2392,7 @@ $endif
getPropertyValue('border-vertical-spacing');
/** Sets the value of "border-vertical-spacing" */
- set borderVerticalSpacing(String value) {
+ void set borderVerticalSpacing(String value) {
setProperty('border-vertical-spacing', value, '');
}
@@ -2383,7 +2401,7 @@ $endif
getPropertyValue('border-width');
/** Sets the value of "border-width" */
- set borderWidth(String value) {
+ void set borderWidth(String value) {
setProperty('border-width', value, '');
}
@@ -2392,7 +2410,7 @@ $endif
getPropertyValue('bottom');
/** Sets the value of "bottom" */
- set bottom(String value) {
+ void set bottom(String value) {
setProperty('bottom', value, '');
}
@@ -2401,7 +2419,7 @@ $endif
getPropertyValue('box-align');
/** Sets the value of "box-align" */
- set boxAlign(String value) {
+ void set boxAlign(String value) {
setProperty('box-align', value, '');
}
@@ -2410,7 +2428,7 @@ $endif
getPropertyValue('box-decoration-break');
/** Sets the value of "box-decoration-break" */
- set boxDecorationBreak(String value) {
+ void set boxDecorationBreak(String value) {
setProperty('box-decoration-break', value, '');
}
@@ -2419,7 +2437,7 @@ $endif
getPropertyValue('box-direction');
/** Sets the value of "box-direction" */
- set boxDirection(String value) {
+ void set boxDirection(String value) {
setProperty('box-direction', value, '');
}
@@ -2428,7 +2446,7 @@ $endif
getPropertyValue('box-flex');
/** Sets the value of "box-flex" */
- set boxFlex(String value) {
+ void set boxFlex(String value) {
setProperty('box-flex', value, '');
}
@@ -2437,7 +2455,7 @@ $endif
getPropertyValue('box-flex-group');
/** Sets the value of "box-flex-group" */
- set boxFlexGroup(String value) {
+ void set boxFlexGroup(String value) {
setProperty('box-flex-group', value, '');
}
@@ -2446,7 +2464,7 @@ $endif
getPropertyValue('box-lines');
/** Sets the value of "box-lines" */
- set boxLines(String value) {
+ void set boxLines(String value) {
setProperty('box-lines', value, '');
}
@@ -2455,7 +2473,7 @@ $endif
getPropertyValue('box-ordinal-group');
/** Sets the value of "box-ordinal-group" */
- set boxOrdinalGroup(String value) {
+ void set boxOrdinalGroup(String value) {
setProperty('box-ordinal-group', value, '');
}
@@ -2464,7 +2482,7 @@ $endif
getPropertyValue('box-orient');
/** Sets the value of "box-orient" */
- set boxOrient(String value) {
+ void set boxOrient(String value) {
setProperty('box-orient', value, '');
}
@@ -2473,7 +2491,7 @@ $endif
getPropertyValue('box-pack');
/** Sets the value of "box-pack" */
- set boxPack(String value) {
+ void set boxPack(String value) {
setProperty('box-pack', value, '');
}
@@ -2482,7 +2500,7 @@ $endif
getPropertyValue('box-reflect');
/** Sets the value of "box-reflect" */
- set boxReflect(String value) {
+ void set boxReflect(String value) {
setProperty('box-reflect', value, '');
}
@@ -2491,7 +2509,7 @@ $endif
getPropertyValue('box-shadow');
/** Sets the value of "box-shadow" */
- set boxShadow(String value) {
+ void set boxShadow(String value) {
setProperty('box-shadow', value, '');
}
@@ -2500,7 +2518,7 @@ $endif
getPropertyValue('box-sizing');
/** Sets the value of "box-sizing" */
- set boxSizing(String value) {
+ void set boxSizing(String value) {
setProperty('box-sizing', value, '');
}
@@ -2509,7 +2527,7 @@ $endif
getPropertyValue('caption-side');
/** Sets the value of "caption-side" */
- set captionSide(String value) {
+ void set captionSide(String value) {
setProperty('caption-side', value, '');
}
@@ -2518,7 +2536,7 @@ $endif
getPropertyValue('clear');
/** Sets the value of "clear" */
- set clear(String value) {
+ void set clear(String value) {
setProperty('clear', value, '');
}
@@ -2527,7 +2545,7 @@ $endif
getPropertyValue('clip');
/** Sets the value of "clip" */
- set clip(String value) {
+ void set clip(String value) {
setProperty('clip', value, '');
}
@@ -2536,7 +2554,7 @@ $endif
getPropertyValue('clip-path');
/** Sets the value of "clip-path" */
- set clipPath(String value) {
+ void set clipPath(String value) {
setProperty('clip-path', value, '');
}
@@ -2545,7 +2563,7 @@ $endif
getPropertyValue('color');
/** Sets the value of "color" */
- set color(String value) {
+ void set color(String value) {
setProperty('color', value, '');
}
@@ -2554,7 +2572,7 @@ $endif
getPropertyValue('column-break-after');
/** Sets the value of "column-break-after" */
- set columnBreakAfter(String value) {
+ void set columnBreakAfter(String value) {
setProperty('column-break-after', value, '');
}
@@ -2563,7 +2581,7 @@ $endif
getPropertyValue('column-break-before');
/** Sets the value of "column-break-before" */
- set columnBreakBefore(String value) {
+ void set columnBreakBefore(String value) {
setProperty('column-break-before', value, '');
}
@@ -2572,7 +2590,7 @@ $endif
getPropertyValue('column-break-inside');
/** Sets the value of "column-break-inside" */
- set columnBreakInside(String value) {
+ void set columnBreakInside(String value) {
setProperty('column-break-inside', value, '');
}
@@ -2581,7 +2599,7 @@ $endif
getPropertyValue('column-count');
/** Sets the value of "column-count" */
- set columnCount(String value) {
+ void set columnCount(String value) {
setProperty('column-count', value, '');
}
@@ -2590,7 +2608,7 @@ $endif
getPropertyValue('column-fill');
/** Sets the value of "column-fill" */
- set columnFill(String value) {
+ void set columnFill(String value) {
setProperty('column-fill', value, '');
}
@@ -2599,7 +2617,7 @@ $endif
getPropertyValue('column-gap');
/** Sets the value of "column-gap" */
- set columnGap(String value) {
+ void set columnGap(String value) {
setProperty('column-gap', value, '');
}
@@ -2608,7 +2626,7 @@ $endif
getPropertyValue('column-rule');
/** Sets the value of "column-rule" */
- set columnRule(String value) {
+ void set columnRule(String value) {
setProperty('column-rule', value, '');
}
@@ -2617,7 +2635,7 @@ $endif
getPropertyValue('column-rule-color');
/** Sets the value of "column-rule-color" */
- set columnRuleColor(String value) {
+ void set columnRuleColor(String value) {
setProperty('column-rule-color', value, '');
}
@@ -2626,7 +2644,7 @@ $endif
getPropertyValue('column-rule-style');
/** Sets the value of "column-rule-style" */
- set columnRuleStyle(String value) {
+ void set columnRuleStyle(String value) {
setProperty('column-rule-style', value, '');
}
@@ -2635,7 +2653,7 @@ $endif
getPropertyValue('column-rule-width');
/** Sets the value of "column-rule-width" */
- set columnRuleWidth(String value) {
+ void set columnRuleWidth(String value) {
setProperty('column-rule-width', value, '');
}
@@ -2644,7 +2662,7 @@ $endif
getPropertyValue('column-span');
/** Sets the value of "column-span" */
- set columnSpan(String value) {
+ void set columnSpan(String value) {
setProperty('column-span', value, '');
}
@@ -2653,7 +2671,7 @@ $endif
getPropertyValue('column-width');
/** Sets the value of "column-width" */
- set columnWidth(String value) {
+ void set columnWidth(String value) {
setProperty('column-width', value, '');
}
@@ -2662,7 +2680,7 @@ $endif
getPropertyValue('columns');
/** Sets the value of "columns" */
- set columns(String value) {
+ void set columns(String value) {
setProperty('columns', value, '');
}
@@ -2671,7 +2689,7 @@ $endif
getPropertyValue('content');
/** Sets the value of "content" */
- set content(String value) {
+ void set content(String value) {
setProperty('content', value, '');
}
@@ -2680,7 +2698,7 @@ $endif
getPropertyValue('counter-increment');
/** Sets the value of "counter-increment" */
- set counterIncrement(String value) {
+ void set counterIncrement(String value) {
setProperty('counter-increment', value, '');
}
@@ -2689,7 +2707,7 @@ $endif
getPropertyValue('counter-reset');
/** Sets the value of "counter-reset" */
- set counterReset(String value) {
+ void set counterReset(String value) {
setProperty('counter-reset', value, '');
}
@@ -2698,7 +2716,7 @@ $endif
getPropertyValue('cursor');
/** Sets the value of "cursor" */
- set cursor(String value) {
+ void set cursor(String value) {
setProperty('cursor', value, '');
}
@@ -2707,7 +2725,7 @@ $endif
getPropertyValue('direction');
/** Sets the value of "direction" */
- set direction(String value) {
+ void set direction(String value) {
setProperty('direction', value, '');
}
@@ -2716,7 +2734,7 @@ $endif
getPropertyValue('display');
/** Sets the value of "display" */
- set display(String value) {
+ void set display(String value) {
setProperty('display', value, '');
}
@@ -2725,7 +2743,7 @@ $endif
getPropertyValue('empty-cells');
/** Sets the value of "empty-cells" */
- set emptyCells(String value) {
+ void set emptyCells(String value) {
setProperty('empty-cells', value, '');
}
@@ -2734,7 +2752,7 @@ $endif
getPropertyValue('filter');
/** Sets the value of "filter" */
- set filter(String value) {
+ void set filter(String value) {
setProperty('filter', value, '');
}
@@ -2743,7 +2761,7 @@ $endif
getPropertyValue('flex');
/** Sets the value of "flex" */
- set flex(String value) {
+ void set flex(String value) {
setProperty('flex', value, '');
}
@@ -2752,7 +2770,7 @@ $endif
getPropertyValue('flex-basis');
/** Sets the value of "flex-basis" */
- set flexBasis(String value) {
+ void set flexBasis(String value) {
setProperty('flex-basis', value, '');
}
@@ -2761,7 +2779,7 @@ $endif
getPropertyValue('flex-direction');
/** Sets the value of "flex-direction" */
- set flexDirection(String value) {
+ void set flexDirection(String value) {
setProperty('flex-direction', value, '');
}
@@ -2770,7 +2788,7 @@ $endif
getPropertyValue('flex-flow');
/** Sets the value of "flex-flow" */
- set flexFlow(String value) {
+ void set flexFlow(String value) {
setProperty('flex-flow', value, '');
}
@@ -2779,7 +2797,7 @@ $endif
getPropertyValue('flex-grow');
/** Sets the value of "flex-grow" */
- set flexGrow(String value) {
+ void set flexGrow(String value) {
setProperty('flex-grow', value, '');
}
@@ -2788,7 +2806,7 @@ $endif
getPropertyValue('flex-shrink');
/** Sets the value of "flex-shrink" */
- set flexShrink(String value) {
+ void set flexShrink(String value) {
setProperty('flex-shrink', value, '');
}
@@ -2797,7 +2815,7 @@ $endif
getPropertyValue('flex-wrap');
/** Sets the value of "flex-wrap" */
- set flexWrap(String value) {
+ void set flexWrap(String value) {
setProperty('flex-wrap', value, '');
}
@@ -2806,7 +2824,7 @@ $endif
getPropertyValue('float');
/** Sets the value of "float" */
- set float(String value) {
+ void set float(String value) {
setProperty('float', value, '');
}
@@ -2815,7 +2833,7 @@ $endif
getPropertyValue('font');
/** Sets the value of "font" */
- set font(String value) {
+ void set font(String value) {
setProperty('font', value, '');
}
@@ -2824,7 +2842,7 @@ $endif
getPropertyValue('font-family');
/** Sets the value of "font-family" */
- set fontFamily(String value) {
+ void set fontFamily(String value) {
setProperty('font-family', value, '');
}
@@ -2833,7 +2851,7 @@ $endif
getPropertyValue('font-feature-settings');
/** Sets the value of "font-feature-settings" */
- set fontFeatureSettings(String value) {
+ void set fontFeatureSettings(String value) {
setProperty('font-feature-settings', value, '');
}
@@ -2842,7 +2860,7 @@ $endif
getPropertyValue('font-kerning');
/** Sets the value of "font-kerning" */
- set fontKerning(String value) {
+ void set fontKerning(String value) {
setProperty('font-kerning', value, '');
}
@@ -2851,7 +2869,7 @@ $endif
getPropertyValue('font-size');
/** Sets the value of "font-size" */
- set fontSize(String value) {
+ void set fontSize(String value) {
setProperty('font-size', value, '');
}
@@ -2860,7 +2878,7 @@ $endif
getPropertyValue('font-size-delta');
/** Sets the value of "font-size-delta" */
- set fontSizeDelta(String value) {
+ void set fontSizeDelta(String value) {
setProperty('font-size-delta', value, '');
}
@@ -2869,7 +2887,7 @@ $endif
getPropertyValue('font-smoothing');
/** Sets the value of "font-smoothing" */
- set fontSmoothing(String value) {
+ void set fontSmoothing(String value) {
setProperty('font-smoothing', value, '');
}
@@ -2878,7 +2896,7 @@ $endif
getPropertyValue('font-stretch');
/** Sets the value of "font-stretch" */
- set fontStretch(String value) {
+ void set fontStretch(String value) {
setProperty('font-stretch', value, '');
}
@@ -2887,7 +2905,7 @@ $endif
getPropertyValue('font-style');
/** Sets the value of "font-style" */
- set fontStyle(String value) {
+ void set fontStyle(String value) {
setProperty('font-style', value, '');
}
@@ -2896,7 +2914,7 @@ $endif
getPropertyValue('font-variant');
/** Sets the value of "font-variant" */
- set fontVariant(String value) {
+ void set fontVariant(String value) {
setProperty('font-variant', value, '');
}
@@ -2905,7 +2923,7 @@ $endif
getPropertyValue('font-variant-ligatures');
/** Sets the value of "font-variant-ligatures" */
- set fontVariantLigatures(String value) {
+ void set fontVariantLigatures(String value) {
setProperty('font-variant-ligatures', value, '');
}
@@ -2914,7 +2932,7 @@ $endif
getPropertyValue('font-weight');
/** Sets the value of "font-weight" */
- set fontWeight(String value) {
+ void set fontWeight(String value) {
setProperty('font-weight', value, '');
}
@@ -2923,7 +2941,7 @@ $endif
getPropertyValue('grid');
/** Sets the value of "grid" */
- set grid(String value) {
+ void set grid(String value) {
setProperty('grid', value, '');
}
@@ -2932,7 +2950,7 @@ $endif
getPropertyValue('grid-area');
/** Sets the value of "grid-area" */
- set gridArea(String value) {
+ void set gridArea(String value) {
setProperty('grid-area', value, '');
}
@@ -2941,7 +2959,7 @@ $endif
getPropertyValue('grid-auto-columns');
/** Sets the value of "grid-auto-columns" */
- set gridAutoColumns(String value) {
+ void set gridAutoColumns(String value) {
setProperty('grid-auto-columns', value, '');
}
@@ -2950,7 +2968,7 @@ $endif
getPropertyValue('grid-auto-flow');
/** Sets the value of "grid-auto-flow" */
- set gridAutoFlow(String value) {
+ void set gridAutoFlow(String value) {
setProperty('grid-auto-flow', value, '');
}
@@ -2959,7 +2977,7 @@ $endif
getPropertyValue('grid-auto-rows');
/** Sets the value of "grid-auto-rows" */
- set gridAutoRows(String value) {
+ void set gridAutoRows(String value) {
setProperty('grid-auto-rows', value, '');
}
@@ -2968,7 +2986,7 @@ $endif
getPropertyValue('grid-column');
/** Sets the value of "grid-column" */
- set gridColumn(String value) {
+ void set gridColumn(String value) {
setProperty('grid-column', value, '');
}
@@ -2977,7 +2995,7 @@ $endif
getPropertyValue('grid-column-end');
/** Sets the value of "grid-column-end" */
- set gridColumnEnd(String value) {
+ void set gridColumnEnd(String value) {
setProperty('grid-column-end', value, '');
}
@@ -2986,7 +3004,7 @@ $endif
getPropertyValue('grid-column-start');
/** Sets the value of "grid-column-start" */
- set gridColumnStart(String value) {
+ void set gridColumnStart(String value) {
setProperty('grid-column-start', value, '');
}
@@ -2995,7 +3013,7 @@ $endif
getPropertyValue('grid-row');
/** Sets the value of "grid-row" */
- set gridRow(String value) {
+ void set gridRow(String value) {
setProperty('grid-row', value, '');
}
@@ -3004,7 +3022,7 @@ $endif
getPropertyValue('grid-row-end');
/** Sets the value of "grid-row-end" */
- set gridRowEnd(String value) {
+ void set gridRowEnd(String value) {
setProperty('grid-row-end', value, '');
}
@@ -3013,7 +3031,7 @@ $endif
getPropertyValue('grid-row-start');
/** Sets the value of "grid-row-start" */
- set gridRowStart(String value) {
+ void set gridRowStart(String value) {
setProperty('grid-row-start', value, '');
}
@@ -3022,7 +3040,7 @@ $endif
getPropertyValue('grid-template');
/** Sets the value of "grid-template" */
- set gridTemplate(String value) {
+ void set gridTemplate(String value) {
setProperty('grid-template', value, '');
}
@@ -3031,7 +3049,7 @@ $endif
getPropertyValue('grid-template-areas');
/** Sets the value of "grid-template-areas" */
- set gridTemplateAreas(String value) {
+ void set gridTemplateAreas(String value) {
setProperty('grid-template-areas', value, '');
}
@@ -3040,7 +3058,7 @@ $endif
getPropertyValue('grid-template-columns');
/** Sets the value of "grid-template-columns" */
- set gridTemplateColumns(String value) {
+ void set gridTemplateColumns(String value) {
setProperty('grid-template-columns', value, '');
}
@@ -3049,7 +3067,7 @@ $endif
getPropertyValue('grid-template-rows');
/** Sets the value of "grid-template-rows" */
- set gridTemplateRows(String value) {
+ void set gridTemplateRows(String value) {
setProperty('grid-template-rows', value, '');
}
@@ -3058,7 +3076,7 @@ $endif
getPropertyValue('height');
/** Sets the value of "height" */
- set height(String value) {
+ void set height(String value) {
setProperty('height', value, '');
}
@@ -3067,7 +3085,7 @@ $endif
getPropertyValue('highlight');
/** Sets the value of "highlight" */
- set highlight(String value) {
+ void set highlight(String value) {
setProperty('highlight', value, '');
}
@@ -3076,7 +3094,7 @@ $endif
getPropertyValue('hyphenate-character');
/** Sets the value of "hyphenate-character" */
- set hyphenateCharacter(String value) {
+ void set hyphenateCharacter(String value) {
setProperty('hyphenate-character', value, '');
}
@@ -3085,7 +3103,7 @@ $endif
getPropertyValue('image-rendering');
/** Sets the value of "image-rendering" */
- set imageRendering(String value) {
+ void set imageRendering(String value) {
setProperty('image-rendering', value, '');
}
@@ -3094,7 +3112,7 @@ $endif
getPropertyValue('isolation');
/** Sets the value of "isolation" */
- set isolation(String value) {
+ void set isolation(String value) {
setProperty('isolation', value, '');
}
@@ -3103,7 +3121,7 @@ $endif
getPropertyValue('justify-content');
/** Sets the value of "justify-content" */
- set justifyContent(String value) {
+ void set justifyContent(String value) {
setProperty('justify-content', value, '');
}
@@ -3112,7 +3130,7 @@ $endif
getPropertyValue('justify-self');
/** Sets the value of "justify-self" */
- set justifySelf(String value) {
+ void set justifySelf(String value) {
setProperty('justify-self', value, '');
}
@@ -3121,7 +3139,7 @@ $endif
getPropertyValue('left');
/** Sets the value of "left" */
- set left(String value) {
+ void set left(String value) {
setProperty('left', value, '');
}
@@ -3130,7 +3148,7 @@ $endif
getPropertyValue('letter-spacing');
/** Sets the value of "letter-spacing" */
- set letterSpacing(String value) {
+ void set letterSpacing(String value) {
setProperty('letter-spacing', value, '');
}
@@ -3139,7 +3157,7 @@ $endif
getPropertyValue('line-box-contain');
/** Sets the value of "line-box-contain" */
- set lineBoxContain(String value) {
+ void set lineBoxContain(String value) {
setProperty('line-box-contain', value, '');
}
@@ -3148,7 +3166,7 @@ $endif
getPropertyValue('line-break');
/** Sets the value of "line-break" */
- set lineBreak(String value) {
+ void set lineBreak(String value) {
setProperty('line-break', value, '');
}
@@ -3157,7 +3175,7 @@ $endif
getPropertyValue('line-clamp');
/** Sets the value of "line-clamp" */
- set lineClamp(String value) {
+ void set lineClamp(String value) {
setProperty('line-clamp', value, '');
}
@@ -3166,7 +3184,7 @@ $endif
getPropertyValue('line-height');
/** Sets the value of "line-height" */
- set lineHeight(String value) {
+ void set lineHeight(String value) {
setProperty('line-height', value, '');
}
@@ -3175,7 +3193,7 @@ $endif
getPropertyValue('list-style');
/** Sets the value of "list-style" */
- set listStyle(String value) {
+ void set listStyle(String value) {
setProperty('list-style', value, '');
}
@@ -3184,7 +3202,7 @@ $endif
getPropertyValue('list-style-image');
/** Sets the value of "list-style-image" */
- set listStyleImage(String value) {
+ void set listStyleImage(String value) {
setProperty('list-style-image', value, '');
}
@@ -3193,7 +3211,7 @@ $endif
getPropertyValue('list-style-position');
/** Sets the value of "list-style-position" */
- set listStylePosition(String value) {
+ void set listStylePosition(String value) {
setProperty('list-style-position', value, '');
}
@@ -3202,7 +3220,7 @@ $endif
getPropertyValue('list-style-type');
/** Sets the value of "list-style-type" */
- set listStyleType(String value) {
+ void set listStyleType(String value) {
setProperty('list-style-type', value, '');
}
@@ -3211,7 +3229,7 @@ $endif
getPropertyValue('locale');
/** Sets the value of "locale" */
- set locale(String value) {
+ void set locale(String value) {
setProperty('locale', value, '');
}
@@ -3220,7 +3238,7 @@ $endif
getPropertyValue('logical-height');
/** Sets the value of "logical-height" */
- set logicalHeight(String value) {
+ void set logicalHeight(String value) {
setProperty('logical-height', value, '');
}
@@ -3229,7 +3247,7 @@ $endif
getPropertyValue('logical-width');
/** Sets the value of "logical-width" */
- set logicalWidth(String value) {
+ void set logicalWidth(String value) {
setProperty('logical-width', value, '');
}
@@ -3238,7 +3256,7 @@ $endif
getPropertyValue('margin');
/** Sets the value of "margin" */
- set margin(String value) {
+ void set margin(String value) {
setProperty('margin', value, '');
}
@@ -3247,7 +3265,7 @@ $endif
getPropertyValue('margin-after');
/** Sets the value of "margin-after" */
- set marginAfter(String value) {
+ void set marginAfter(String value) {
setProperty('margin-after', value, '');
}
@@ -3256,7 +3274,7 @@ $endif
getPropertyValue('margin-after-collapse');
/** Sets the value of "margin-after-collapse" */
- set marginAfterCollapse(String value) {
+ void set marginAfterCollapse(String value) {
setProperty('margin-after-collapse', value, '');
}
@@ -3265,7 +3283,7 @@ $endif
getPropertyValue('margin-before');
/** Sets the value of "margin-before" */
- set marginBefore(String value) {
+ void set marginBefore(String value) {
setProperty('margin-before', value, '');
}
@@ -3274,7 +3292,7 @@ $endif
getPropertyValue('margin-before-collapse');
/** Sets the value of "margin-before-collapse" */
- set marginBeforeCollapse(String value) {
+ void set marginBeforeCollapse(String value) {
setProperty('margin-before-collapse', value, '');
}
@@ -3283,7 +3301,7 @@ $endif
getPropertyValue('margin-bottom');
/** Sets the value of "margin-bottom" */
- set marginBottom(String value) {
+ void set marginBottom(String value) {
setProperty('margin-bottom', value, '');
}
@@ -3292,7 +3310,7 @@ $endif
getPropertyValue('margin-bottom-collapse');
/** Sets the value of "margin-bottom-collapse" */
- set marginBottomCollapse(String value) {
+ void set marginBottomCollapse(String value) {
setProperty('margin-bottom-collapse', value, '');
}
@@ -3301,7 +3319,7 @@ $endif
getPropertyValue('margin-collapse');
/** Sets the value of "margin-collapse" */
- set marginCollapse(String value) {
+ void set marginCollapse(String value) {
setProperty('margin-collapse', value, '');
}
@@ -3310,7 +3328,7 @@ $endif
getPropertyValue('margin-end');
/** Sets the value of "margin-end" */
- set marginEnd(String value) {
+ void set marginEnd(String value) {
setProperty('margin-end', value, '');
}
@@ -3319,7 +3337,7 @@ $endif
getPropertyValue('margin-left');
/** Sets the value of "margin-left" */
- set marginLeft(String value) {
+ void set marginLeft(String value) {
setProperty('margin-left', value, '');
}
@@ -3328,7 +3346,7 @@ $endif
getPropertyValue('margin-right');
/** Sets the value of "margin-right" */
- set marginRight(String value) {
+ void set marginRight(String value) {
setProperty('margin-right', value, '');
}
@@ -3337,7 +3355,7 @@ $endif
getPropertyValue('margin-start');
/** Sets the value of "margin-start" */
- set marginStart(String value) {
+ void set marginStart(String value) {
setProperty('margin-start', value, '');
}
@@ -3346,7 +3364,7 @@ $endif
getPropertyValue('margin-top');
/** Sets the value of "margin-top" */
- set marginTop(String value) {
+ void set marginTop(String value) {
setProperty('margin-top', value, '');
}
@@ -3355,7 +3373,7 @@ $endif
getPropertyValue('margin-top-collapse');
/** Sets the value of "margin-top-collapse" */
- set marginTopCollapse(String value) {
+ void set marginTopCollapse(String value) {
setProperty('margin-top-collapse', value, '');
}
@@ -3364,7 +3382,7 @@ $endif
getPropertyValue('mask');
/** Sets the value of "mask" */
- set mask(String value) {
+ void set mask(String value) {
setProperty('mask', value, '');
}
@@ -3373,7 +3391,7 @@ $endif
getPropertyValue('mask-box-image');
/** Sets the value of "mask-box-image" */
- set maskBoxImage(String value) {
+ void set maskBoxImage(String value) {
setProperty('mask-box-image', value, '');
}
@@ -3382,7 +3400,7 @@ $endif
getPropertyValue('mask-box-image-outset');
/** Sets the value of "mask-box-image-outset" */
- set maskBoxImageOutset(String value) {
+ void set maskBoxImageOutset(String value) {
setProperty('mask-box-image-outset', value, '');
}
@@ -3391,7 +3409,7 @@ $endif
getPropertyValue('mask-box-image-repeat');
/** Sets the value of "mask-box-image-repeat" */
- set maskBoxImageRepeat(String value) {
+ void set maskBoxImageRepeat(String value) {
setProperty('mask-box-image-repeat', value, '');
}
@@ -3400,7 +3418,7 @@ $endif
getPropertyValue('mask-box-image-slice');
/** Sets the value of "mask-box-image-slice" */
- set maskBoxImageSlice(String value) {
+ void set maskBoxImageSlice(String value) {
setProperty('mask-box-image-slice', value, '');
}
@@ -3409,7 +3427,7 @@ $endif
getPropertyValue('mask-box-image-source');
/** Sets the value of "mask-box-image-source" */
- set maskBoxImageSource(String value) {
+ void set maskBoxImageSource(String value) {
setProperty('mask-box-image-source', value, '');
}
@@ -3418,7 +3436,7 @@ $endif
getPropertyValue('mask-box-image-width');
/** Sets the value of "mask-box-image-width" */
- set maskBoxImageWidth(String value) {
+ void set maskBoxImageWidth(String value) {
setProperty('mask-box-image-width', value, '');
}
@@ -3427,7 +3445,7 @@ $endif
getPropertyValue('mask-clip');
/** Sets the value of "mask-clip" */
- set maskClip(String value) {
+ void set maskClip(String value) {
setProperty('mask-clip', value, '');
}
@@ -3436,7 +3454,7 @@ $endif
getPropertyValue('mask-composite');
/** Sets the value of "mask-composite" */
- set maskComposite(String value) {
+ void set maskComposite(String value) {
setProperty('mask-composite', value, '');
}
@@ -3445,7 +3463,7 @@ $endif
getPropertyValue('mask-image');
/** Sets the value of "mask-image" */
- set maskImage(String value) {
+ void set maskImage(String value) {
setProperty('mask-image', value, '');
}
@@ -3454,7 +3472,7 @@ $endif
getPropertyValue('mask-origin');
/** Sets the value of "mask-origin" */
- set maskOrigin(String value) {
+ void set maskOrigin(String value) {
setProperty('mask-origin', value, '');
}
@@ -3463,7 +3481,7 @@ $endif
getPropertyValue('mask-position');
/** Sets the value of "mask-position" */
- set maskPosition(String value) {
+ void set maskPosition(String value) {
setProperty('mask-position', value, '');
}
@@ -3472,7 +3490,7 @@ $endif
getPropertyValue('mask-position-x');
/** Sets the value of "mask-position-x" */
- set maskPositionX(String value) {
+ void set maskPositionX(String value) {
setProperty('mask-position-x', value, '');
}
@@ -3481,7 +3499,7 @@ $endif
getPropertyValue('mask-position-y');
/** Sets the value of "mask-position-y" */
- set maskPositionY(String value) {
+ void set maskPositionY(String value) {
setProperty('mask-position-y', value, '');
}
@@ -3490,7 +3508,7 @@ $endif
getPropertyValue('mask-repeat');
/** Sets the value of "mask-repeat" */
- set maskRepeat(String value) {
+ void set maskRepeat(String value) {
setProperty('mask-repeat', value, '');
}
@@ -3499,7 +3517,7 @@ $endif
getPropertyValue('mask-repeat-x');
/** Sets the value of "mask-repeat-x" */
- set maskRepeatX(String value) {
+ void set maskRepeatX(String value) {
setProperty('mask-repeat-x', value, '');
}
@@ -3508,7 +3526,7 @@ $endif
getPropertyValue('mask-repeat-y');
/** Sets the value of "mask-repeat-y" */
- set maskRepeatY(String value) {
+ void set maskRepeatY(String value) {
setProperty('mask-repeat-y', value, '');
}
@@ -3517,7 +3535,7 @@ $endif
getPropertyValue('mask-size');
/** Sets the value of "mask-size" */
- set maskSize(String value) {
+ void set maskSize(String value) {
setProperty('mask-size', value, '');
}
@@ -3526,7 +3544,7 @@ $endif
getPropertyValue('mask-source-type');
/** Sets the value of "mask-source-type" */
- set maskSourceType(String value) {
+ void set maskSourceType(String value) {
setProperty('mask-source-type', value, '');
}
@@ -3535,7 +3553,7 @@ $endif
getPropertyValue('max-height');
/** Sets the value of "max-height" */
- set maxHeight(String value) {
+ void set maxHeight(String value) {
setProperty('max-height', value, '');
}
@@ -3544,7 +3562,7 @@ $endif
getPropertyValue('max-logical-height');
/** Sets the value of "max-logical-height" */
- set maxLogicalHeight(String value) {
+ void set maxLogicalHeight(String value) {
setProperty('max-logical-height', value, '');
}
@@ -3553,7 +3571,7 @@ $endif
getPropertyValue('max-logical-width');
/** Sets the value of "max-logical-width" */
- set maxLogicalWidth(String value) {
+ void set maxLogicalWidth(String value) {
setProperty('max-logical-width', value, '');
}
@@ -3562,7 +3580,7 @@ $endif
getPropertyValue('max-width');
/** Sets the value of "max-width" */
- set maxWidth(String value) {
+ void set maxWidth(String value) {
setProperty('max-width', value, '');
}
@@ -3571,7 +3589,7 @@ $endif
getPropertyValue('max-zoom');
/** Sets the value of "max-zoom" */
- set maxZoom(String value) {
+ void set maxZoom(String value) {
setProperty('max-zoom', value, '');
}
@@ -3580,7 +3598,7 @@ $endif
getPropertyValue('min-height');
/** Sets the value of "min-height" */
- set minHeight(String value) {
+ void set minHeight(String value) {
setProperty('min-height', value, '');
}
@@ -3589,7 +3607,7 @@ $endif
getPropertyValue('min-logical-height');
/** Sets the value of "min-logical-height" */
- set minLogicalHeight(String value) {
+ void set minLogicalHeight(String value) {
setProperty('min-logical-height', value, '');
}
@@ -3598,7 +3616,7 @@ $endif
getPropertyValue('min-logical-width');
/** Sets the value of "min-logical-width" */
- set minLogicalWidth(String value) {
+ void set minLogicalWidth(String value) {
setProperty('min-logical-width', value, '');
}
@@ -3607,7 +3625,7 @@ $endif
getPropertyValue('min-width');
/** Sets the value of "min-width" */
- set minWidth(String value) {
+ void set minWidth(String value) {
setProperty('min-width', value, '');
}
@@ -3616,7 +3634,7 @@ $endif
getPropertyValue('min-zoom');
/** Sets the value of "min-zoom" */
- set minZoom(String value) {
+ void set minZoom(String value) {
setProperty('min-zoom', value, '');
}
@@ -3625,7 +3643,7 @@ $endif
getPropertyValue('mix-blend-mode');
/** Sets the value of "mix-blend-mode" */
- set mixBlendMode(String value) {
+ void set mixBlendMode(String value) {
setProperty('mix-blend-mode', value, '');
}
@@ -3634,7 +3652,7 @@ $endif
getPropertyValue('object-fit');
/** Sets the value of "object-fit" */
- set objectFit(String value) {
+ void set objectFit(String value) {
setProperty('object-fit', value, '');
}
@@ -3643,7 +3661,7 @@ $endif
getPropertyValue('object-position');
/** Sets the value of "object-position" */
- set objectPosition(String value) {
+ void set objectPosition(String value) {
setProperty('object-position', value, '');
}
@@ -3652,7 +3670,7 @@ $endif
getPropertyValue('opacity');
/** Sets the value of "opacity" */
- set opacity(String value) {
+ void set opacity(String value) {
setProperty('opacity', value, '');
}
@@ -3661,7 +3679,7 @@ $endif
getPropertyValue('order');
/** Sets the value of "order" */
- set order(String value) {
+ void set order(String value) {
setProperty('order', value, '');
}
@@ -3670,7 +3688,7 @@ $endif
getPropertyValue('orientation');
/** Sets the value of "orientation" */
- set orientation(String value) {
+ void set orientation(String value) {
setProperty('orientation', value, '');
}
@@ -3679,7 +3697,7 @@ $endif
getPropertyValue('orphans');
/** Sets the value of "orphans" */
- set orphans(String value) {
+ void set orphans(String value) {
setProperty('orphans', value, '');
}
@@ -3688,7 +3706,7 @@ $endif
getPropertyValue('outline');
/** Sets the value of "outline" */
- set outline(String value) {
+ void set outline(String value) {
setProperty('outline', value, '');
}
@@ -3697,7 +3715,7 @@ $endif
getPropertyValue('outline-color');
/** Sets the value of "outline-color" */
- set outlineColor(String value) {
+ void set outlineColor(String value) {
setProperty('outline-color', value, '');
}
@@ -3706,7 +3724,7 @@ $endif
getPropertyValue('outline-offset');
/** Sets the value of "outline-offset" */
- set outlineOffset(String value) {
+ void set outlineOffset(String value) {
setProperty('outline-offset', value, '');
}
@@ -3715,7 +3733,7 @@ $endif
getPropertyValue('outline-style');
/** Sets the value of "outline-style" */
- set outlineStyle(String value) {
+ void set outlineStyle(String value) {
setProperty('outline-style', value, '');
}
@@ -3724,7 +3742,7 @@ $endif
getPropertyValue('outline-width');
/** Sets the value of "outline-width" */
- set outlineWidth(String value) {
+ void set outlineWidth(String value) {
setProperty('outline-width', value, '');
}
@@ -3733,7 +3751,7 @@ $endif
getPropertyValue('overflow');
/** Sets the value of "overflow" */
- set overflow(String value) {
+ void set overflow(String value) {
setProperty('overflow', value, '');
}
@@ -3742,7 +3760,7 @@ $endif
getPropertyValue('overflow-wrap');
/** Sets the value of "overflow-wrap" */
- set overflowWrap(String value) {
+ void set overflowWrap(String value) {
setProperty('overflow-wrap', value, '');
}
@@ -3751,7 +3769,7 @@ $endif
getPropertyValue('overflow-x');
/** Sets the value of "overflow-x" */
- set overflowX(String value) {
+ void set overflowX(String value) {
setProperty('overflow-x', value, '');
}
@@ -3760,7 +3778,7 @@ $endif
getPropertyValue('overflow-y');
/** Sets the value of "overflow-y" */
- set overflowY(String value) {
+ void set overflowY(String value) {
setProperty('overflow-y', value, '');
}
@@ -3769,7 +3787,7 @@ $endif
getPropertyValue('padding');
/** Sets the value of "padding" */
- set padding(String value) {
+ void set padding(String value) {
setProperty('padding', value, '');
}
@@ -3778,7 +3796,7 @@ $endif
getPropertyValue('padding-after');
/** Sets the value of "padding-after" */
- set paddingAfter(String value) {
+ void set paddingAfter(String value) {
setProperty('padding-after', value, '');
}
@@ -3787,7 +3805,7 @@ $endif
getPropertyValue('padding-before');
/** Sets the value of "padding-before" */
- set paddingBefore(String value) {
+ void set paddingBefore(String value) {
setProperty('padding-before', value, '');
}
@@ -3796,7 +3814,7 @@ $endif
getPropertyValue('padding-bottom');
/** Sets the value of "padding-bottom" */
- set paddingBottom(String value) {
+ void set paddingBottom(String value) {
setProperty('padding-bottom', value, '');
}
@@ -3805,7 +3823,7 @@ $endif
getPropertyValue('padding-end');
/** Sets the value of "padding-end" */
- set paddingEnd(String value) {
+ void set paddingEnd(String value) {
setProperty('padding-end', value, '');
}
@@ -3814,7 +3832,7 @@ $endif
getPropertyValue('padding-left');
/** Sets the value of "padding-left" */
- set paddingLeft(String value) {
+ void set paddingLeft(String value) {
setProperty('padding-left', value, '');
}
@@ -3823,7 +3841,7 @@ $endif
getPropertyValue('padding-right');
/** Sets the value of "padding-right" */
- set paddingRight(String value) {
+ void set paddingRight(String value) {
setProperty('padding-right', value, '');
}
@@ -3832,7 +3850,7 @@ $endif
getPropertyValue('padding-start');
/** Sets the value of "padding-start" */
- set paddingStart(String value) {
+ void set paddingStart(String value) {
setProperty('padding-start', value, '');
}
@@ -3841,7 +3859,7 @@ $endif
getPropertyValue('padding-top');
/** Sets the value of "padding-top" */
- set paddingTop(String value) {
+ void set paddingTop(String value) {
setProperty('padding-top', value, '');
}
@@ -3850,7 +3868,7 @@ $endif
getPropertyValue('page');
/** Sets the value of "page" */
- set page(String value) {
+ void set page(String value) {
setProperty('page', value, '');
}
@@ -3859,7 +3877,7 @@ $endif
getPropertyValue('page-break-after');
/** Sets the value of "page-break-after" */
- set pageBreakAfter(String value) {
+ void set pageBreakAfter(String value) {
setProperty('page-break-after', value, '');
}
@@ -3868,7 +3886,7 @@ $endif
getPropertyValue('page-break-before');
/** Sets the value of "page-break-before" */
- set pageBreakBefore(String value) {
+ void set pageBreakBefore(String value) {
setProperty('page-break-before', value, '');
}
@@ -3877,7 +3895,7 @@ $endif
getPropertyValue('page-break-inside');
/** Sets the value of "page-break-inside" */
- set pageBreakInside(String value) {
+ void set pageBreakInside(String value) {
setProperty('page-break-inside', value, '');
}
@@ -3886,7 +3904,7 @@ $endif
getPropertyValue('perspective');
/** Sets the value of "perspective" */
- set perspective(String value) {
+ void set perspective(String value) {
setProperty('perspective', value, '');
}
@@ -3895,7 +3913,7 @@ $endif
getPropertyValue('perspective-origin');
/** Sets the value of "perspective-origin" */
- set perspectiveOrigin(String value) {
+ void set perspectiveOrigin(String value) {
setProperty('perspective-origin', value, '');
}
@@ -3904,7 +3922,7 @@ $endif
getPropertyValue('perspective-origin-x');
/** Sets the value of "perspective-origin-x" */
- set perspectiveOriginX(String value) {
+ void set perspectiveOriginX(String value) {
setProperty('perspective-origin-x', value, '');
}
@@ -3913,7 +3931,7 @@ $endif
getPropertyValue('perspective-origin-y');
/** Sets the value of "perspective-origin-y" */
- set perspectiveOriginY(String value) {
+ void set perspectiveOriginY(String value) {
setProperty('perspective-origin-y', value, '');
}
@@ -3922,7 +3940,7 @@ $endif
getPropertyValue('pointer-events');
/** Sets the value of "pointer-events" */
- set pointerEvents(String value) {
+ void set pointerEvents(String value) {
setProperty('pointer-events', value, '');
}
@@ -3931,7 +3949,7 @@ $endif
getPropertyValue('position');
/** Sets the value of "position" */
- set position(String value) {
+ void set position(String value) {
setProperty('position', value, '');
}
@@ -3940,7 +3958,7 @@ $endif
getPropertyValue('print-color-adjust');
/** Sets the value of "print-color-adjust" */
- set printColorAdjust(String value) {
+ void set printColorAdjust(String value) {
setProperty('print-color-adjust', value, '');
}
@@ -3949,7 +3967,7 @@ $endif
getPropertyValue('quotes');
/** Sets the value of "quotes" */
- set quotes(String value) {
+ void set quotes(String value) {
setProperty('quotes', value, '');
}
@@ -3958,7 +3976,7 @@ $endif
getPropertyValue('resize');
/** Sets the value of "resize" */
- set resize(String value) {
+ void set resize(String value) {
setProperty('resize', value, '');
}
@@ -3967,7 +3985,7 @@ $endif
getPropertyValue('right');
/** Sets the value of "right" */
- set right(String value) {
+ void set right(String value) {
setProperty('right', value, '');
}
@@ -3976,7 +3994,7 @@ $endif
getPropertyValue('rtl-ordering');
/** Sets the value of "rtl-ordering" */
- set rtlOrdering(String value) {
+ void set rtlOrdering(String value) {
setProperty('rtl-ordering', value, '');
}
@@ -3985,7 +4003,7 @@ $endif
getPropertyValue('ruby-position');
/** Sets the value of "ruby-position" */
- set rubyPosition(String value) {
+ void set rubyPosition(String value) {
setProperty('ruby-position', value, '');
}
@@ -3994,7 +4012,7 @@ $endif
getPropertyValue('scroll-behavior');
/** Sets the value of "scroll-behavior" */
- set scrollBehavior(String value) {
+ void set scrollBehavior(String value) {
setProperty('scroll-behavior', value, '');
}
@@ -4003,7 +4021,7 @@ $endif
getPropertyValue('shape-image-threshold');
/** Sets the value of "shape-image-threshold" */
- set shapeImageThreshold(String value) {
+ void set shapeImageThreshold(String value) {
setProperty('shape-image-threshold', value, '');
}
@@ -4012,7 +4030,7 @@ $endif
getPropertyValue('shape-margin');
/** Sets the value of "shape-margin" */
- set shapeMargin(String value) {
+ void set shapeMargin(String value) {
setProperty('shape-margin', value, '');
}
@@ -4021,7 +4039,7 @@ $endif
getPropertyValue('shape-outside');
/** Sets the value of "shape-outside" */
- set shapeOutside(String value) {
+ void set shapeOutside(String value) {
setProperty('shape-outside', value, '');
}
@@ -4030,7 +4048,7 @@ $endif
getPropertyValue('size');
/** Sets the value of "size" */
- set size(String value) {
+ void set size(String value) {
setProperty('size', value, '');
}
@@ -4039,7 +4057,7 @@ $endif
getPropertyValue('speak');
/** Sets the value of "speak" */
- set speak(String value) {
+ void set speak(String value) {
setProperty('speak', value, '');
}
@@ -4048,7 +4066,7 @@ $endif
getPropertyValue('src');
/** Sets the value of "src" */
- set src(String value) {
+ void set src(String value) {
setProperty('src', value, '');
}
@@ -4057,7 +4075,7 @@ $endif
getPropertyValue('tab-size');
/** Sets the value of "tab-size" */
- set tabSize(String value) {
+ void set tabSize(String value) {
setProperty('tab-size', value, '');
}
@@ -4066,7 +4084,7 @@ $endif
getPropertyValue('table-layout');
/** Sets the value of "table-layout" */
- set tableLayout(String value) {
+ void set tableLayout(String value) {
setProperty('table-layout', value, '');
}
@@ -4075,7 +4093,7 @@ $endif
getPropertyValue('tap-highlight-color');
/** Sets the value of "tap-highlight-color" */
- set tapHighlightColor(String value) {
+ void set tapHighlightColor(String value) {
setProperty('tap-highlight-color', value, '');
}
@@ -4084,7 +4102,7 @@ $endif
getPropertyValue('text-align');
/** Sets the value of "text-align" */
- set textAlign(String value) {
+ void set textAlign(String value) {
setProperty('text-align', value, '');
}
@@ -4093,7 +4111,7 @@ $endif
getPropertyValue('text-align-last');
/** Sets the value of "text-align-last" */
- set textAlignLast(String value) {
+ void set textAlignLast(String value) {
setProperty('text-align-last', value, '');
}
@@ -4102,7 +4120,7 @@ $endif
getPropertyValue('text-combine');
/** Sets the value of "text-combine" */
- set textCombine(String value) {
+ void set textCombine(String value) {
setProperty('text-combine', value, '');
}
@@ -4111,7 +4129,7 @@ $endif
getPropertyValue('text-decoration');
/** Sets the value of "text-decoration" */
- set textDecoration(String value) {
+ void set textDecoration(String value) {
setProperty('text-decoration', value, '');
}
@@ -4120,7 +4138,7 @@ $endif
getPropertyValue('text-decoration-color');
/** Sets the value of "text-decoration-color" */
- set textDecorationColor(String value) {
+ void set textDecorationColor(String value) {
setProperty('text-decoration-color', value, '');
}
@@ -4129,7 +4147,7 @@ $endif
getPropertyValue('text-decoration-line');
/** Sets the value of "text-decoration-line" */
- set textDecorationLine(String value) {
+ void set textDecorationLine(String value) {
setProperty('text-decoration-line', value, '');
}
@@ -4138,7 +4156,7 @@ $endif
getPropertyValue('text-decoration-style');
/** Sets the value of "text-decoration-style" */
- set textDecorationStyle(String value) {
+ void set textDecorationStyle(String value) {
setProperty('text-decoration-style', value, '');
}
@@ -4147,7 +4165,7 @@ $endif
getPropertyValue('text-decorations-in-effect');
/** Sets the value of "text-decorations-in-effect" */
- set textDecorationsInEffect(String value) {
+ void set textDecorationsInEffect(String value) {
setProperty('text-decorations-in-effect', value, '');
}
@@ -4156,7 +4174,7 @@ $endif
getPropertyValue('text-emphasis');
/** Sets the value of "text-emphasis" */
- set textEmphasis(String value) {
+ void set textEmphasis(String value) {
setProperty('text-emphasis', value, '');
}
@@ -4165,7 +4183,7 @@ $endif
getPropertyValue('text-emphasis-color');
/** Sets the value of "text-emphasis-color" */
- set textEmphasisColor(String value) {
+ void set textEmphasisColor(String value) {
setProperty('text-emphasis-color', value, '');
}
@@ -4174,7 +4192,7 @@ $endif
getPropertyValue('text-emphasis-position');
/** Sets the value of "text-emphasis-position" */
- set textEmphasisPosition(String value) {
+ void set textEmphasisPosition(String value) {
setProperty('text-emphasis-position', value, '');
}
@@ -4183,7 +4201,7 @@ $endif
getPropertyValue('text-emphasis-style');
/** Sets the value of "text-emphasis-style" */
- set textEmphasisStyle(String value) {
+ void set textEmphasisStyle(String value) {
setProperty('text-emphasis-style', value, '');
}
@@ -4192,7 +4210,7 @@ $endif
getPropertyValue('text-fill-color');
/** Sets the value of "text-fill-color" */
- set textFillColor(String value) {
+ void set textFillColor(String value) {
setProperty('text-fill-color', value, '');
}
@@ -4201,7 +4219,7 @@ $endif
getPropertyValue('text-indent');
/** Sets the value of "text-indent" */
- set textIndent(String value) {
+ void set textIndent(String value) {
setProperty('text-indent', value, '');
}
@@ -4210,7 +4228,7 @@ $endif
getPropertyValue('text-justify');
/** Sets the value of "text-justify" */
- set textJustify(String value) {
+ void set textJustify(String value) {
setProperty('text-justify', value, '');
}
@@ -4219,7 +4237,7 @@ $endif
getPropertyValue('text-line-through-color');
/** Sets the value of "text-line-through-color" */
- set textLineThroughColor(String value) {
+ void set textLineThroughColor(String value) {
setProperty('text-line-through-color', value, '');
}
@@ -4228,7 +4246,7 @@ $endif
getPropertyValue('text-line-through-mode');
/** Sets the value of "text-line-through-mode" */
- set textLineThroughMode(String value) {
+ void set textLineThroughMode(String value) {
setProperty('text-line-through-mode', value, '');
}
@@ -4237,7 +4255,7 @@ $endif
getPropertyValue('text-line-through-style');
/** Sets the value of "text-line-through-style" */
- set textLineThroughStyle(String value) {
+ void set textLineThroughStyle(String value) {
setProperty('text-line-through-style', value, '');
}
@@ -4246,7 +4264,7 @@ $endif
getPropertyValue('text-line-through-width');
/** Sets the value of "text-line-through-width" */
- set textLineThroughWidth(String value) {
+ void set textLineThroughWidth(String value) {
setProperty('text-line-through-width', value, '');
}
@@ -4255,7 +4273,7 @@ $endif
getPropertyValue('text-orientation');
/** Sets the value of "text-orientation" */
- set textOrientation(String value) {
+ void set textOrientation(String value) {
setProperty('text-orientation', value, '');
}
@@ -4264,7 +4282,7 @@ $endif
getPropertyValue('text-overflow');
/** Sets the value of "text-overflow" */
- set textOverflow(String value) {
+ void set textOverflow(String value) {
setProperty('text-overflow', value, '');
}
@@ -4273,7 +4291,7 @@ $endif
getPropertyValue('text-overline-color');
/** Sets the value of "text-overline-color" */
- set textOverlineColor(String value) {
+ void set textOverlineColor(String value) {
setProperty('text-overline-color', value, '');
}
@@ -4282,7 +4300,7 @@ $endif
getPropertyValue('text-overline-mode');
/** Sets the value of "text-overline-mode" */
- set textOverlineMode(String value) {
+ void set textOverlineMode(String value) {
setProperty('text-overline-mode', value, '');
}
@@ -4291,7 +4309,7 @@ $endif
getPropertyValue('text-overline-style');
/** Sets the value of "text-overline-style" */
- set textOverlineStyle(String value) {
+ void set textOverlineStyle(String value) {
setProperty('text-overline-style', value, '');
}
@@ -4300,7 +4318,7 @@ $endif
getPropertyValue('text-overline-width');
/** Sets the value of "text-overline-width" */
- set textOverlineWidth(String value) {
+ void set textOverlineWidth(String value) {
setProperty('text-overline-width', value, '');
}
@@ -4309,7 +4327,7 @@ $endif
getPropertyValue('text-rendering');
/** Sets the value of "text-rendering" */
- set textRendering(String value) {
+ void set textRendering(String value) {
setProperty('text-rendering', value, '');
}
@@ -4318,7 +4336,7 @@ $endif
getPropertyValue('text-security');
/** Sets the value of "text-security" */
- set textSecurity(String value) {
+ void set textSecurity(String value) {
setProperty('text-security', value, '');
}
@@ -4327,7 +4345,7 @@ $endif
getPropertyValue('text-shadow');
/** Sets the value of "text-shadow" */
- set textShadow(String value) {
+ void set textShadow(String value) {
setProperty('text-shadow', value, '');
}
@@ -4336,7 +4354,7 @@ $endif
getPropertyValue('text-stroke');
/** Sets the value of "text-stroke" */
- set textStroke(String value) {
+ void set textStroke(String value) {
setProperty('text-stroke', value, '');
}
@@ -4345,7 +4363,7 @@ $endif
getPropertyValue('text-stroke-color');
/** Sets the value of "text-stroke-color" */
- set textStrokeColor(String value) {
+ void set textStrokeColor(String value) {
setProperty('text-stroke-color', value, '');
}
@@ -4354,7 +4372,7 @@ $endif
getPropertyValue('text-stroke-width');
/** Sets the value of "text-stroke-width" */
- set textStrokeWidth(String value) {
+ void set textStrokeWidth(String value) {
setProperty('text-stroke-width', value, '');
}
@@ -4363,7 +4381,7 @@ $endif
getPropertyValue('text-transform');
/** Sets the value of "text-transform" */
- set textTransform(String value) {
+ void set textTransform(String value) {
setProperty('text-transform', value, '');
}
@@ -4372,7 +4390,7 @@ $endif
getPropertyValue('text-underline-color');
/** Sets the value of "text-underline-color" */
- set textUnderlineColor(String value) {
+ void set textUnderlineColor(String value) {
setProperty('text-underline-color', value, '');
}
@@ -4381,7 +4399,7 @@ $endif
getPropertyValue('text-underline-mode');
/** Sets the value of "text-underline-mode" */
- set textUnderlineMode(String value) {
+ void set textUnderlineMode(String value) {
setProperty('text-underline-mode', value, '');
}
@@ -4390,7 +4408,7 @@ $endif
getPropertyValue('text-underline-position');
/** Sets the value of "text-underline-position" */
- set textUnderlinePosition(String value) {
+ void set textUnderlinePosition(String value) {
setProperty('text-underline-position', value, '');
}
@@ -4399,7 +4417,7 @@ $endif
getPropertyValue('text-underline-style');
/** Sets the value of "text-underline-style" */
- set textUnderlineStyle(String value) {
+ void set textUnderlineStyle(String value) {
setProperty('text-underline-style', value, '');
}
@@ -4408,7 +4426,7 @@ $endif
getPropertyValue('text-underline-width');
/** Sets the value of "text-underline-width" */
- set textUnderlineWidth(String value) {
+ void set textUnderlineWidth(String value) {
setProperty('text-underline-width', value, '');
}
@@ -4417,7 +4435,7 @@ $endif
getPropertyValue('top');
/** Sets the value of "top" */
- set top(String value) {
+ void set top(String value) {
setProperty('top', value, '');
}
@@ -4426,7 +4444,7 @@ $endif
getPropertyValue('touch-action');
/** Sets the value of "touch-action" */
- set touchAction(String value) {
+ void set touchAction(String value) {
setProperty('touch-action', value, '');
}
@@ -4435,7 +4453,7 @@ $endif
getPropertyValue('touch-action-delay');
/** Sets the value of "touch-action-delay" */
- set touchActionDelay(String value) {
+ void set touchActionDelay(String value) {
setProperty('touch-action-delay', value, '');
}
@@ -4444,7 +4462,7 @@ $endif
getPropertyValue('transform');
/** Sets the value of "transform" */
- set transform(String value) {
+ void set transform(String value) {
setProperty('transform', value, '');
}
@@ -4453,7 +4471,7 @@ $endif
getPropertyValue('transform-origin');
/** Sets the value of "transform-origin" */
- set transformOrigin(String value) {
+ void set transformOrigin(String value) {
setProperty('transform-origin', value, '');
}
@@ -4462,7 +4480,7 @@ $endif
getPropertyValue('transform-origin-x');
/** Sets the value of "transform-origin-x" */
- set transformOriginX(String value) {
+ void set transformOriginX(String value) {
setProperty('transform-origin-x', value, '');
}
@@ -4471,7 +4489,7 @@ $endif
getPropertyValue('transform-origin-y');
/** Sets the value of "transform-origin-y" */
- set transformOriginY(String value) {
+ void set transformOriginY(String value) {
setProperty('transform-origin-y', value, '');
}
@@ -4480,7 +4498,7 @@ $endif
getPropertyValue('transform-origin-z');
/** Sets the value of "transform-origin-z" */
- set transformOriginZ(String value) {
+ void set transformOriginZ(String value) {
setProperty('transform-origin-z', value, '');
}
@@ -4489,7 +4507,7 @@ $endif
getPropertyValue('transform-style');
/** Sets the value of "transform-style" */
- set transformStyle(String value) {
+ void set transformStyle(String value) {
setProperty('transform-style', value, '');
}
@@ -4504,7 +4522,7 @@ $endif
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
- set transition(String value) {
+ void set transition(String value) {
setProperty('transition', value, '');
}
@@ -4513,7 +4531,7 @@ $endif
getPropertyValue('transition-delay');
/** Sets the value of "transition-delay" */
- set transitionDelay(String value) {
+ void set transitionDelay(String value) {
setProperty('transition-delay', value, '');
}
@@ -4522,7 +4540,7 @@ $endif
getPropertyValue('transition-duration');
/** Sets the value of "transition-duration" */
- set transitionDuration(String value) {
+ void set transitionDuration(String value) {
setProperty('transition-duration', value, '');
}
@@ -4531,7 +4549,7 @@ $endif
getPropertyValue('transition-property');
/** Sets the value of "transition-property" */
- set transitionProperty(String value) {
+ void set transitionProperty(String value) {
setProperty('transition-property', value, '');
}
@@ -4540,7 +4558,7 @@ $endif
getPropertyValue('transition-timing-function');
/** Sets the value of "transition-timing-function" */
- set transitionTimingFunction(String value) {
+ void set transitionTimingFunction(String value) {
setProperty('transition-timing-function', value, '');
}
@@ -4549,7 +4567,7 @@ $endif
getPropertyValue('unicode-bidi');
/** Sets the value of "unicode-bidi" */
- set unicodeBidi(String value) {
+ void set unicodeBidi(String value) {
setProperty('unicode-bidi', value, '');
}
@@ -4558,7 +4576,7 @@ $endif
getPropertyValue('unicode-range');
/** Sets the value of "unicode-range" */
- set unicodeRange(String value) {
+ void set unicodeRange(String value) {
setProperty('unicode-range', value, '');
}
@@ -4567,7 +4585,7 @@ $endif
getPropertyValue('user-drag');
/** Sets the value of "user-drag" */
- set userDrag(String value) {
+ void set userDrag(String value) {
setProperty('user-drag', value, '');
}
@@ -4576,7 +4594,7 @@ $endif
getPropertyValue('user-modify');
/** Sets the value of "user-modify" */
- set userModify(String value) {
+ void set userModify(String value) {
setProperty('user-modify', value, '');
}
@@ -4585,7 +4603,7 @@ $endif
getPropertyValue('user-select');
/** Sets the value of "user-select" */
- set userSelect(String value) {
+ void set userSelect(String value) {
setProperty('user-select', value, '');
}
@@ -4594,7 +4612,7 @@ $endif
getPropertyValue('user-zoom');
/** Sets the value of "user-zoom" */
- set userZoom(String value) {
+ void set userZoom(String value) {
setProperty('user-zoom', value, '');
}
@@ -4603,7 +4621,7 @@ $endif
getPropertyValue('vertical-align');
/** Sets the value of "vertical-align" */
- set verticalAlign(String value) {
+ void set verticalAlign(String value) {
setProperty('vertical-align', value, '');
}
@@ -4612,7 +4630,7 @@ $endif
getPropertyValue('visibility');
/** Sets the value of "visibility" */
- set visibility(String value) {
+ void set visibility(String value) {
setProperty('visibility', value, '');
}
@@ -4621,7 +4639,7 @@ $endif
getPropertyValue('white-space');
/** Sets the value of "white-space" */
- set whiteSpace(String value) {
+ void set whiteSpace(String value) {
setProperty('white-space', value, '');
}
@@ -4630,7 +4648,7 @@ $endif
getPropertyValue('widows');
/** Sets the value of "widows" */
- set widows(String value) {
+ void set widows(String value) {
setProperty('widows', value, '');
}
@@ -4639,7 +4657,7 @@ $endif
getPropertyValue('width');
/** Sets the value of "width" */
- set width(String value) {
+ void set width(String value) {
setProperty('width', value, '');
}
@@ -4648,7 +4666,7 @@ $endif
getPropertyValue('will-change');
/** Sets the value of "will-change" */
- set willChange(String value) {
+ void set willChange(String value) {
setProperty('will-change', value, '');
}
@@ -4657,7 +4675,7 @@ $endif
getPropertyValue('word-break');
/** Sets the value of "word-break" */
- set wordBreak(String value) {
+ void set wordBreak(String value) {
setProperty('word-break', value, '');
}
@@ -4666,7 +4684,7 @@ $endif
getPropertyValue('word-spacing');
/** Sets the value of "word-spacing" */
- set wordSpacing(String value) {
+ void set wordSpacing(String value) {
setProperty('word-spacing', value, '');
}
@@ -4675,7 +4693,7 @@ $endif
getPropertyValue('word-wrap');
/** Sets the value of "word-wrap" */
- set wordWrap(String value) {
+ void set wordWrap(String value) {
setProperty('word-wrap', value, '');
}
@@ -4684,7 +4702,7 @@ $endif
getPropertyValue('wrap-flow');
/** Sets the value of "wrap-flow" */
- set wrapFlow(String value) {
+ void set wrapFlow(String value) {
setProperty('wrap-flow', value, '');
}
@@ -4693,7 +4711,7 @@ $endif
getPropertyValue('wrap-through');
/** Sets the value of "wrap-through" */
- set wrapThrough(String value) {
+ void set wrapThrough(String value) {
setProperty('wrap-through', value, '');
}
@@ -4702,7 +4720,7 @@ $endif
getPropertyValue('writing-mode');
/** Sets the value of "writing-mode" */
- set writingMode(String value) {
+ void set writingMode(String value) {
setProperty('writing-mode', value, '');
}
@@ -4711,7 +4729,7 @@ $endif
getPropertyValue('z-index');
/** Sets the value of "z-index" */
- set zIndex(String value) {
+ void set zIndex(String value) {
setProperty('z-index', value, '');
}
@@ -4720,7 +4738,7 @@ $endif
getPropertyValue('zoom');
/** Sets the value of "zoom" */
- set zoom(String value) {
+ void set zoom(String value) {
setProperty('zoom', value, '');
}
}

Powered by Google App Engine
This is Rietveld 408576698