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 9c7e9727f7c43d6df6789c03f88ef383b7ad905e..046591b2ee4be5707461a07ba3866a6ebfcb2b59 100644 |
--- a/tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate |
@@ -1,17 +1,10 @@ |
- |
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-// WARNING: DO NOT EDIT THIS TEMPLATE FILE. |
-// The template file was generated by scripts/css_code_generator.py |
- |
-// Source of CSS properties: |
-// CSSPropertyNames.in |
- |
part of $LIBRARYNAME; |
-$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS) class $CLASSNAME $EXTENDS with |
+$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS) class $CLASSNAME $EXTENDS with |
$(CLASSNAME)Base $IMPLEMENTS { |
factory $CLASSNAME() => new CssStyleDeclaration.css(''); |
@@ -20,78 +13,15 @@ $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS) class $CLASSNAME $EXTENDS with |
style.cssText = css; |
return style; |
} |
- |
+ |
String getPropertyValue(String propertyName) { |
- var propValue = _getPropertyValueHelper(propertyName); |
+ var propValue = _getPropertyValue(propertyName); |
return propValue != null ? propValue : ''; |
} |
- String _getPropertyValueHelper(String propertyName) { |
- if (_supportsProperty(_camelCase(propertyName))) { |
- return _getPropertyValue(propertyName); |
- } else { |
- return _getPropertyValue(Device.cssPrefix + propertyName); |
- } |
- } |
- |
- /** |
- * Returns true if the provided *CSS* property name is supported on this |
- * element. |
- * |
- * Please note the property name camelCase, not-hyphens. This |
- * method returns true if the property is accessible via an unprefixed _or_ |
- * prefixed property. |
- */ |
- bool supportsProperty(String propertyName) { |
- return _supportsProperty(propertyName) || |
- _supportsProperty(_camelCase(Device.cssPrefix + propertyName)); |
- } |
- |
- bool _supportsProperty(String propertyName) { |
$if DART2JS |
- return JS('bool', '# in #', propertyName, this); |
-$else |
- // You can't just check the value of a property, because there is no way |
- // to distinguish between property not being present in the browser and |
- // not having a value at all. (Ultimately we'll want the native method to |
- // return null if the property doesn't exist and empty string if it's |
- // defined but just doesn't have a value. |
- return _hasProperty(propertyName); |
-$endif |
- } |
-$if DARTIUM |
- |
- bool _hasProperty(String propertyName) => |
- _blink.BlinkCSSStyleDeclaration.$__propertyQuery___Callback(this, propertyName); |
-$endif |
- |
@DomName('CSSStyleDeclaration.setProperty') |
void setProperty(String propertyName, String value, [String priority]) { |
- if (_supportsProperty(_camelCase(propertyName))) { |
- return _setPropertyHelper(propertyName, value, priority); |
- } else { |
- return _setPropertyHelper(Device.cssPrefix + propertyName, value, |
- priority); |
- } |
- } |
- |
- String _camelCase(String hyphenated) { |
- bool firstWord = true; |
- return hyphenated.splitMapJoin('-', onMatch : (_) => '', |
- onNonMatch : (String word) { |
- if (word.length > 0) { |
- if (firstWord) { |
- firstWord = false; |
- return word; |
- } |
- return word[0].toUpperCase() + word.substring(1); |
- } |
- return ''; |
- }); |
- } |
- |
-$if DART2JS |
- void _setPropertyHelper(String propertyName, String value, [String priority]) { |
// try/catch for IE9 which throws on unsupported values. |
try { |
if (value == null) value = ''; |
@@ -105,15 +35,20 @@ $if DART2JS |
} |
} catch (e) {} |
} |
- |
+ |
/** |
* Checks to see if CSS Transitions are supported. |
*/ |
static bool get supportsTransitions { |
- return supportsProperty('transition'); |
+ if (JS('bool', '"transition" in document.body.style')) { |
+ return true; |
+ } |
+ var propertyName = '${Device.propertyPrefix}Transition'; |
+ return JS('bool', '# in document.body.style', propertyName); |
} |
$else |
- void _setPropertyHelper(String propertyName, String value, [String priority]) { |
+ @DomName('CSSStyleDeclaration.setProperty') |
+ void setProperty(String propertyName, String value, [String priority]) { |
if (priority == null) { |
priority = ''; |
} |
@@ -153,151 +88,152 @@ class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase { |
} |
abstract class CssStyleDeclarationBase { |
- String getPropertyValue(String propertyName); |
+ String getPropertyValue(String propertyName); |
void setProperty(String propertyName, String value, [String priority]); |
+ // TODO(jacobr): generate this list of properties using the existing script. |
/** Gets the value of "align-content" */ |
String get alignContent => |
- getPropertyValue('align-content'); |
+ getPropertyValue('${Device.cssPrefix}align-content'); |
/** Sets the value of "align-content" */ |
void set alignContent(String value) { |
- setProperty('align-content', value, ''); |
+ setProperty('${Device.cssPrefix}align-content', value, ''); |
} |
/** Gets the value of "align-items" */ |
String get alignItems => |
- getPropertyValue('align-items'); |
+ getPropertyValue('${Device.cssPrefix}align-items'); |
/** Sets the value of "align-items" */ |
void set alignItems(String value) { |
- setProperty('align-items', value, ''); |
+ setProperty('${Device.cssPrefix}align-items', value, ''); |
} |
/** Gets the value of "align-self" */ |
String get alignSelf => |
- getPropertyValue('align-self'); |
+ getPropertyValue('${Device.cssPrefix}align-self'); |
/** Sets the value of "align-self" */ |
void set alignSelf(String value) { |
- setProperty('align-self', value, ''); |
+ setProperty('${Device.cssPrefix}align-self', value, ''); |
} |
/** Gets the value of "animation" */ |
String get animation => |
- getPropertyValue('animation'); |
+ getPropertyValue('${Device.cssPrefix}animation'); |
/** Sets the value of "animation" */ |
void set animation(String value) { |
- setProperty('animation', value, ''); |
+ setProperty('${Device.cssPrefix}animation', value, ''); |
} |
/** Gets the value of "animation-delay" */ |
String get animationDelay => |
- getPropertyValue('animation-delay'); |
+ getPropertyValue('${Device.cssPrefix}animation-delay'); |
/** Sets the value of "animation-delay" */ |
void set animationDelay(String value) { |
- setProperty('animation-delay', value, ''); |
+ setProperty('${Device.cssPrefix}animation-delay', value, ''); |
} |
/** Gets the value of "animation-direction" */ |
String get animationDirection => |
- getPropertyValue('animation-direction'); |
+ getPropertyValue('${Device.cssPrefix}animation-direction'); |
/** Sets the value of "animation-direction" */ |
void set animationDirection(String value) { |
- setProperty('animation-direction', value, ''); |
+ setProperty('${Device.cssPrefix}animation-direction', value, ''); |
} |
/** Gets the value of "animation-duration" */ |
String get animationDuration => |
- getPropertyValue('animation-duration'); |
+ getPropertyValue('${Device.cssPrefix}animation-duration'); |
/** Sets the value of "animation-duration" */ |
void set animationDuration(String value) { |
- setProperty('animation-duration', value, ''); |
+ setProperty('${Device.cssPrefix}animation-duration', value, ''); |
} |
/** Gets the value of "animation-fill-mode" */ |
String get animationFillMode => |
- getPropertyValue('animation-fill-mode'); |
+ getPropertyValue('${Device.cssPrefix}animation-fill-mode'); |
/** Sets the value of "animation-fill-mode" */ |
void set animationFillMode(String value) { |
- setProperty('animation-fill-mode', value, ''); |
+ setProperty('${Device.cssPrefix}animation-fill-mode', value, ''); |
} |
/** Gets the value of "animation-iteration-count" */ |
String get animationIterationCount => |
- getPropertyValue('animation-iteration-count'); |
+ getPropertyValue('${Device.cssPrefix}animation-iteration-count'); |
/** Sets the value of "animation-iteration-count" */ |
void set animationIterationCount(String value) { |
- setProperty('animation-iteration-count', value, ''); |
+ setProperty('${Device.cssPrefix}animation-iteration-count', value, ''); |
} |
/** Gets the value of "animation-name" */ |
String get animationName => |
- getPropertyValue('animation-name'); |
+ getPropertyValue('${Device.cssPrefix}animation-name'); |
/** Sets the value of "animation-name" */ |
void set animationName(String value) { |
- setProperty('animation-name', value, ''); |
+ setProperty('${Device.cssPrefix}animation-name', value, ''); |
} |
/** Gets the value of "animation-play-state" */ |
String get animationPlayState => |
- getPropertyValue('animation-play-state'); |
+ getPropertyValue('${Device.cssPrefix}animation-play-state'); |
/** Sets the value of "animation-play-state" */ |
void set animationPlayState(String value) { |
- setProperty('animation-play-state', value, ''); |
+ setProperty('${Device.cssPrefix}animation-play-state', value, ''); |
} |
/** Gets the value of "animation-timing-function" */ |
String get animationTimingFunction => |
- getPropertyValue('animation-timing-function'); |
+ getPropertyValue('${Device.cssPrefix}animation-timing-function'); |
/** Sets the value of "animation-timing-function" */ |
void set animationTimingFunction(String value) { |
- setProperty('animation-timing-function', value, ''); |
+ setProperty('${Device.cssPrefix}animation-timing-function', value, ''); |
} |
/** Gets the value of "app-region" */ |
String get appRegion => |
- getPropertyValue('app-region'); |
+ getPropertyValue('${Device.cssPrefix}app-region'); |
/** Sets the value of "app-region" */ |
void set appRegion(String value) { |
- setProperty('app-region', value, ''); |
+ setProperty('${Device.cssPrefix}app-region', value, ''); |
} |
/** Gets the value of "appearance" */ |
String get appearance => |
- getPropertyValue('appearance'); |
+ getPropertyValue('${Device.cssPrefix}appearance'); |
/** Sets the value of "appearance" */ |
void set appearance(String value) { |
- setProperty('appearance', value, ''); |
+ setProperty('${Device.cssPrefix}appearance', value, ''); |
} |
/** Gets the value of "aspect-ratio" */ |
String get aspectRatio => |
- getPropertyValue('aspect-ratio'); |
+ getPropertyValue('${Device.cssPrefix}aspect-ratio'); |
/** Sets the value of "aspect-ratio" */ |
void set aspectRatio(String value) { |
- setProperty('aspect-ratio', value, ''); |
+ setProperty('${Device.cssPrefix}aspect-ratio', value, ''); |
} |
/** Gets the value of "backface-visibility" */ |
String get backfaceVisibility => |
- getPropertyValue('backface-visibility'); |
+ getPropertyValue('${Device.cssPrefix}backface-visibility'); |
/** Sets the value of "backface-visibility" */ |
void set backfaceVisibility(String value) { |
- setProperty('backface-visibility', value, ''); |
+ setProperty('${Device.cssPrefix}backface-visibility', value, ''); |
} |
/** Gets the value of "background" */ |
@@ -318,15 +254,6 @@ abstract class CssStyleDeclarationBase { |
setProperty('background-attachment', value, ''); |
} |
- /** Gets the value of "background-blend-mode" */ |
- String get backgroundBlendMode => |
- getPropertyValue('background-blend-mode'); |
- |
- /** Sets the value of "background-blend-mode" */ |
- void set backgroundBlendMode(String value) { |
- setProperty('background-blend-mode', value, ''); |
- } |
- |
/** Gets the value of "background-clip" */ |
String get backgroundClip => |
getPropertyValue('background-clip'); |
@@ -347,11 +274,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "background-composite" */ |
String get backgroundComposite => |
- getPropertyValue('background-composite'); |
+ getPropertyValue('${Device.cssPrefix}background-composite'); |
/** Sets the value of "background-composite" */ |
void set backgroundComposite(String value) { |
- setProperty('background-composite', value, ''); |
+ setProperty('${Device.cssPrefix}background-composite', value, ''); |
} |
/** Gets the value of "background-image" */ |
@@ -435,6 +362,15 @@ abstract class CssStyleDeclarationBase { |
setProperty('background-size', value, ''); |
} |
+ /** Gets the value of "blend-mode" */ |
+ String get blendMode => |
+ getPropertyValue('${Device.cssPrefix}blend-mode'); |
+ |
+ /** Sets the value of "blend-mode" */ |
+ void set blendMode(String value) { |
+ setProperty('${Device.cssPrefix}blend-mode', value, ''); |
+ } |
+ |
/** Gets the value of "border" */ |
String get border => |
getPropertyValue('border'); |
@@ -446,74 +382,74 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "border-after" */ |
String get borderAfter => |
- getPropertyValue('border-after'); |
+ getPropertyValue('${Device.cssPrefix}border-after'); |
/** Sets the value of "border-after" */ |
void set borderAfter(String value) { |
- setProperty('border-after', value, ''); |
+ setProperty('${Device.cssPrefix}border-after', value, ''); |
} |
/** Gets the value of "border-after-color" */ |
String get borderAfterColor => |
- getPropertyValue('border-after-color'); |
+ getPropertyValue('${Device.cssPrefix}border-after-color'); |
/** Sets the value of "border-after-color" */ |
void set borderAfterColor(String value) { |
- setProperty('border-after-color', value, ''); |
+ setProperty('${Device.cssPrefix}border-after-color', value, ''); |
} |
/** Gets the value of "border-after-style" */ |
String get borderAfterStyle => |
- getPropertyValue('border-after-style'); |
+ getPropertyValue('${Device.cssPrefix}border-after-style'); |
/** Sets the value of "border-after-style" */ |
void set borderAfterStyle(String value) { |
- setProperty('border-after-style', value, ''); |
+ setProperty('${Device.cssPrefix}border-after-style', value, ''); |
} |
/** Gets the value of "border-after-width" */ |
String get borderAfterWidth => |
- getPropertyValue('border-after-width'); |
+ getPropertyValue('${Device.cssPrefix}border-after-width'); |
/** Sets the value of "border-after-width" */ |
void set borderAfterWidth(String value) { |
- setProperty('border-after-width', value, ''); |
+ setProperty('${Device.cssPrefix}border-after-width', value, ''); |
} |
/** Gets the value of "border-before" */ |
String get borderBefore => |
- getPropertyValue('border-before'); |
+ getPropertyValue('${Device.cssPrefix}border-before'); |
/** Sets the value of "border-before" */ |
void set borderBefore(String value) { |
- setProperty('border-before', value, ''); |
+ setProperty('${Device.cssPrefix}border-before', value, ''); |
} |
/** Gets the value of "border-before-color" */ |
String get borderBeforeColor => |
- getPropertyValue('border-before-color'); |
+ getPropertyValue('${Device.cssPrefix}border-before-color'); |
/** Sets the value of "border-before-color" */ |
void set borderBeforeColor(String value) { |
- setProperty('border-before-color', value, ''); |
+ setProperty('${Device.cssPrefix}border-before-color', value, ''); |
} |
/** Gets the value of "border-before-style" */ |
String get borderBeforeStyle => |
- getPropertyValue('border-before-style'); |
+ getPropertyValue('${Device.cssPrefix}border-before-style'); |
/** Sets the value of "border-before-style" */ |
void set borderBeforeStyle(String value) { |
- setProperty('border-before-style', value, ''); |
+ setProperty('${Device.cssPrefix}border-before-style', value, ''); |
} |
/** Gets the value of "border-before-width" */ |
String get borderBeforeWidth => |
- getPropertyValue('border-before-width'); |
+ getPropertyValue('${Device.cssPrefix}border-before-width'); |
/** Sets the value of "border-before-width" */ |
void set borderBeforeWidth(String value) { |
- setProperty('border-before-width', value, ''); |
+ setProperty('${Device.cssPrefix}border-before-width', value, ''); |
} |
/** Gets the value of "border-bottom" */ |
@@ -590,56 +526,56 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "border-end" */ |
String get borderEnd => |
- getPropertyValue('border-end'); |
+ getPropertyValue('${Device.cssPrefix}border-end'); |
/** Sets the value of "border-end" */ |
void set borderEnd(String value) { |
- setProperty('border-end', value, ''); |
+ setProperty('${Device.cssPrefix}border-end', value, ''); |
} |
/** Gets the value of "border-end-color" */ |
String get borderEndColor => |
- getPropertyValue('border-end-color'); |
+ getPropertyValue('${Device.cssPrefix}border-end-color'); |
/** Sets the value of "border-end-color" */ |
void set borderEndColor(String value) { |
- setProperty('border-end-color', value, ''); |
+ setProperty('${Device.cssPrefix}border-end-color', value, ''); |
} |
/** Gets the value of "border-end-style" */ |
String get borderEndStyle => |
- getPropertyValue('border-end-style'); |
+ getPropertyValue('${Device.cssPrefix}border-end-style'); |
/** Sets the value of "border-end-style" */ |
void set borderEndStyle(String value) { |
- setProperty('border-end-style', value, ''); |
+ setProperty('${Device.cssPrefix}border-end-style', value, ''); |
} |
/** Gets the value of "border-end-width" */ |
String get borderEndWidth => |
- getPropertyValue('border-end-width'); |
+ getPropertyValue('${Device.cssPrefix}border-end-width'); |
/** Sets the value of "border-end-width" */ |
void set borderEndWidth(String value) { |
- setProperty('border-end-width', value, ''); |
+ setProperty('${Device.cssPrefix}border-end-width', value, ''); |
} |
/** Gets the value of "border-fit" */ |
String get borderFit => |
- getPropertyValue('border-fit'); |
+ getPropertyValue('${Device.cssPrefix}border-fit'); |
/** Sets the value of "border-fit" */ |
void set borderFit(String value) { |
- setProperty('border-fit', value, ''); |
+ setProperty('${Device.cssPrefix}border-fit', value, ''); |
} |
/** Gets the value of "border-horizontal-spacing" */ |
String get borderHorizontalSpacing => |
- getPropertyValue('border-horizontal-spacing'); |
+ getPropertyValue('${Device.cssPrefix}border-horizontal-spacing'); |
/** Sets the value of "border-horizontal-spacing" */ |
void set borderHorizontalSpacing(String value) { |
- setProperty('border-horizontal-spacing', value, ''); |
+ setProperty('${Device.cssPrefix}border-horizontal-spacing', value, ''); |
} |
/** Gets the value of "border-image" */ |
@@ -788,38 +724,38 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "border-start" */ |
String get borderStart => |
- getPropertyValue('border-start'); |
+ getPropertyValue('${Device.cssPrefix}border-start'); |
/** Sets the value of "border-start" */ |
void set borderStart(String value) { |
- setProperty('border-start', value, ''); |
+ setProperty('${Device.cssPrefix}border-start', value, ''); |
} |
/** Gets the value of "border-start-color" */ |
String get borderStartColor => |
- getPropertyValue('border-start-color'); |
+ getPropertyValue('${Device.cssPrefix}border-start-color'); |
/** Sets the value of "border-start-color" */ |
void set borderStartColor(String value) { |
- setProperty('border-start-color', value, ''); |
+ setProperty('${Device.cssPrefix}border-start-color', value, ''); |
} |
/** Gets the value of "border-start-style" */ |
String get borderStartStyle => |
- getPropertyValue('border-start-style'); |
+ getPropertyValue('${Device.cssPrefix}border-start-style'); |
/** Sets the value of "border-start-style" */ |
void set borderStartStyle(String value) { |
- setProperty('border-start-style', value, ''); |
+ setProperty('${Device.cssPrefix}border-start-style', value, ''); |
} |
/** Gets the value of "border-start-width" */ |
String get borderStartWidth => |
- getPropertyValue('border-start-width'); |
+ getPropertyValue('${Device.cssPrefix}border-start-width'); |
/** Sets the value of "border-start-width" */ |
void set borderStartWidth(String value) { |
- setProperty('border-start-width', value, ''); |
+ setProperty('${Device.cssPrefix}border-start-width', value, ''); |
} |
/** Gets the value of "border-style" */ |
@@ -887,11 +823,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "border-vertical-spacing" */ |
String get borderVerticalSpacing => |
- getPropertyValue('border-vertical-spacing'); |
+ getPropertyValue('${Device.cssPrefix}border-vertical-spacing'); |
/** Sets the value of "border-vertical-spacing" */ |
void set borderVerticalSpacing(String value) { |
- setProperty('border-vertical-spacing', value, ''); |
+ setProperty('${Device.cssPrefix}border-vertical-spacing', value, ''); |
} |
/** Gets the value of "border-width" */ |
@@ -914,92 +850,92 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "box-align" */ |
String get boxAlign => |
- getPropertyValue('box-align'); |
+ getPropertyValue('${Device.cssPrefix}box-align'); |
/** Sets the value of "box-align" */ |
void set boxAlign(String value) { |
- setProperty('box-align', value, ''); |
+ setProperty('${Device.cssPrefix}box-align', value, ''); |
} |
/** Gets the value of "box-decoration-break" */ |
String get boxDecorationBreak => |
- getPropertyValue('box-decoration-break'); |
+ getPropertyValue('${Device.cssPrefix}box-decoration-break'); |
/** Sets the value of "box-decoration-break" */ |
void set boxDecorationBreak(String value) { |
- setProperty('box-decoration-break', value, ''); |
+ setProperty('${Device.cssPrefix}box-decoration-break', value, ''); |
} |
/** Gets the value of "box-direction" */ |
String get boxDirection => |
- getPropertyValue('box-direction'); |
+ getPropertyValue('${Device.cssPrefix}box-direction'); |
/** Sets the value of "box-direction" */ |
void set boxDirection(String value) { |
- setProperty('box-direction', value, ''); |
+ setProperty('${Device.cssPrefix}box-direction', value, ''); |
} |
/** Gets the value of "box-flex" */ |
String get boxFlex => |
- getPropertyValue('box-flex'); |
+ getPropertyValue('${Device.cssPrefix}box-flex'); |
/** Sets the value of "box-flex" */ |
void set boxFlex(String value) { |
- setProperty('box-flex', value, ''); |
+ setProperty('${Device.cssPrefix}box-flex', value, ''); |
} |
/** Gets the value of "box-flex-group" */ |
String get boxFlexGroup => |
- getPropertyValue('box-flex-group'); |
+ getPropertyValue('${Device.cssPrefix}box-flex-group'); |
/** Sets the value of "box-flex-group" */ |
void set boxFlexGroup(String value) { |
- setProperty('box-flex-group', value, ''); |
+ setProperty('${Device.cssPrefix}box-flex-group', value, ''); |
} |
/** Gets the value of "box-lines" */ |
String get boxLines => |
- getPropertyValue('box-lines'); |
+ getPropertyValue('${Device.cssPrefix}box-lines'); |
/** Sets the value of "box-lines" */ |
void set boxLines(String value) { |
- setProperty('box-lines', value, ''); |
+ setProperty('${Device.cssPrefix}box-lines', value, ''); |
} |
/** Gets the value of "box-ordinal-group" */ |
String get boxOrdinalGroup => |
- getPropertyValue('box-ordinal-group'); |
+ getPropertyValue('${Device.cssPrefix}box-ordinal-group'); |
/** Sets the value of "box-ordinal-group" */ |
void set boxOrdinalGroup(String value) { |
- setProperty('box-ordinal-group', value, ''); |
+ setProperty('${Device.cssPrefix}box-ordinal-group', value, ''); |
} |
/** Gets the value of "box-orient" */ |
String get boxOrient => |
- getPropertyValue('box-orient'); |
+ getPropertyValue('${Device.cssPrefix}box-orient'); |
/** Sets the value of "box-orient" */ |
void set boxOrient(String value) { |
- setProperty('box-orient', value, ''); |
+ setProperty('${Device.cssPrefix}box-orient', value, ''); |
} |
/** Gets the value of "box-pack" */ |
String get boxPack => |
- getPropertyValue('box-pack'); |
+ getPropertyValue('${Device.cssPrefix}box-pack'); |
/** Sets the value of "box-pack" */ |
void set boxPack(String value) { |
- setProperty('box-pack', value, ''); |
+ setProperty('${Device.cssPrefix}box-pack', value, ''); |
} |
/** Gets the value of "box-reflect" */ |
String get boxReflect => |
- getPropertyValue('box-reflect'); |
+ getPropertyValue('${Device.cssPrefix}box-reflect'); |
/** Sets the value of "box-reflect" */ |
void set boxReflect(String value) { |
- setProperty('box-reflect', value, ''); |
+ setProperty('${Device.cssPrefix}box-reflect', value, ''); |
} |
/** Gets the value of "box-shadow" */ |
@@ -1012,12 +948,17 @@ abstract class CssStyleDeclarationBase { |
} |
/** Gets the value of "box-sizing" */ |
- String get boxSizing => |
- getPropertyValue('box-sizing'); |
+ String get boxSizing => Device.isFirefox ? |
+ getPropertyValue('${Device.cssPrefix}box-sizing') : |
+ getPropertyValue('box-sizing'); |
/** Sets the value of "box-sizing" */ |
void set boxSizing(String value) { |
- setProperty('box-sizing', value, ''); |
+ if (Device.isFirefox) { |
+ setProperty('${Device.cssPrefix}box-sizing', value, ''); |
+ } else { |
+ setProperty('box-sizing', value, ''); |
+ } |
} |
/** Gets the value of "caption-side" */ |
@@ -1049,11 +990,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "clip-path" */ |
String get clipPath => |
- getPropertyValue('clip-path'); |
+ getPropertyValue('${Device.cssPrefix}clip-path'); |
/** Sets the value of "clip-path" */ |
void set clipPath(String value) { |
- setProperty('clip-path', value, ''); |
+ setProperty('${Device.cssPrefix}clip-path', value, ''); |
} |
/** Gets the value of "color" */ |
@@ -1065,121 +1006,139 @@ abstract class CssStyleDeclarationBase { |
setProperty('color', value, ''); |
} |
+ /** Gets the value of "color-correction" */ |
+ String get colorCorrection => |
+ getPropertyValue('${Device.cssPrefix}color-correction'); |
+ |
+ /** Sets the value of "color-correction" */ |
+ void set colorCorrection(String value) { |
+ setProperty('${Device.cssPrefix}color-correction', value, ''); |
+ } |
+ |
+ /** Gets the value of "column-axis" */ |
+ String get columnAxis => |
+ getPropertyValue('${Device.cssPrefix}column-axis'); |
+ |
+ /** Sets the value of "column-axis" */ |
+ void set columnAxis(String value) { |
+ setProperty('${Device.cssPrefix}column-axis', value, ''); |
+ } |
+ |
/** Gets the value of "column-break-after" */ |
String get columnBreakAfter => |
- getPropertyValue('column-break-after'); |
+ getPropertyValue('${Device.cssPrefix}column-break-after'); |
/** Sets the value of "column-break-after" */ |
void set columnBreakAfter(String value) { |
- setProperty('column-break-after', value, ''); |
+ setProperty('${Device.cssPrefix}column-break-after', value, ''); |
} |
/** Gets the value of "column-break-before" */ |
String get columnBreakBefore => |
- getPropertyValue('column-break-before'); |
+ getPropertyValue('${Device.cssPrefix}column-break-before'); |
/** Sets the value of "column-break-before" */ |
void set columnBreakBefore(String value) { |
- setProperty('column-break-before', value, ''); |
+ setProperty('${Device.cssPrefix}column-break-before', value, ''); |
} |
/** Gets the value of "column-break-inside" */ |
String get columnBreakInside => |
- getPropertyValue('column-break-inside'); |
+ getPropertyValue('${Device.cssPrefix}column-break-inside'); |
/** Sets the value of "column-break-inside" */ |
void set columnBreakInside(String value) { |
- setProperty('column-break-inside', value, ''); |
+ setProperty('${Device.cssPrefix}column-break-inside', value, ''); |
} |
/** Gets the value of "column-count" */ |
String get columnCount => |
- getPropertyValue('column-count'); |
+ getPropertyValue('${Device.cssPrefix}column-count'); |
/** Sets the value of "column-count" */ |
void set columnCount(String value) { |
- setProperty('column-count', value, ''); |
- } |
- |
- /** Gets the value of "column-fill" */ |
- String get columnFill => |
- getPropertyValue('column-fill'); |
- |
- /** Sets the value of "column-fill" */ |
- void set columnFill(String value) { |
- setProperty('column-fill', value, ''); |
+ setProperty('${Device.cssPrefix}column-count', value, ''); |
} |
/** Gets the value of "column-gap" */ |
String get columnGap => |
- getPropertyValue('column-gap'); |
+ getPropertyValue('${Device.cssPrefix}column-gap'); |
/** Sets the value of "column-gap" */ |
void set columnGap(String value) { |
- setProperty('column-gap', value, ''); |
+ setProperty('${Device.cssPrefix}column-gap', value, ''); |
+ } |
+ |
+ /** Gets the value of "column-progression" */ |
+ String get columnProgression => |
+ getPropertyValue('${Device.cssPrefix}column-progression'); |
+ |
+ /** Sets the value of "column-progression" */ |
+ void set columnProgression(String value) { |
+ setProperty('${Device.cssPrefix}column-progression', value, ''); |
} |
/** Gets the value of "column-rule" */ |
String get columnRule => |
- getPropertyValue('column-rule'); |
+ getPropertyValue('${Device.cssPrefix}column-rule'); |
/** Sets the value of "column-rule" */ |
void set columnRule(String value) { |
- setProperty('column-rule', value, ''); |
+ setProperty('${Device.cssPrefix}column-rule', value, ''); |
} |
/** Gets the value of "column-rule-color" */ |
String get columnRuleColor => |
- getPropertyValue('column-rule-color'); |
+ getPropertyValue('${Device.cssPrefix}column-rule-color'); |
/** Sets the value of "column-rule-color" */ |
void set columnRuleColor(String value) { |
- setProperty('column-rule-color', value, ''); |
+ setProperty('${Device.cssPrefix}column-rule-color', value, ''); |
} |
/** Gets the value of "column-rule-style" */ |
String get columnRuleStyle => |
- getPropertyValue('column-rule-style'); |
+ getPropertyValue('${Device.cssPrefix}column-rule-style'); |
/** Sets the value of "column-rule-style" */ |
void set columnRuleStyle(String value) { |
- setProperty('column-rule-style', value, ''); |
+ setProperty('${Device.cssPrefix}column-rule-style', value, ''); |
} |
/** Gets the value of "column-rule-width" */ |
String get columnRuleWidth => |
- getPropertyValue('column-rule-width'); |
+ getPropertyValue('${Device.cssPrefix}column-rule-width'); |
/** Sets the value of "column-rule-width" */ |
void set columnRuleWidth(String value) { |
- setProperty('column-rule-width', value, ''); |
+ setProperty('${Device.cssPrefix}column-rule-width', value, ''); |
} |
/** Gets the value of "column-span" */ |
String get columnSpan => |
- getPropertyValue('column-span'); |
+ getPropertyValue('${Device.cssPrefix}column-span'); |
/** Sets the value of "column-span" */ |
void set columnSpan(String value) { |
- setProperty('column-span', value, ''); |
+ setProperty('${Device.cssPrefix}column-span', value, ''); |
} |
/** Gets the value of "column-width" */ |
String get columnWidth => |
- getPropertyValue('column-width'); |
+ getPropertyValue('${Device.cssPrefix}column-width'); |
/** Sets the value of "column-width" */ |
void set columnWidth(String value) { |
- setProperty('column-width', value, ''); |
+ setProperty('${Device.cssPrefix}column-width', value, ''); |
} |
/** Gets the value of "columns" */ |
String get columns => |
- getPropertyValue('columns'); |
+ getPropertyValue('${Device.cssPrefix}columns'); |
/** Sets the value of "columns" */ |
void set columns(String value) { |
- setProperty('columns', value, ''); |
+ setProperty('${Device.cssPrefix}columns', value, ''); |
} |
/** Gets the value of "content" */ |
@@ -1218,6 +1177,15 @@ abstract class CssStyleDeclarationBase { |
setProperty('cursor', value, ''); |
} |
+ /** Gets the value of "dashboard-region" */ |
+ String get dashboardRegion => |
+ getPropertyValue('${Device.cssPrefix}dashboard-region'); |
+ |
+ /** Sets the value of "dashboard-region" */ |
+ void set dashboardRegion(String value) { |
+ setProperty('${Device.cssPrefix}dashboard-region', value, ''); |
+ } |
+ |
/** Gets the value of "direction" */ |
String get direction => |
getPropertyValue('direction'); |
@@ -1247,74 +1215,79 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "filter" */ |
String get filter => |
- getPropertyValue('filter'); |
+ getPropertyValue('${Device.cssPrefix}filter'); |
/** Sets the value of "filter" */ |
void set filter(String value) { |
- setProperty('filter', value, ''); |
+ setProperty('${Device.cssPrefix}filter', value, ''); |
} |
/** Gets the value of "flex" */ |
- String get flex => |
- getPropertyValue('flex'); |
+ String get flex { |
+ String prefix = Device.cssPrefix; |
+ if (Device.isFirefox) prefix = ''; |
+ return getPropertyValue('${prefix}flex'); |
+ } |
/** Sets the value of "flex" */ |
void set flex(String value) { |
- setProperty('flex', value, ''); |
+ String prefix = Device.cssPrefix; |
+ if (Device.isFirefox) prefix = ''; |
+ setProperty('${prefix}flex', value, ''); |
} |
/** Gets the value of "flex-basis" */ |
String get flexBasis => |
- getPropertyValue('flex-basis'); |
+ getPropertyValue('${Device.cssPrefix}flex-basis'); |
/** Sets the value of "flex-basis" */ |
void set flexBasis(String value) { |
- setProperty('flex-basis', value, ''); |
+ setProperty('${Device.cssPrefix}flex-basis', value, ''); |
} |
/** Gets the value of "flex-direction" */ |
String get flexDirection => |
- getPropertyValue('flex-direction'); |
+ getPropertyValue('${Device.cssPrefix}flex-direction'); |
/** Sets the value of "flex-direction" */ |
void set flexDirection(String value) { |
- setProperty('flex-direction', value, ''); |
+ setProperty('${Device.cssPrefix}flex-direction', value, ''); |
} |
/** Gets the value of "flex-flow" */ |
String get flexFlow => |
- getPropertyValue('flex-flow'); |
+ getPropertyValue('${Device.cssPrefix}flex-flow'); |
/** Sets the value of "flex-flow" */ |
void set flexFlow(String value) { |
- setProperty('flex-flow', value, ''); |
+ setProperty('${Device.cssPrefix}flex-flow', value, ''); |
} |
/** Gets the value of "flex-grow" */ |
String get flexGrow => |
- getPropertyValue('flex-grow'); |
+ getPropertyValue('${Device.cssPrefix}flex-grow'); |
/** Sets the value of "flex-grow" */ |
void set flexGrow(String value) { |
- setProperty('flex-grow', value, ''); |
+ setProperty('${Device.cssPrefix}flex-grow', value, ''); |
} |
/** Gets the value of "flex-shrink" */ |
String get flexShrink => |
- getPropertyValue('flex-shrink'); |
+ getPropertyValue('${Device.cssPrefix}flex-shrink'); |
/** Sets the value of "flex-shrink" */ |
void set flexShrink(String value) { |
- setProperty('flex-shrink', value, ''); |
+ setProperty('${Device.cssPrefix}flex-shrink', value, ''); |
} |
/** Gets the value of "flex-wrap" */ |
String get flexWrap => |
- getPropertyValue('flex-wrap'); |
+ getPropertyValue('${Device.cssPrefix}flex-wrap'); |
/** Sets the value of "flex-wrap" */ |
void set flexWrap(String value) { |
- setProperty('flex-wrap', value, ''); |
+ setProperty('${Device.cssPrefix}flex-wrap', value, ''); |
} |
/** Gets the value of "float" */ |
@@ -1326,6 +1299,24 @@ abstract class CssStyleDeclarationBase { |
setProperty('float', value, ''); |
} |
+ /** Gets the value of "flow-from" */ |
+ String get flowFrom => |
+ getPropertyValue('${Device.cssPrefix}flow-from'); |
+ |
+ /** Sets the value of "flow-from" */ |
+ void set flowFrom(String value) { |
+ setProperty('${Device.cssPrefix}flow-from', value, ''); |
+ } |
+ |
+ /** Gets the value of "flow-into" */ |
+ String get flowInto => |
+ getPropertyValue('${Device.cssPrefix}flow-into'); |
+ |
+ /** Sets the value of "flow-into" */ |
+ void set flowInto(String value) { |
+ setProperty('${Device.cssPrefix}flow-into', value, ''); |
+ } |
+ |
/** Gets the value of "font" */ |
String get font => |
getPropertyValue('font'); |
@@ -1346,20 +1337,20 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "font-feature-settings" */ |
String get fontFeatureSettings => |
- getPropertyValue('font-feature-settings'); |
+ getPropertyValue('${Device.cssPrefix}font-feature-settings'); |
/** Sets the value of "font-feature-settings" */ |
void set fontFeatureSettings(String value) { |
- setProperty('font-feature-settings', value, ''); |
+ setProperty('${Device.cssPrefix}font-feature-settings', value, ''); |
} |
/** Gets the value of "font-kerning" */ |
String get fontKerning => |
- getPropertyValue('font-kerning'); |
+ getPropertyValue('${Device.cssPrefix}font-kerning'); |
/** Sets the value of "font-kerning" */ |
void set fontKerning(String value) { |
- setProperty('font-kerning', value, ''); |
+ setProperty('${Device.cssPrefix}font-kerning', value, ''); |
} |
/** Gets the value of "font-size" */ |
@@ -1373,20 +1364,20 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "font-size-delta" */ |
String get fontSizeDelta => |
- getPropertyValue('font-size-delta'); |
+ getPropertyValue('${Device.cssPrefix}font-size-delta'); |
/** Sets the value of "font-size-delta" */ |
void set fontSizeDelta(String value) { |
- setProperty('font-size-delta', value, ''); |
+ setProperty('${Device.cssPrefix}font-size-delta', value, ''); |
} |
/** Gets the value of "font-smoothing" */ |
String get fontSmoothing => |
- getPropertyValue('font-smoothing'); |
+ getPropertyValue('${Device.cssPrefix}font-smoothing'); |
/** Sets the value of "font-smoothing" */ |
void set fontSmoothing(String value) { |
- setProperty('font-smoothing', value, ''); |
+ setProperty('${Device.cssPrefix}font-smoothing', value, ''); |
} |
/** Gets the value of "font-stretch" */ |
@@ -1418,11 +1409,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "font-variant-ligatures" */ |
String get fontVariantLigatures => |
- getPropertyValue('font-variant-ligatures'); |
+ getPropertyValue('${Device.cssPrefix}font-variant-ligatures'); |
/** Sets the value of "font-variant-ligatures" */ |
void set fontVariantLigatures(String value) { |
- setProperty('font-variant-ligatures', value, ''); |
+ setProperty('${Device.cssPrefix}font-variant-ligatures', value, ''); |
} |
/** Gets the value of "font-weight" */ |
@@ -1434,166 +1425,112 @@ abstract class CssStyleDeclarationBase { |
setProperty('font-weight', value, ''); |
} |
- /** Gets the value of "grid" */ |
- String get grid => |
- getPropertyValue('grid'); |
- |
- /** Sets the value of "grid" */ |
- void set grid(String value) { |
- setProperty('grid', value, ''); |
- } |
- |
- /** Gets the value of "grid-area" */ |
- String get gridArea => |
- getPropertyValue('grid-area'); |
- |
- /** Sets the value of "grid-area" */ |
- void set gridArea(String value) { |
- setProperty('grid-area', value, ''); |
- } |
- |
- /** Gets the value of "grid-auto-columns" */ |
- String get gridAutoColumns => |
- getPropertyValue('grid-auto-columns'); |
- |
- /** Sets the value of "grid-auto-columns" */ |
- void set gridAutoColumns(String value) { |
- setProperty('grid-auto-columns', value, ''); |
- } |
- |
- /** Gets the value of "grid-auto-flow" */ |
- String get gridAutoFlow => |
- getPropertyValue('grid-auto-flow'); |
- |
- /** Sets the value of "grid-auto-flow" */ |
- void set gridAutoFlow(String value) { |
- setProperty('grid-auto-flow', value, ''); |
- } |
- |
- /** Gets the value of "grid-auto-rows" */ |
- String get gridAutoRows => |
- getPropertyValue('grid-auto-rows'); |
- |
- /** Sets the value of "grid-auto-rows" */ |
- void set gridAutoRows(String value) { |
- setProperty('grid-auto-rows', value, ''); |
- } |
- |
/** Gets the value of "grid-column" */ |
String get gridColumn => |
- getPropertyValue('grid-column'); |
+ getPropertyValue('${Device.cssPrefix}grid-column'); |
/** Sets the value of "grid-column" */ |
void set gridColumn(String value) { |
- setProperty('grid-column', value, ''); |
+ setProperty('${Device.cssPrefix}grid-column', value, ''); |
} |
- /** Gets the value of "grid-column-end" */ |
- String get gridColumnEnd => |
- getPropertyValue('grid-column-end'); |
+ /** Gets the value of "grid-columns" */ |
+ String get gridColumns => |
+ getPropertyValue('${Device.cssPrefix}grid-columns'); |
- /** Sets the value of "grid-column-end" */ |
- void set gridColumnEnd(String value) { |
- setProperty('grid-column-end', value, ''); |
- } |
- |
- /** Gets the value of "grid-column-start" */ |
- String get gridColumnStart => |
- getPropertyValue('grid-column-start'); |
- |
- /** Sets the value of "grid-column-start" */ |
- void set gridColumnStart(String value) { |
- setProperty('grid-column-start', value, ''); |
+ /** Sets the value of "grid-columns" */ |
+ void set gridColumns(String value) { |
+ setProperty('${Device.cssPrefix}grid-columns', value, ''); |
} |
/** Gets the value of "grid-row" */ |
String get gridRow => |
- getPropertyValue('grid-row'); |
+ getPropertyValue('${Device.cssPrefix}grid-row'); |
/** Sets the value of "grid-row" */ |
void set gridRow(String value) { |
- setProperty('grid-row', value, ''); |
+ setProperty('${Device.cssPrefix}grid-row', value, ''); |
} |
- /** Gets the value of "grid-row-end" */ |
- String get gridRowEnd => |
- getPropertyValue('grid-row-end'); |
+ /** Gets the value of "grid-rows" */ |
+ String get gridRows => |
+ getPropertyValue('${Device.cssPrefix}grid-rows'); |
- /** Sets the value of "grid-row-end" */ |
- void set gridRowEnd(String value) { |
- setProperty('grid-row-end', value, ''); |
+ /** Sets the value of "grid-rows" */ |
+ void set gridRows(String value) { |
+ setProperty('${Device.cssPrefix}grid-rows', value, ''); |
} |
- /** Gets the value of "grid-row-start" */ |
- String get gridRowStart => |
- getPropertyValue('grid-row-start'); |
+ /** Gets the value of "height" */ |
+ String get height => |
+ getPropertyValue('height'); |
- /** Sets the value of "grid-row-start" */ |
- void set gridRowStart(String value) { |
- setProperty('grid-row-start', value, ''); |
+ /** Sets the value of "height" */ |
+ void set height(String value) { |
+ setProperty('height', value, ''); |
} |
- /** Gets the value of "grid-template" */ |
- String get gridTemplate => |
- getPropertyValue('grid-template'); |
+ /** Gets the value of "highlight" */ |
+ String get highlight => |
+ getPropertyValue('${Device.cssPrefix}highlight'); |
- /** Sets the value of "grid-template" */ |
- void set gridTemplate(String value) { |
- setProperty('grid-template', value, ''); |
+ /** Sets the value of "highlight" */ |
+ void set highlight(String value) { |
+ setProperty('${Device.cssPrefix}highlight', value, ''); |
} |
- /** Gets the value of "grid-template-areas" */ |
- String get gridTemplateAreas => |
- getPropertyValue('grid-template-areas'); |
+ /** Gets the value of "hyphenate-character" */ |
+ String get hyphenateCharacter => |
+ getPropertyValue('${Device.cssPrefix}hyphenate-character'); |
- /** Sets the value of "grid-template-areas" */ |
- void set gridTemplateAreas(String value) { |
- setProperty('grid-template-areas', value, ''); |
+ /** Sets the value of "hyphenate-character" */ |
+ void set hyphenateCharacter(String value) { |
+ setProperty('${Device.cssPrefix}hyphenate-character', value, ''); |
} |
- /** Gets the value of "grid-template-columns" */ |
- String get gridTemplateColumns => |
- getPropertyValue('grid-template-columns'); |
+ /** Gets the value of "hyphenate-limit-after" */ |
+ String get hyphenateLimitAfter => |
+ getPropertyValue('${Device.cssPrefix}hyphenate-limit-after'); |
- /** Sets the value of "grid-template-columns" */ |
- void set gridTemplateColumns(String value) { |
- setProperty('grid-template-columns', value, ''); |
+ /** Sets the value of "hyphenate-limit-after" */ |
+ void set hyphenateLimitAfter(String value) { |
+ setProperty('${Device.cssPrefix}hyphenate-limit-after', value, ''); |
} |
- /** Gets the value of "grid-template-rows" */ |
- String get gridTemplateRows => |
- getPropertyValue('grid-template-rows'); |
+ /** Gets the value of "hyphenate-limit-before" */ |
+ String get hyphenateLimitBefore => |
+ getPropertyValue('${Device.cssPrefix}hyphenate-limit-before'); |
- /** Sets the value of "grid-template-rows" */ |
- void set gridTemplateRows(String value) { |
- setProperty('grid-template-rows', value, ''); |
+ /** Sets the value of "hyphenate-limit-before" */ |
+ void set hyphenateLimitBefore(String value) { |
+ setProperty('${Device.cssPrefix}hyphenate-limit-before', value, ''); |
} |
- /** Gets the value of "height" */ |
- String get height => |
- getPropertyValue('height'); |
+ /** Gets the value of "hyphenate-limit-lines" */ |
+ String get hyphenateLimitLines => |
+ getPropertyValue('${Device.cssPrefix}hyphenate-limit-lines'); |
- /** Sets the value of "height" */ |
- void set height(String value) { |
- setProperty('height', value, ''); |
+ /** Sets the value of "hyphenate-limit-lines" */ |
+ void set hyphenateLimitLines(String value) { |
+ setProperty('${Device.cssPrefix}hyphenate-limit-lines', value, ''); |
} |
- /** Gets the value of "highlight" */ |
- String get highlight => |
- getPropertyValue('highlight'); |
+ /** Gets the value of "hyphens" */ |
+ String get hyphens => |
+ getPropertyValue('${Device.cssPrefix}hyphens'); |
- /** Sets the value of "highlight" */ |
- void set highlight(String value) { |
- setProperty('highlight', value, ''); |
+ /** Sets the value of "hyphens" */ |
+ void set hyphens(String value) { |
+ setProperty('${Device.cssPrefix}hyphens', value, ''); |
} |
- /** Gets the value of "hyphenate-character" */ |
- String get hyphenateCharacter => |
- getPropertyValue('hyphenate-character'); |
+ /** Gets the value of "image-orientation" */ |
+ String get imageOrientation => |
+ getPropertyValue('image-orientation'); |
- /** Sets the value of "hyphenate-character" */ |
- void set hyphenateCharacter(String value) { |
- setProperty('hyphenate-character', value, ''); |
+ /** Sets the value of "image-orientation" */ |
+ void set imageOrientation(String value) { |
+ setProperty('image-orientation', value, ''); |
} |
/** Gets the value of "image-rendering" */ |
@@ -1605,31 +1542,22 @@ abstract class CssStyleDeclarationBase { |
setProperty('image-rendering', value, ''); |
} |
- /** Gets the value of "isolation" */ |
- String get isolation => |
- getPropertyValue('isolation'); |
+ /** Gets the value of "image-resolution" */ |
+ String get imageResolution => |
+ getPropertyValue('image-resolution'); |
- /** Sets the value of "isolation" */ |
- void set isolation(String value) { |
- setProperty('isolation', value, ''); |
+ /** Sets the value of "image-resolution" */ |
+ void set imageResolution(String value) { |
+ setProperty('image-resolution', value, ''); |
} |
/** Gets the value of "justify-content" */ |
String get justifyContent => |
- getPropertyValue('justify-content'); |
+ getPropertyValue('${Device.cssPrefix}justify-content'); |
/** Sets the value of "justify-content" */ |
void set justifyContent(String value) { |
- setProperty('justify-content', value, ''); |
- } |
- |
- /** Gets the value of "justify-self" */ |
- String get justifySelf => |
- getPropertyValue('justify-self'); |
- |
- /** Sets the value of "justify-self" */ |
- void set justifySelf(String value) { |
- setProperty('justify-self', value, ''); |
+ setProperty('${Device.cssPrefix}justify-content', value, ''); |
} |
/** Gets the value of "left" */ |
@@ -1650,31 +1578,49 @@ abstract class CssStyleDeclarationBase { |
setProperty('letter-spacing', value, ''); |
} |
+ /** Gets the value of "line-align" */ |
+ String get lineAlign => |
+ getPropertyValue('${Device.cssPrefix}line-align'); |
+ |
+ /** Sets the value of "line-align" */ |
+ void set lineAlign(String value) { |
+ setProperty('${Device.cssPrefix}line-align', value, ''); |
+ } |
+ |
/** Gets the value of "line-box-contain" */ |
String get lineBoxContain => |
- getPropertyValue('line-box-contain'); |
+ getPropertyValue('${Device.cssPrefix}line-box-contain'); |
/** Sets the value of "line-box-contain" */ |
void set lineBoxContain(String value) { |
- setProperty('line-box-contain', value, ''); |
+ setProperty('${Device.cssPrefix}line-box-contain', value, ''); |
} |
/** Gets the value of "line-break" */ |
String get lineBreak => |
- getPropertyValue('line-break'); |
+ getPropertyValue('${Device.cssPrefix}line-break'); |
/** Sets the value of "line-break" */ |
void set lineBreak(String value) { |
- setProperty('line-break', value, ''); |
+ setProperty('${Device.cssPrefix}line-break', value, ''); |
} |
/** Gets the value of "line-clamp" */ |
String get lineClamp => |
- getPropertyValue('line-clamp'); |
+ getPropertyValue('${Device.cssPrefix}line-clamp'); |
/** Sets the value of "line-clamp" */ |
void set lineClamp(String value) { |
- setProperty('line-clamp', value, ''); |
+ setProperty('${Device.cssPrefix}line-clamp', value, ''); |
+ } |
+ |
+ /** Gets the value of "line-grid" */ |
+ String get lineGrid => |
+ getPropertyValue('${Device.cssPrefix}line-grid'); |
+ |
+ /** Sets the value of "line-grid" */ |
+ void set lineGrid(String value) { |
+ setProperty('${Device.cssPrefix}line-grid', value, ''); |
} |
/** Gets the value of "line-height" */ |
@@ -1686,6 +1632,15 @@ abstract class CssStyleDeclarationBase { |
setProperty('line-height', value, ''); |
} |
+ /** Gets the value of "line-snap" */ |
+ String get lineSnap => |
+ getPropertyValue('${Device.cssPrefix}line-snap'); |
+ |
+ /** Sets the value of "line-snap" */ |
+ void set lineSnap(String value) { |
+ setProperty('${Device.cssPrefix}line-snap', value, ''); |
+ } |
+ |
/** Gets the value of "list-style" */ |
String get listStyle => |
getPropertyValue('list-style'); |
@@ -1724,29 +1679,29 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "locale" */ |
String get locale => |
- getPropertyValue('locale'); |
+ getPropertyValue('${Device.cssPrefix}locale'); |
/** Sets the value of "locale" */ |
void set locale(String value) { |
- setProperty('locale', value, ''); |
+ setProperty('${Device.cssPrefix}locale', value, ''); |
} |
/** Gets the value of "logical-height" */ |
String get logicalHeight => |
- getPropertyValue('logical-height'); |
+ getPropertyValue('${Device.cssPrefix}logical-height'); |
/** Sets the value of "logical-height" */ |
void set logicalHeight(String value) { |
- setProperty('logical-height', value, ''); |
+ setProperty('${Device.cssPrefix}logical-height', value, ''); |
} |
/** Gets the value of "logical-width" */ |
String get logicalWidth => |
- getPropertyValue('logical-width'); |
+ getPropertyValue('${Device.cssPrefix}logical-width'); |
/** Sets the value of "logical-width" */ |
void set logicalWidth(String value) { |
- setProperty('logical-width', value, ''); |
+ setProperty('${Device.cssPrefix}logical-width', value, ''); |
} |
/** Gets the value of "margin" */ |
@@ -1760,38 +1715,38 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "margin-after" */ |
String get marginAfter => |
- getPropertyValue('margin-after'); |
+ getPropertyValue('${Device.cssPrefix}margin-after'); |
/** Sets the value of "margin-after" */ |
void set marginAfter(String value) { |
- setProperty('margin-after', value, ''); |
+ setProperty('${Device.cssPrefix}margin-after', value, ''); |
} |
/** Gets the value of "margin-after-collapse" */ |
String get marginAfterCollapse => |
- getPropertyValue('margin-after-collapse'); |
+ getPropertyValue('${Device.cssPrefix}margin-after-collapse'); |
/** Sets the value of "margin-after-collapse" */ |
void set marginAfterCollapse(String value) { |
- setProperty('margin-after-collapse', value, ''); |
+ setProperty('${Device.cssPrefix}margin-after-collapse', value, ''); |
} |
/** Gets the value of "margin-before" */ |
String get marginBefore => |
- getPropertyValue('margin-before'); |
+ getPropertyValue('${Device.cssPrefix}margin-before'); |
/** Sets the value of "margin-before" */ |
void set marginBefore(String value) { |
- setProperty('margin-before', value, ''); |
+ setProperty('${Device.cssPrefix}margin-before', value, ''); |
} |
/** Gets the value of "margin-before-collapse" */ |
String get marginBeforeCollapse => |
- getPropertyValue('margin-before-collapse'); |
+ getPropertyValue('${Device.cssPrefix}margin-before-collapse'); |
/** Sets the value of "margin-before-collapse" */ |
void set marginBeforeCollapse(String value) { |
- setProperty('margin-before-collapse', value, ''); |
+ setProperty('${Device.cssPrefix}margin-before-collapse', value, ''); |
} |
/** Gets the value of "margin-bottom" */ |
@@ -1805,29 +1760,29 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "margin-bottom-collapse" */ |
String get marginBottomCollapse => |
- getPropertyValue('margin-bottom-collapse'); |
+ getPropertyValue('${Device.cssPrefix}margin-bottom-collapse'); |
/** Sets the value of "margin-bottom-collapse" */ |
void set marginBottomCollapse(String value) { |
- setProperty('margin-bottom-collapse', value, ''); |
+ setProperty('${Device.cssPrefix}margin-bottom-collapse', value, ''); |
} |
/** Gets the value of "margin-collapse" */ |
String get marginCollapse => |
- getPropertyValue('margin-collapse'); |
+ getPropertyValue('${Device.cssPrefix}margin-collapse'); |
/** Sets the value of "margin-collapse" */ |
void set marginCollapse(String value) { |
- setProperty('margin-collapse', value, ''); |
+ setProperty('${Device.cssPrefix}margin-collapse', value, ''); |
} |
/** Gets the value of "margin-end" */ |
String get marginEnd => |
- getPropertyValue('margin-end'); |
+ getPropertyValue('${Device.cssPrefix}margin-end'); |
/** Sets the value of "margin-end" */ |
void set marginEnd(String value) { |
- setProperty('margin-end', value, ''); |
+ setProperty('${Device.cssPrefix}margin-end', value, ''); |
} |
/** Gets the value of "margin-left" */ |
@@ -1850,11 +1805,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "margin-start" */ |
String get marginStart => |
- getPropertyValue('margin-start'); |
+ getPropertyValue('${Device.cssPrefix}margin-start'); |
/** Sets the value of "margin-start" */ |
void set marginStart(String value) { |
- setProperty('margin-start', value, ''); |
+ setProperty('${Device.cssPrefix}margin-start', value, ''); |
} |
/** Gets the value of "margin-top" */ |
@@ -1868,182 +1823,236 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "margin-top-collapse" */ |
String get marginTopCollapse => |
- getPropertyValue('margin-top-collapse'); |
+ getPropertyValue('${Device.cssPrefix}margin-top-collapse'); |
/** Sets the value of "margin-top-collapse" */ |
void set marginTopCollapse(String value) { |
- setProperty('margin-top-collapse', value, ''); |
+ setProperty('${Device.cssPrefix}margin-top-collapse', value, ''); |
+ } |
+ |
+ /** Gets the value of "marquee" */ |
+ String get marquee => |
+ getPropertyValue('${Device.cssPrefix}marquee'); |
+ |
+ /** Sets the value of "marquee" */ |
+ void set marquee(String value) { |
+ setProperty('${Device.cssPrefix}marquee', value, ''); |
+ } |
+ |
+ /** Gets the value of "marquee-direction" */ |
+ String get marqueeDirection => |
+ getPropertyValue('${Device.cssPrefix}marquee-direction'); |
+ |
+ /** Sets the value of "marquee-direction" */ |
+ void set marqueeDirection(String value) { |
+ setProperty('${Device.cssPrefix}marquee-direction', value, ''); |
+ } |
+ |
+ /** Gets the value of "marquee-increment" */ |
+ String get marqueeIncrement => |
+ getPropertyValue('${Device.cssPrefix}marquee-increment'); |
+ |
+ /** Sets the value of "marquee-increment" */ |
+ void set marqueeIncrement(String value) { |
+ setProperty('${Device.cssPrefix}marquee-increment', value, ''); |
+ } |
+ |
+ /** Gets the value of "marquee-repetition" */ |
+ String get marqueeRepetition => |
+ getPropertyValue('${Device.cssPrefix}marquee-repetition'); |
+ |
+ /** Sets the value of "marquee-repetition" */ |
+ void set marqueeRepetition(String value) { |
+ setProperty('${Device.cssPrefix}marquee-repetition', value, ''); |
+ } |
+ |
+ /** Gets the value of "marquee-speed" */ |
+ String get marqueeSpeed => |
+ getPropertyValue('${Device.cssPrefix}marquee-speed'); |
+ |
+ /** Sets the value of "marquee-speed" */ |
+ void set marqueeSpeed(String value) { |
+ setProperty('${Device.cssPrefix}marquee-speed', value, ''); |
+ } |
+ |
+ /** Gets the value of "marquee-style" */ |
+ String get marqueeStyle => |
+ getPropertyValue('${Device.cssPrefix}marquee-style'); |
+ |
+ /** Sets the value of "marquee-style" */ |
+ void set marqueeStyle(String value) { |
+ setProperty('${Device.cssPrefix}marquee-style', value, ''); |
} |
/** Gets the value of "mask" */ |
String get mask => |
- getPropertyValue('mask'); |
+ getPropertyValue('${Device.cssPrefix}mask'); |
/** Sets the value of "mask" */ |
void set mask(String value) { |
- setProperty('mask', value, ''); |
+ setProperty('${Device.cssPrefix}mask', value, ''); |
+ } |
+ |
+ /** Gets the value of "mask-attachment" */ |
+ String get maskAttachment => |
+ getPropertyValue('${Device.cssPrefix}mask-attachment'); |
+ |
+ /** Sets the value of "mask-attachment" */ |
+ void set maskAttachment(String value) { |
+ setProperty('${Device.cssPrefix}mask-attachment', value, ''); |
} |
/** Gets the value of "mask-box-image" */ |
String get maskBoxImage => |
- getPropertyValue('mask-box-image'); |
+ getPropertyValue('${Device.cssPrefix}mask-box-image'); |
/** Sets the value of "mask-box-image" */ |
void set maskBoxImage(String value) { |
- setProperty('mask-box-image', value, ''); |
+ setProperty('${Device.cssPrefix}mask-box-image', value, ''); |
} |
/** Gets the value of "mask-box-image-outset" */ |
String get maskBoxImageOutset => |
- getPropertyValue('mask-box-image-outset'); |
+ getPropertyValue('${Device.cssPrefix}mask-box-image-outset'); |
/** Sets the value of "mask-box-image-outset" */ |
void set maskBoxImageOutset(String value) { |
- setProperty('mask-box-image-outset', value, ''); |
+ setProperty('${Device.cssPrefix}mask-box-image-outset', value, ''); |
} |
/** Gets the value of "mask-box-image-repeat" */ |
String get maskBoxImageRepeat => |
- getPropertyValue('mask-box-image-repeat'); |
+ getPropertyValue('${Device.cssPrefix}mask-box-image-repeat'); |
/** Sets the value of "mask-box-image-repeat" */ |
void set maskBoxImageRepeat(String value) { |
- setProperty('mask-box-image-repeat', value, ''); |
+ setProperty('${Device.cssPrefix}mask-box-image-repeat', value, ''); |
} |
/** Gets the value of "mask-box-image-slice" */ |
String get maskBoxImageSlice => |
- getPropertyValue('mask-box-image-slice'); |
+ getPropertyValue('${Device.cssPrefix}mask-box-image-slice'); |
/** Sets the value of "mask-box-image-slice" */ |
void set maskBoxImageSlice(String value) { |
- setProperty('mask-box-image-slice', value, ''); |
+ setProperty('${Device.cssPrefix}mask-box-image-slice', value, ''); |
} |
/** Gets the value of "mask-box-image-source" */ |
String get maskBoxImageSource => |
- getPropertyValue('mask-box-image-source'); |
+ getPropertyValue('${Device.cssPrefix}mask-box-image-source'); |
/** Sets the value of "mask-box-image-source" */ |
void set maskBoxImageSource(String value) { |
- setProperty('mask-box-image-source', value, ''); |
+ setProperty('${Device.cssPrefix}mask-box-image-source', value, ''); |
} |
/** Gets the value of "mask-box-image-width" */ |
String get maskBoxImageWidth => |
- getPropertyValue('mask-box-image-width'); |
+ getPropertyValue('${Device.cssPrefix}mask-box-image-width'); |
/** Sets the value of "mask-box-image-width" */ |
void set maskBoxImageWidth(String value) { |
- setProperty('mask-box-image-width', value, ''); |
+ setProperty('${Device.cssPrefix}mask-box-image-width', value, ''); |
} |
/** Gets the value of "mask-clip" */ |
String get maskClip => |
- getPropertyValue('mask-clip'); |
+ getPropertyValue('${Device.cssPrefix}mask-clip'); |
/** Sets the value of "mask-clip" */ |
void set maskClip(String value) { |
- setProperty('mask-clip', value, ''); |
+ setProperty('${Device.cssPrefix}mask-clip', value, ''); |
} |
/** Gets the value of "mask-composite" */ |
String get maskComposite => |
- getPropertyValue('mask-composite'); |
+ getPropertyValue('${Device.cssPrefix}mask-composite'); |
/** Sets the value of "mask-composite" */ |
void set maskComposite(String value) { |
- setProperty('mask-composite', value, ''); |
+ setProperty('${Device.cssPrefix}mask-composite', value, ''); |
} |
/** Gets the value of "mask-image" */ |
String get maskImage => |
- getPropertyValue('mask-image'); |
+ getPropertyValue('${Device.cssPrefix}mask-image'); |
/** Sets the value of "mask-image" */ |
void set maskImage(String value) { |
- setProperty('mask-image', value, ''); |
+ setProperty('${Device.cssPrefix}mask-image', value, ''); |
} |
/** Gets the value of "mask-origin" */ |
String get maskOrigin => |
- getPropertyValue('mask-origin'); |
+ getPropertyValue('${Device.cssPrefix}mask-origin'); |
/** Sets the value of "mask-origin" */ |
void set maskOrigin(String value) { |
- setProperty('mask-origin', value, ''); |
+ setProperty('${Device.cssPrefix}mask-origin', value, ''); |
} |
/** Gets the value of "mask-position" */ |
String get maskPosition => |
- getPropertyValue('mask-position'); |
+ getPropertyValue('${Device.cssPrefix}mask-position'); |
/** Sets the value of "mask-position" */ |
void set maskPosition(String value) { |
- setProperty('mask-position', value, ''); |
+ setProperty('${Device.cssPrefix}mask-position', value, ''); |
} |
/** Gets the value of "mask-position-x" */ |
String get maskPositionX => |
- getPropertyValue('mask-position-x'); |
+ getPropertyValue('${Device.cssPrefix}mask-position-x'); |
/** Sets the value of "mask-position-x" */ |
void set maskPositionX(String value) { |
- setProperty('mask-position-x', value, ''); |
+ setProperty('${Device.cssPrefix}mask-position-x', value, ''); |
} |
/** Gets the value of "mask-position-y" */ |
String get maskPositionY => |
- getPropertyValue('mask-position-y'); |
+ getPropertyValue('${Device.cssPrefix}mask-position-y'); |
/** Sets the value of "mask-position-y" */ |
void set maskPositionY(String value) { |
- setProperty('mask-position-y', value, ''); |
+ setProperty('${Device.cssPrefix}mask-position-y', value, ''); |
} |
/** Gets the value of "mask-repeat" */ |
String get maskRepeat => |
- getPropertyValue('mask-repeat'); |
+ getPropertyValue('${Device.cssPrefix}mask-repeat'); |
/** Sets the value of "mask-repeat" */ |
void set maskRepeat(String value) { |
- setProperty('mask-repeat', value, ''); |
+ setProperty('${Device.cssPrefix}mask-repeat', value, ''); |
} |
/** Gets the value of "mask-repeat-x" */ |
String get maskRepeatX => |
- getPropertyValue('mask-repeat-x'); |
+ getPropertyValue('${Device.cssPrefix}mask-repeat-x'); |
/** Sets the value of "mask-repeat-x" */ |
void set maskRepeatX(String value) { |
- setProperty('mask-repeat-x', value, ''); |
+ setProperty('${Device.cssPrefix}mask-repeat-x', value, ''); |
} |
/** Gets the value of "mask-repeat-y" */ |
String get maskRepeatY => |
- getPropertyValue('mask-repeat-y'); |
+ getPropertyValue('${Device.cssPrefix}mask-repeat-y'); |
/** Sets the value of "mask-repeat-y" */ |
void set maskRepeatY(String value) { |
- setProperty('mask-repeat-y', value, ''); |
+ setProperty('${Device.cssPrefix}mask-repeat-y', value, ''); |
} |
/** Gets the value of "mask-size" */ |
String get maskSize => |
- getPropertyValue('mask-size'); |
+ getPropertyValue('${Device.cssPrefix}mask-size'); |
/** Sets the value of "mask-size" */ |
void set maskSize(String value) { |
- setProperty('mask-size', value, ''); |
- } |
- |
- /** Gets the value of "mask-source-type" */ |
- String get maskSourceType => |
- getPropertyValue('mask-source-type'); |
- |
- /** Sets the value of "mask-source-type" */ |
- void set maskSourceType(String value) { |
- setProperty('mask-source-type', value, ''); |
+ setProperty('${Device.cssPrefix}mask-size', value, ''); |
} |
/** Gets the value of "max-height" */ |
@@ -2057,20 +2066,20 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "max-logical-height" */ |
String get maxLogicalHeight => |
- getPropertyValue('max-logical-height'); |
+ getPropertyValue('${Device.cssPrefix}max-logical-height'); |
/** Sets the value of "max-logical-height" */ |
void set maxLogicalHeight(String value) { |
- setProperty('max-logical-height', value, ''); |
+ setProperty('${Device.cssPrefix}max-logical-height', value, ''); |
} |
/** Gets the value of "max-logical-width" */ |
String get maxLogicalWidth => |
- getPropertyValue('max-logical-width'); |
+ getPropertyValue('${Device.cssPrefix}max-logical-width'); |
/** Sets the value of "max-logical-width" */ |
void set maxLogicalWidth(String value) { |
- setProperty('max-logical-width', value, ''); |
+ setProperty('${Device.cssPrefix}max-logical-width', value, ''); |
} |
/** Gets the value of "max-width" */ |
@@ -2102,20 +2111,20 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "min-logical-height" */ |
String get minLogicalHeight => |
- getPropertyValue('min-logical-height'); |
+ getPropertyValue('${Device.cssPrefix}min-logical-height'); |
/** Sets the value of "min-logical-height" */ |
void set minLogicalHeight(String value) { |
- setProperty('min-logical-height', value, ''); |
+ setProperty('${Device.cssPrefix}min-logical-height', value, ''); |
} |
/** Gets the value of "min-logical-width" */ |
String get minLogicalWidth => |
- getPropertyValue('min-logical-width'); |
+ getPropertyValue('${Device.cssPrefix}min-logical-width'); |
/** Sets the value of "min-logical-width" */ |
void set minLogicalWidth(String value) { |
- setProperty('min-logical-width', value, ''); |
+ setProperty('${Device.cssPrefix}min-logical-width', value, ''); |
} |
/** Gets the value of "min-width" */ |
@@ -2136,31 +2145,13 @@ abstract class CssStyleDeclarationBase { |
setProperty('min-zoom', value, ''); |
} |
- /** Gets the value of "mix-blend-mode" */ |
- String get mixBlendMode => |
- getPropertyValue('mix-blend-mode'); |
- |
- /** Sets the value of "mix-blend-mode" */ |
- void set mixBlendMode(String value) { |
- setProperty('mix-blend-mode', value, ''); |
- } |
- |
- /** Gets the value of "object-fit" */ |
- String get objectFit => |
- getPropertyValue('object-fit'); |
- |
- /** Sets the value of "object-fit" */ |
- void set objectFit(String value) { |
- setProperty('object-fit', value, ''); |
- } |
- |
- /** Gets the value of "object-position" */ |
- String get objectPosition => |
- getPropertyValue('object-position'); |
+ /** Gets the value of "nbsp-mode" */ |
+ String get nbspMode => |
+ getPropertyValue('${Device.cssPrefix}nbsp-mode'); |
- /** Sets the value of "object-position" */ |
- void set objectPosition(String value) { |
- setProperty('object-position', value, ''); |
+ /** Sets the value of "nbsp-mode" */ |
+ void set nbspMode(String value) { |
+ setProperty('${Device.cssPrefix}nbsp-mode', value, ''); |
} |
/** Gets the value of "opacity" */ |
@@ -2174,11 +2165,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "order" */ |
String get order => |
- getPropertyValue('order'); |
+ getPropertyValue('${Device.cssPrefix}order'); |
/** Sets the value of "order" */ |
void set order(String value) { |
- setProperty('order', value, ''); |
+ setProperty('${Device.cssPrefix}order', value, ''); |
} |
/** Gets the value of "orientation" */ |
@@ -2253,6 +2244,15 @@ abstract class CssStyleDeclarationBase { |
setProperty('overflow', value, ''); |
} |
+ /** Gets the value of "overflow-scrolling" */ |
+ String get overflowScrolling => |
+ getPropertyValue('${Device.cssPrefix}overflow-scrolling'); |
+ |
+ /** Sets the value of "overflow-scrolling" */ |
+ void set overflowScrolling(String value) { |
+ setProperty('${Device.cssPrefix}overflow-scrolling', value, ''); |
+ } |
+ |
/** Gets the value of "overflow-wrap" */ |
String get overflowWrap => |
getPropertyValue('overflow-wrap'); |
@@ -2291,20 +2291,20 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "padding-after" */ |
String get paddingAfter => |
- getPropertyValue('padding-after'); |
+ getPropertyValue('${Device.cssPrefix}padding-after'); |
/** Sets the value of "padding-after" */ |
void set paddingAfter(String value) { |
- setProperty('padding-after', value, ''); |
+ setProperty('${Device.cssPrefix}padding-after', value, ''); |
} |
/** Gets the value of "padding-before" */ |
String get paddingBefore => |
- getPropertyValue('padding-before'); |
+ getPropertyValue('${Device.cssPrefix}padding-before'); |
/** Sets the value of "padding-before" */ |
void set paddingBefore(String value) { |
- setProperty('padding-before', value, ''); |
+ setProperty('${Device.cssPrefix}padding-before', value, ''); |
} |
/** Gets the value of "padding-bottom" */ |
@@ -2318,11 +2318,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "padding-end" */ |
String get paddingEnd => |
- getPropertyValue('padding-end'); |
+ getPropertyValue('${Device.cssPrefix}padding-end'); |
/** Sets the value of "padding-end" */ |
void set paddingEnd(String value) { |
- setProperty('padding-end', value, ''); |
+ setProperty('${Device.cssPrefix}padding-end', value, ''); |
} |
/** Gets the value of "padding-left" */ |
@@ -2345,11 +2345,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "padding-start" */ |
String get paddingStart => |
- getPropertyValue('padding-start'); |
+ getPropertyValue('${Device.cssPrefix}padding-start'); |
/** Sets the value of "padding-start" */ |
void set paddingStart(String value) { |
- setProperty('padding-start', value, ''); |
+ setProperty('${Device.cssPrefix}padding-start', value, ''); |
} |
/** Gets the value of "padding-top" */ |
@@ -2399,38 +2399,38 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "perspective" */ |
String get perspective => |
- getPropertyValue('perspective'); |
+ getPropertyValue('${Device.cssPrefix}perspective'); |
/** Sets the value of "perspective" */ |
void set perspective(String value) { |
- setProperty('perspective', value, ''); |
+ setProperty('${Device.cssPrefix}perspective', value, ''); |
} |
/** Gets the value of "perspective-origin" */ |
String get perspectiveOrigin => |
- getPropertyValue('perspective-origin'); |
+ getPropertyValue('${Device.cssPrefix}perspective-origin'); |
/** Sets the value of "perspective-origin" */ |
void set perspectiveOrigin(String value) { |
- setProperty('perspective-origin', value, ''); |
+ setProperty('${Device.cssPrefix}perspective-origin', value, ''); |
} |
/** Gets the value of "perspective-origin-x" */ |
String get perspectiveOriginX => |
- getPropertyValue('perspective-origin-x'); |
+ getPropertyValue('${Device.cssPrefix}perspective-origin-x'); |
/** Sets the value of "perspective-origin-x" */ |
void set perspectiveOriginX(String value) { |
- setProperty('perspective-origin-x', value, ''); |
+ setProperty('${Device.cssPrefix}perspective-origin-x', value, ''); |
} |
/** Gets the value of "perspective-origin-y" */ |
String get perspectiveOriginY => |
- getPropertyValue('perspective-origin-y'); |
+ getPropertyValue('${Device.cssPrefix}perspective-origin-y'); |
/** Sets the value of "perspective-origin-y" */ |
void set perspectiveOriginY(String value) { |
- setProperty('perspective-origin-y', value, ''); |
+ setProperty('${Device.cssPrefix}perspective-origin-y', value, ''); |
} |
/** Gets the value of "pointer-events" */ |
@@ -2453,11 +2453,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "print-color-adjust" */ |
String get printColorAdjust => |
- getPropertyValue('print-color-adjust'); |
+ getPropertyValue('${Device.cssPrefix}print-color-adjust'); |
/** Sets the value of "print-color-adjust" */ |
void set printColorAdjust(String value) { |
- setProperty('print-color-adjust', value, ''); |
+ setProperty('${Device.cssPrefix}print-color-adjust', value, ''); |
} |
/** Gets the value of "quotes" */ |
@@ -2469,6 +2469,42 @@ abstract class CssStyleDeclarationBase { |
setProperty('quotes', value, ''); |
} |
+ /** Gets the value of "region-break-after" */ |
+ String get regionBreakAfter => |
+ getPropertyValue('${Device.cssPrefix}region-break-after'); |
+ |
+ /** Sets the value of "region-break-after" */ |
+ void set regionBreakAfter(String value) { |
+ setProperty('${Device.cssPrefix}region-break-after', value, ''); |
+ } |
+ |
+ /** Gets the value of "region-break-before" */ |
+ String get regionBreakBefore => |
+ getPropertyValue('${Device.cssPrefix}region-break-before'); |
+ |
+ /** Sets the value of "region-break-before" */ |
+ void set regionBreakBefore(String value) { |
+ setProperty('${Device.cssPrefix}region-break-before', value, ''); |
+ } |
+ |
+ /** Gets the value of "region-break-inside" */ |
+ String get regionBreakInside => |
+ getPropertyValue('${Device.cssPrefix}region-break-inside'); |
+ |
+ /** Sets the value of "region-break-inside" */ |
+ void set regionBreakInside(String value) { |
+ setProperty('${Device.cssPrefix}region-break-inside', value, ''); |
+ } |
+ |
+ /** Gets the value of "region-overflow" */ |
+ String get regionOverflow => |
+ getPropertyValue('${Device.cssPrefix}region-overflow'); |
+ |
+ /** Sets the value of "region-overflow" */ |
+ void set regionOverflow(String value) { |
+ setProperty('${Device.cssPrefix}region-overflow', value, ''); |
+ } |
+ |
/** Gets the value of "resize" */ |
String get resize => |
getPropertyValue('resize'); |
@@ -2489,56 +2525,47 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "rtl-ordering" */ |
String get rtlOrdering => |
- getPropertyValue('rtl-ordering'); |
+ getPropertyValue('${Device.cssPrefix}rtl-ordering'); |
/** Sets the value of "rtl-ordering" */ |
void set rtlOrdering(String value) { |
- setProperty('rtl-ordering', value, ''); |
+ setProperty('${Device.cssPrefix}rtl-ordering', value, ''); |
} |
- /** Gets the value of "ruby-position" */ |
- String get rubyPosition => |
- getPropertyValue('ruby-position'); |
+ /** Gets the value of "shape-inside" */ |
+ String get shapeInside => |
+ getPropertyValue('${Device.cssPrefix}shape-inside'); |
- /** Sets the value of "ruby-position" */ |
- void set rubyPosition(String value) { |
- setProperty('ruby-position', value, ''); |
- } |
- |
- /** Gets the value of "scroll-behavior" */ |
- String get scrollBehavior => |
- getPropertyValue('scroll-behavior'); |
- |
- /** Sets the value of "scroll-behavior" */ |
- void set scrollBehavior(String value) { |
- setProperty('scroll-behavior', value, ''); |
- } |
- |
- /** Gets the value of "shape-image-threshold" */ |
- String get shapeImageThreshold => |
- getPropertyValue('shape-image-threshold'); |
- |
- /** Sets the value of "shape-image-threshold" */ |
- void set shapeImageThreshold(String value) { |
- setProperty('shape-image-threshold', value, ''); |
+ /** Sets the value of "shape-inside" */ |
+ void set shapeInside(String value) { |
+ setProperty('${Device.cssPrefix}shape-inside', value, ''); |
} |
/** Gets the value of "shape-margin" */ |
String get shapeMargin => |
- getPropertyValue('shape-margin'); |
+ getPropertyValue('${Device.cssPrefix}shape-margin'); |
/** Sets the value of "shape-margin" */ |
void set shapeMargin(String value) { |
- setProperty('shape-margin', value, ''); |
+ setProperty('${Device.cssPrefix}shape-margin', value, ''); |
} |
/** Gets the value of "shape-outside" */ |
String get shapeOutside => |
- getPropertyValue('shape-outside'); |
+ getPropertyValue('${Device.cssPrefix}shape-outside'); |
/** Sets the value of "shape-outside" */ |
void set shapeOutside(String value) { |
- setProperty('shape-outside', value, ''); |
+ setProperty('${Device.cssPrefix}shape-outside', value, ''); |
+ } |
+ |
+ /** Gets the value of "shape-padding" */ |
+ String get shapePadding => |
+ getPropertyValue('${Device.cssPrefix}shape-padding'); |
+ |
+ /** Sets the value of "shape-padding" */ |
+ void set shapePadding(String value) { |
+ setProperty('${Device.cssPrefix}shape-padding', value, ''); |
} |
/** Gets the value of "size" */ |
@@ -2588,11 +2615,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "tap-highlight-color" */ |
String get tapHighlightColor => |
- getPropertyValue('tap-highlight-color'); |
+ getPropertyValue('${Device.cssPrefix}tap-highlight-color'); |
/** Sets the value of "tap-highlight-color" */ |
void set tapHighlightColor(String value) { |
- setProperty('tap-highlight-color', value, ''); |
+ setProperty('${Device.cssPrefix}tap-highlight-color', value, ''); |
} |
/** Gets the value of "text-align" */ |
@@ -2606,20 +2633,20 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "text-align-last" */ |
String get textAlignLast => |
- getPropertyValue('text-align-last'); |
+ getPropertyValue('${Device.cssPrefix}text-align-last'); |
/** Sets the value of "text-align-last" */ |
void set textAlignLast(String value) { |
- setProperty('text-align-last', value, ''); |
+ setProperty('${Device.cssPrefix}text-align-last', value, ''); |
} |
/** Gets the value of "text-combine" */ |
String get textCombine => |
- getPropertyValue('text-combine'); |
+ getPropertyValue('${Device.cssPrefix}text-combine'); |
/** Sets the value of "text-combine" */ |
void set textCombine(String value) { |
- setProperty('text-combine', value, ''); |
+ setProperty('${Device.cssPrefix}text-combine', value, ''); |
} |
/** Gets the value of "text-decoration" */ |
@@ -2631,85 +2658,76 @@ abstract class CssStyleDeclarationBase { |
setProperty('text-decoration', value, ''); |
} |
- /** Gets the value of "text-decoration-color" */ |
- String get textDecorationColor => |
- getPropertyValue('text-decoration-color'); |
- |
- /** Sets the value of "text-decoration-color" */ |
- void set textDecorationColor(String value) { |
- setProperty('text-decoration-color', value, ''); |
- } |
- |
/** Gets the value of "text-decoration-line" */ |
String get textDecorationLine => |
- getPropertyValue('text-decoration-line'); |
+ getPropertyValue('${Device.cssPrefix}text-decoration-line'); |
/** Sets the value of "text-decoration-line" */ |
void set textDecorationLine(String value) { |
- setProperty('text-decoration-line', value, ''); |
+ setProperty('${Device.cssPrefix}text-decoration-line', value, ''); |
} |
/** Gets the value of "text-decoration-style" */ |
String get textDecorationStyle => |
- getPropertyValue('text-decoration-style'); |
+ getPropertyValue('${Device.cssPrefix}text-decoration-style'); |
/** Sets the value of "text-decoration-style" */ |
void set textDecorationStyle(String value) { |
- setProperty('text-decoration-style', value, ''); |
+ setProperty('${Device.cssPrefix}text-decoration-style', value, ''); |
} |
/** Gets the value of "text-decorations-in-effect" */ |
String get textDecorationsInEffect => |
- getPropertyValue('text-decorations-in-effect'); |
+ getPropertyValue('${Device.cssPrefix}text-decorations-in-effect'); |
/** Sets the value of "text-decorations-in-effect" */ |
void set textDecorationsInEffect(String value) { |
- setProperty('text-decorations-in-effect', value, ''); |
+ setProperty('${Device.cssPrefix}text-decorations-in-effect', value, ''); |
} |
/** Gets the value of "text-emphasis" */ |
String get textEmphasis => |
- getPropertyValue('text-emphasis'); |
+ getPropertyValue('${Device.cssPrefix}text-emphasis'); |
/** Sets the value of "text-emphasis" */ |
void set textEmphasis(String value) { |
- setProperty('text-emphasis', value, ''); |
+ setProperty('${Device.cssPrefix}text-emphasis', value, ''); |
} |
/** Gets the value of "text-emphasis-color" */ |
String get textEmphasisColor => |
- getPropertyValue('text-emphasis-color'); |
+ getPropertyValue('${Device.cssPrefix}text-emphasis-color'); |
/** Sets the value of "text-emphasis-color" */ |
void set textEmphasisColor(String value) { |
- setProperty('text-emphasis-color', value, ''); |
+ setProperty('${Device.cssPrefix}text-emphasis-color', value, ''); |
} |
/** Gets the value of "text-emphasis-position" */ |
String get textEmphasisPosition => |
- getPropertyValue('text-emphasis-position'); |
+ getPropertyValue('${Device.cssPrefix}text-emphasis-position'); |
/** Sets the value of "text-emphasis-position" */ |
void set textEmphasisPosition(String value) { |
- setProperty('text-emphasis-position', value, ''); |
+ setProperty('${Device.cssPrefix}text-emphasis-position', value, ''); |
} |
/** Gets the value of "text-emphasis-style" */ |
String get textEmphasisStyle => |
- getPropertyValue('text-emphasis-style'); |
+ getPropertyValue('${Device.cssPrefix}text-emphasis-style'); |
/** Sets the value of "text-emphasis-style" */ |
void set textEmphasisStyle(String value) { |
- setProperty('text-emphasis-style', value, ''); |
+ setProperty('${Device.cssPrefix}text-emphasis-style', value, ''); |
} |
/** Gets the value of "text-fill-color" */ |
String get textFillColor => |
- getPropertyValue('text-fill-color'); |
+ getPropertyValue('${Device.cssPrefix}text-fill-color'); |
/** Sets the value of "text-fill-color" */ |
void set textFillColor(String value) { |
- setProperty('text-fill-color', value, ''); |
+ setProperty('${Device.cssPrefix}text-fill-color', value, ''); |
} |
/** Gets the value of "text-indent" */ |
@@ -2721,13 +2739,13 @@ abstract class CssStyleDeclarationBase { |
setProperty('text-indent', value, ''); |
} |
- /** Gets the value of "text-justify" */ |
- String get textJustify => |
- getPropertyValue('text-justify'); |
+ /** Gets the value of "text-line-through" */ |
+ String get textLineThrough => |
+ getPropertyValue('text-line-through'); |
- /** Sets the value of "text-justify" */ |
- void set textJustify(String value) { |
- setProperty('text-justify', value, ''); |
+ /** Sets the value of "text-line-through" */ |
+ void set textLineThrough(String value) { |
+ setProperty('text-line-through', value, ''); |
} |
/** Gets the value of "text-line-through-color" */ |
@@ -2768,11 +2786,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "text-orientation" */ |
String get textOrientation => |
- getPropertyValue('text-orientation'); |
+ getPropertyValue('${Device.cssPrefix}text-orientation'); |
/** Sets the value of "text-orientation" */ |
void set textOrientation(String value) { |
- setProperty('text-orientation', value, ''); |
+ setProperty('${Device.cssPrefix}text-orientation', value, ''); |
} |
/** Gets the value of "text-overflow" */ |
@@ -2784,6 +2802,15 @@ abstract class CssStyleDeclarationBase { |
setProperty('text-overflow', value, ''); |
} |
+ /** Gets the value of "text-overline" */ |
+ String get textOverline => |
+ getPropertyValue('text-overline'); |
+ |
+ /** Sets the value of "text-overline" */ |
+ void set textOverline(String value) { |
+ setProperty('text-overline', value, ''); |
+ } |
+ |
/** Gets the value of "text-overline-color" */ |
String get textOverlineColor => |
getPropertyValue('text-overline-color'); |
@@ -2831,11 +2858,11 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "text-security" */ |
String get textSecurity => |
- getPropertyValue('text-security'); |
+ getPropertyValue('${Device.cssPrefix}text-security'); |
/** Sets the value of "text-security" */ |
void set textSecurity(String value) { |
- setProperty('text-security', value, ''); |
+ setProperty('${Device.cssPrefix}text-security', value, ''); |
} |
/** Gets the value of "text-shadow" */ |
@@ -2847,31 +2874,40 @@ abstract class CssStyleDeclarationBase { |
setProperty('text-shadow', value, ''); |
} |
+ /** Gets the value of "text-size-adjust" */ |
+ String get textSizeAdjust => |
+ getPropertyValue('${Device.cssPrefix}text-size-adjust'); |
+ |
+ /** Sets the value of "text-size-adjust" */ |
+ void set textSizeAdjust(String value) { |
+ setProperty('${Device.cssPrefix}text-size-adjust', value, ''); |
+ } |
+ |
/** Gets the value of "text-stroke" */ |
String get textStroke => |
- getPropertyValue('text-stroke'); |
+ getPropertyValue('${Device.cssPrefix}text-stroke'); |
/** Sets the value of "text-stroke" */ |
void set textStroke(String value) { |
- setProperty('text-stroke', value, ''); |
+ setProperty('${Device.cssPrefix}text-stroke', value, ''); |
} |
/** Gets the value of "text-stroke-color" */ |
String get textStrokeColor => |
- getPropertyValue('text-stroke-color'); |
+ getPropertyValue('${Device.cssPrefix}text-stroke-color'); |
/** Sets the value of "text-stroke-color" */ |
void set textStrokeColor(String value) { |
- setProperty('text-stroke-color', value, ''); |
+ setProperty('${Device.cssPrefix}text-stroke-color', value, ''); |
} |
/** Gets the value of "text-stroke-width" */ |
String get textStrokeWidth => |
- getPropertyValue('text-stroke-width'); |
+ getPropertyValue('${Device.cssPrefix}text-stroke-width'); |
/** Sets the value of "text-stroke-width" */ |
void set textStrokeWidth(String value) { |
- setProperty('text-stroke-width', value, ''); |
+ setProperty('${Device.cssPrefix}text-stroke-width', value, ''); |
} |
/** Gets the value of "text-transform" */ |
@@ -2883,6 +2919,15 @@ abstract class CssStyleDeclarationBase { |
setProperty('text-transform', value, ''); |
} |
+ /** Gets the value of "text-underline" */ |
+ String get textUnderline => |
+ getPropertyValue('text-underline'); |
+ |
+ /** Sets the value of "text-underline" */ |
+ void set textUnderline(String value) { |
+ setProperty('text-underline', value, ''); |
+ } |
+ |
/** Gets the value of "text-underline-color" */ |
String get textUnderlineColor => |
getPropertyValue('text-underline-color'); |
@@ -2901,15 +2946,6 @@ abstract class CssStyleDeclarationBase { |
setProperty('text-underline-mode', value, ''); |
} |
- /** Gets the value of "text-underline-position" */ |
- String get textUnderlinePosition => |
- getPropertyValue('text-underline-position'); |
- |
- /** Sets the value of "text-underline-position" */ |
- void set textUnderlinePosition(String value) { |
- setProperty('text-underline-position', value, ''); |
- } |
- |
/** Gets the value of "text-underline-style" */ |
String get textUnderlineStyle => |
getPropertyValue('text-underline-style'); |
@@ -2937,127 +2973,111 @@ abstract class CssStyleDeclarationBase { |
setProperty('top', value, ''); |
} |
- /** Gets the value of "touch-action" */ |
- String get touchAction => |
- getPropertyValue('touch-action'); |
- |
- /** Sets the value of "touch-action" */ |
- void set touchAction(String value) { |
- setProperty('touch-action', value, ''); |
- } |
- |
- /** Gets the value of "touch-action-delay" */ |
- String get touchActionDelay => |
- getPropertyValue('touch-action-delay'); |
- |
- /** Sets the value of "touch-action-delay" */ |
- void set touchActionDelay(String value) { |
- setProperty('touch-action-delay', value, ''); |
- } |
- |
/** Gets the value of "transform" */ |
String get transform => |
- getPropertyValue('transform'); |
+ getPropertyValue('${Device.cssPrefix}transform'); |
/** Sets the value of "transform" */ |
void set transform(String value) { |
- setProperty('transform', value, ''); |
+ setProperty('${Device.cssPrefix}transform', value, ''); |
} |
/** Gets the value of "transform-origin" */ |
String get transformOrigin => |
- getPropertyValue('transform-origin'); |
+ getPropertyValue('${Device.cssPrefix}transform-origin'); |
/** Sets the value of "transform-origin" */ |
void set transformOrigin(String value) { |
- setProperty('transform-origin', value, ''); |
+ setProperty('${Device.cssPrefix}transform-origin', value, ''); |
} |
/** Gets the value of "transform-origin-x" */ |
String get transformOriginX => |
- getPropertyValue('transform-origin-x'); |
+ getPropertyValue('${Device.cssPrefix}transform-origin-x'); |
/** Sets the value of "transform-origin-x" */ |
void set transformOriginX(String value) { |
- setProperty('transform-origin-x', value, ''); |
+ setProperty('${Device.cssPrefix}transform-origin-x', value, ''); |
} |
/** Gets the value of "transform-origin-y" */ |
String get transformOriginY => |
- getPropertyValue('transform-origin-y'); |
+ getPropertyValue('${Device.cssPrefix}transform-origin-y'); |
/** Sets the value of "transform-origin-y" */ |
void set transformOriginY(String value) { |
- setProperty('transform-origin-y', value, ''); |
+ setProperty('${Device.cssPrefix}transform-origin-y', value, ''); |
} |
/** Gets the value of "transform-origin-z" */ |
String get transformOriginZ => |
- getPropertyValue('transform-origin-z'); |
+ getPropertyValue('${Device.cssPrefix}transform-origin-z'); |
/** Sets the value of "transform-origin-z" */ |
void set transformOriginZ(String value) { |
- setProperty('transform-origin-z', value, ''); |
+ setProperty('${Device.cssPrefix}transform-origin-z', value, ''); |
} |
/** Gets the value of "transform-style" */ |
String get transformStyle => |
- getPropertyValue('transform-style'); |
+ getPropertyValue('${Device.cssPrefix}transform-style'); |
/** Sets the value of "transform-style" */ |
void set transformStyle(String value) { |
- setProperty('transform-style', value, ''); |
+ setProperty('${Device.cssPrefix}transform-style', value, ''); |
} |
- /** Gets the value of "transition" */@SupportedBrowser(SupportedBrowser.CHROME) |
+ /** Gets the value of "transition" */ |
+ @SupportedBrowser(SupportedBrowser.CHROME) |
@SupportedBrowser(SupportedBrowser.FIREFOX) |
@SupportedBrowser(SupportedBrowser.IE, '10') |
@SupportedBrowser(SupportedBrowser.SAFARI) |
String get transition => |
- getPropertyValue('transition'); |
+ getPropertyValue('${Device.cssPrefix}transition'); |
- /** Sets the value of "transition" */@SupportedBrowser(SupportedBrowser.CHROME) |
+ /** Sets the value of "transition" */ |
+ @SupportedBrowser(SupportedBrowser.CHROME) |
@SupportedBrowser(SupportedBrowser.FIREFOX) |
@SupportedBrowser(SupportedBrowser.IE, '10') |
@SupportedBrowser(SupportedBrowser.SAFARI) |
void set transition(String value) { |
- setProperty('transition', value, ''); |
+ setProperty('${Device.cssPrefix}transition', value, ''); |
} |
/** Gets the value of "transition-delay" */ |
String get transitionDelay => |
- getPropertyValue('transition-delay'); |
+ getPropertyValue('${Device.cssPrefix}transition-delay'); |
/** Sets the value of "transition-delay" */ |
void set transitionDelay(String value) { |
- setProperty('transition-delay', value, ''); |
+ setProperty('${Device.cssPrefix}transition-delay', value, ''); |
} |
/** Gets the value of "transition-duration" */ |
String get transitionDuration => |
- getPropertyValue('transition-duration'); |
+ getPropertyValue('${Device.cssPrefix}transition-duration'); |
/** Sets the value of "transition-duration" */ |
void set transitionDuration(String value) { |
- setProperty('transition-duration', value, ''); |
+ setProperty('${Device.cssPrefix}transition-duration', value, ''); |
} |
/** Gets the value of "transition-property" */ |
String get transitionProperty => |
- getPropertyValue('transition-property'); |
+ getPropertyValue('${Device.cssPrefix}transition-property'); |
/** Sets the value of "transition-property" */ |
void set transitionProperty(String value) { |
- setProperty('transition-property', value, ''); |
+ setProperty('${Device.cssPrefix}transition-property', value, ''); |
} |
/** Gets the value of "transition-timing-function" */ |
String get transitionTimingFunction => |
- getPropertyValue('transition-timing-function'); |
+ getPropertyValue('${Device.cssPrefix}transition-timing-function'); |
/** Sets the value of "transition-timing-function" */ |
void set transitionTimingFunction(String value) { |
- setProperty('transition-timing-function', value, ''); |
+ setProperty('${Device.cssPrefix}transition-timing-function', value, ''); |
} |
/** Gets the value of "unicode-bidi" */ |
@@ -3080,29 +3100,29 @@ abstract class CssStyleDeclarationBase { |
/** Gets the value of "user-drag" */ |
String get userDrag => |
- getPropertyValue('user-drag'); |
+ getPropertyValue('${Device.cssPrefix}user-drag'); |
/** Sets the value of "user-drag" */ |
void set userDrag(String value) { |
- setProperty('user-drag', value, ''); |
+ setProperty('${Device.cssPrefix}user-drag', value, ''); |
} |
/** Gets the value of "user-modify" */ |
String get userModify => |
- getPropertyValue('user-modify'); |
+ getPropertyValue('${Device.cssPrefix}user-modify'); |
/** Sets the value of "user-modify" */ |
void set userModify(String value) { |
- setProperty('user-modify', value, ''); |
+ setProperty('${Device.cssPrefix}user-modify', value, ''); |
} |
/** Gets the value of "user-select" */ |
String get userSelect => |
- getPropertyValue('user-select'); |
+ getPropertyValue('${Device.cssPrefix}user-select'); |
/** Sets the value of "user-select" */ |
void set userSelect(String value) { |
- setProperty('user-select', value, ''); |
+ setProperty('${Device.cssPrefix}user-select', value, ''); |
} |
/** Gets the value of "user-zoom" */ |
@@ -3159,15 +3179,6 @@ abstract class CssStyleDeclarationBase { |
setProperty('width', value, ''); |
} |
- /** Gets the value of "will-change" */ |
- String get willChange => |
- getPropertyValue('will-change'); |
- |
- /** Sets the value of "will-change" */ |
- void set willChange(String value) { |
- setProperty('will-change', value, ''); |
- } |
- |
/** Gets the value of "word-break" */ |
String get wordBreak => |
getPropertyValue('word-break'); |
@@ -3195,31 +3206,40 @@ abstract class CssStyleDeclarationBase { |
setProperty('word-wrap', value, ''); |
} |
+ /** Gets the value of "wrap" */ |
+ String get wrap => |
+ getPropertyValue('${Device.cssPrefix}wrap'); |
+ |
+ /** Sets the value of "wrap" */ |
+ void set wrap(String value) { |
+ setProperty('${Device.cssPrefix}wrap', value, ''); |
+ } |
+ |
/** Gets the value of "wrap-flow" */ |
String get wrapFlow => |
- getPropertyValue('wrap-flow'); |
+ getPropertyValue('${Device.cssPrefix}wrap-flow'); |
/** Sets the value of "wrap-flow" */ |
void set wrapFlow(String value) { |
- setProperty('wrap-flow', value, ''); |
+ setProperty('${Device.cssPrefix}wrap-flow', value, ''); |
} |
/** Gets the value of "wrap-through" */ |
String get wrapThrough => |
- getPropertyValue('wrap-through'); |
+ getPropertyValue('${Device.cssPrefix}wrap-through'); |
/** Sets the value of "wrap-through" */ |
void set wrapThrough(String value) { |
- setProperty('wrap-through', value, ''); |
+ setProperty('${Device.cssPrefix}wrap-through', value, ''); |
} |
/** Gets the value of "writing-mode" */ |
String get writingMode => |
- getPropertyValue('writing-mode'); |
+ getPropertyValue('${Device.cssPrefix}writing-mode'); |
/** Sets the value of "writing-mode" */ |
void set writingMode(String value) { |
- setProperty('writing-mode', value, ''); |
+ setProperty('${Device.cssPrefix}writing-mode', value, ''); |
} |
/** Gets the value of "z-index" */ |