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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 966803004: Generate fast-path CssStyleDeclaration properties from browser info (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | tools/dom/scripts/cssProperties.html » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index e954d5244db398a1b416b13f5f9a6ec930a25606..7f4c520c1fa41d825e5235b2110a513f64d97093 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -3310,7 +3310,7 @@ class CssRule extends Interceptor {
@DomName('CSSStyleDeclaration')
@Native("CSSStyleDeclaration,MSStyleCSSProperties,CSS2Properties")
- class CssStyleDeclaration extends Interceptor with
+class CssStyleDeclaration extends Interceptor with
CssStyleDeclarationBase {
factory CssStyleDeclaration() => new CssStyleDeclaration.css('');
@@ -3430,6 +3430,927 @@ class CssRule extends Interceptor {
@DocsEditable()
String removeProperty(String propertyName) native;
+
+ /** Gets the value of "background" */
+ String get background => JS('String', '#.background', this);
+
+ /** Sets the value of "background" */
+ void set background(String value) {
+ JS('', '#.background = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-attachment" */
+ String get backgroundAttachment => JS('String', '#.backgroundAttachment', this);
+
+ /** Sets the value of "background-attachment" */
+ void set backgroundAttachment(String value) {
+ JS('', '#.backgroundAttachment = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-clip" */
+ String get backgroundClip => JS('String', '#.backgroundClip', this);
+
+ /** Sets the value of "background-clip" */
+ void set backgroundClip(String value) {
+ JS('', '#.backgroundClip = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-color" */
+ String get backgroundColor => JS('String', '#.backgroundColor', this);
+
+ /** Sets the value of "background-color" */
+ void set backgroundColor(String value) {
+ JS('', '#.backgroundColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-image" */
+ String get backgroundImage => JS('String', '#.backgroundImage', this);
+
+ /** Sets the value of "background-image" */
+ void set backgroundImage(String value) {
+ JS('', '#.backgroundImage = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-origin" */
+ String get backgroundOrigin => JS('String', '#.backgroundOrigin', this);
+
+ /** Sets the value of "background-origin" */
+ void set backgroundOrigin(String value) {
+ JS('', '#.backgroundOrigin = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-position" */
+ String get backgroundPosition => JS('String', '#.backgroundPosition', this);
+
+ /** Sets the value of "background-position" */
+ void set backgroundPosition(String value) {
+ JS('', '#.backgroundPosition = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-repeat" */
+ String get backgroundRepeat => JS('String', '#.backgroundRepeat', this);
+
+ /** Sets the value of "background-repeat" */
+ void set backgroundRepeat(String value) {
+ JS('', '#.backgroundRepeat = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "background-size" */
+ String get backgroundSize => JS('String', '#.backgroundSize', this);
+
+ /** Sets the value of "background-size" */
+ void set backgroundSize(String value) {
+ JS('', '#.backgroundSize = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border" */
+ String get border => JS('String', '#.border', this);
+
+ /** Sets the value of "border" */
+ void set border(String value) {
+ JS('', '#.border = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-bottom" */
+ String get borderBottom => JS('String', '#.borderBottom', this);
+
+ /** Sets the value of "border-bottom" */
+ void set borderBottom(String value) {
+ JS('', '#.borderBottom = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-bottom-color" */
+ String get borderBottomColor => JS('String', '#.borderBottomColor', this);
+
+ /** Sets the value of "border-bottom-color" */
+ void set borderBottomColor(String value) {
+ JS('', '#.borderBottomColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-bottom-left-radius" */
+ String get borderBottomLeftRadius => JS('String', '#.borderBottomLeftRadius', this);
+
+ /** Sets the value of "border-bottom-left-radius" */
+ void set borderBottomLeftRadius(String value) {
+ JS('', '#.borderBottomLeftRadius = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-bottom-right-radius" */
+ String get borderBottomRightRadius => JS('String', '#.borderBottomRightRadius', this);
+
+ /** Sets the value of "border-bottom-right-radius" */
+ void set borderBottomRightRadius(String value) {
+ JS('', '#.borderBottomRightRadius = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-bottom-style" */
+ String get borderBottomStyle => JS('String', '#.borderBottomStyle', this);
+
+ /** Sets the value of "border-bottom-style" */
+ void set borderBottomStyle(String value) {
+ JS('', '#.borderBottomStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-bottom-width" */
+ String get borderBottomWidth => JS('String', '#.borderBottomWidth', this);
+
+ /** Sets the value of "border-bottom-width" */
+ void set borderBottomWidth(String value) {
+ JS('', '#.borderBottomWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-collapse" */
+ String get borderCollapse => JS('String', '#.borderCollapse', this);
+
+ /** Sets the value of "border-collapse" */
+ void set borderCollapse(String value) {
+ JS('', '#.borderCollapse = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-color" */
+ String get borderColor => JS('String', '#.borderColor', this);
+
+ /** Sets the value of "border-color" */
+ void set borderColor(String value) {
+ JS('', '#.borderColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-left" */
+ String get borderLeft => JS('String', '#.borderLeft', this);
+
+ /** Sets the value of "border-left" */
+ void set borderLeft(String value) {
+ JS('', '#.borderLeft = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-left-color" */
+ String get borderLeftColor => JS('String', '#.borderLeftColor', this);
+
+ /** Sets the value of "border-left-color" */
+ void set borderLeftColor(String value) {
+ JS('', '#.borderLeftColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-left-style" */
+ String get borderLeftStyle => JS('String', '#.borderLeftStyle', this);
+
+ /** Sets the value of "border-left-style" */
+ void set borderLeftStyle(String value) {
+ JS('', '#.borderLeftStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-left-width" */
+ String get borderLeftWidth => JS('String', '#.borderLeftWidth', this);
+
+ /** Sets the value of "border-left-width" */
+ void set borderLeftWidth(String value) {
+ JS('', '#.borderLeftWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-radius" */
+ String get borderRadius => JS('String', '#.borderRadius', this);
+
+ /** Sets the value of "border-radius" */
+ void set borderRadius(String value) {
+ JS('', '#.borderRadius = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-right" */
+ String get borderRight => JS('String', '#.borderRight', this);
+
+ /** Sets the value of "border-right" */
+ void set borderRight(String value) {
+ JS('', '#.borderRight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-right-color" */
+ String get borderRightColor => JS('String', '#.borderRightColor', this);
+
+ /** Sets the value of "border-right-color" */
+ void set borderRightColor(String value) {
+ JS('', '#.borderRightColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-right-style" */
+ String get borderRightStyle => JS('String', '#.borderRightStyle', this);
+
+ /** Sets the value of "border-right-style" */
+ void set borderRightStyle(String value) {
+ JS('', '#.borderRightStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-right-width" */
+ String get borderRightWidth => JS('String', '#.borderRightWidth', this);
+
+ /** Sets the value of "border-right-width" */
+ void set borderRightWidth(String value) {
+ JS('', '#.borderRightWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-spacing" */
+ String get borderSpacing => JS('String', '#.borderSpacing', this);
+
+ /** Sets the value of "border-spacing" */
+ void set borderSpacing(String value) {
+ JS('', '#.borderSpacing = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-style" */
+ String get borderStyle => JS('String', '#.borderStyle', this);
+
+ /** Sets the value of "border-style" */
+ void set borderStyle(String value) {
+ JS('', '#.borderStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-top" */
+ String get borderTop => JS('String', '#.borderTop', this);
+
+ /** Sets the value of "border-top" */
+ void set borderTop(String value) {
+ JS('', '#.borderTop = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-top-color" */
+ String get borderTopColor => JS('String', '#.borderTopColor', this);
+
+ /** Sets the value of "border-top-color" */
+ void set borderTopColor(String value) {
+ JS('', '#.borderTopColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-top-left-radius" */
+ String get borderTopLeftRadius => JS('String', '#.borderTopLeftRadius', this);
+
+ /** Sets the value of "border-top-left-radius" */
+ void set borderTopLeftRadius(String value) {
+ JS('', '#.borderTopLeftRadius = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-top-right-radius" */
+ String get borderTopRightRadius => JS('String', '#.borderTopRightRadius', this);
+
+ /** Sets the value of "border-top-right-radius" */
+ void set borderTopRightRadius(String value) {
+ JS('', '#.borderTopRightRadius = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-top-style" */
+ String get borderTopStyle => JS('String', '#.borderTopStyle', this);
+
+ /** Sets the value of "border-top-style" */
+ void set borderTopStyle(String value) {
+ JS('', '#.borderTopStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-top-width" */
+ String get borderTopWidth => JS('String', '#.borderTopWidth', this);
+
+ /** Sets the value of "border-top-width" */
+ void set borderTopWidth(String value) {
+ JS('', '#.borderTopWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "border-width" */
+ String get borderWidth => JS('String', '#.borderWidth', this);
+
+ /** Sets the value of "border-width" */
+ void set borderWidth(String value) {
+ JS('', '#.borderWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "bottom" */
+ String get bottom => JS('String', '#.bottom', this);
+
+ /** Sets the value of "bottom" */
+ void set bottom(String value) {
+ JS('', '#.bottom = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "box-shadow" */
+ String get boxShadow => JS('String', '#.boxShadow', this);
+
+ /** Sets the value of "box-shadow" */
+ void set boxShadow(String value) {
+ JS('', '#.boxShadow = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "box-sizing" */
+ String get boxSizing => JS('String', '#.boxSizing', this);
+
+ /** Sets the value of "box-sizing" */
+ void set boxSizing(String value) {
+ JS('', '#.boxSizing = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "caption-side" */
+ String get captionSide => JS('String', '#.captionSide', this);
+
+ /** Sets the value of "caption-side" */
+ void set captionSide(String value) {
+ JS('', '#.captionSide = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "clear" */
+ String get clear => JS('String', '#.clear', this);
+
+ /** Sets the value of "clear" */
+ void set clear(String value) {
+ JS('', '#.clear = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "clip" */
+ String get clip => JS('String', '#.clip', this);
+
+ /** Sets the value of "clip" */
+ void set clip(String value) {
+ JS('', '#.clip = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "clip-path" */
+ String get clipPath => JS('String', '#.clipPath', this);
+
+ /** Sets the value of "clip-path" */
+ void set clipPath(String value) {
+ JS('', '#.clipPath = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "color" */
+ String get color => JS('String', '#.color', this);
+
+ /** Sets the value of "color" */
+ void set color(String value) {
+ JS('', '#.color = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "content" */
+ String get content => JS('String', '#.content', this);
+
+ /** Sets the value of "content" */
+ void set content(String value) {
+ JS('', '#.content = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "counter-increment" */
+ String get counterIncrement => JS('String', '#.counterIncrement', this);
+
+ /** Sets the value of "counter-increment" */
+ void set counterIncrement(String value) {
+ JS('', '#.counterIncrement = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "counter-reset" */
+ String get counterReset => JS('String', '#.counterReset', this);
+
+ /** Sets the value of "counter-reset" */
+ void set counterReset(String value) {
+ JS('', '#.counterReset = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "cursor" */
+ String get cursor => JS('String', '#.cursor', this);
+
+ /** Sets the value of "cursor" */
+ void set cursor(String value) {
+ JS('', '#.cursor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "direction" */
+ String get direction => JS('String', '#.direction', this);
+
+ /** Sets the value of "direction" */
+ void set direction(String value) {
+ JS('', '#.direction = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "display" */
+ String get display => JS('String', '#.display', this);
+
+ /** Sets the value of "display" */
+ void set display(String value) {
+ JS('', '#.display = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "empty-cells" */
+ String get emptyCells => JS('String', '#.emptyCells', this);
+
+ /** Sets the value of "empty-cells" */
+ void set emptyCells(String value) {
+ JS('', '#.emptyCells = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "filter" */
+ String get filter => JS('String', '#.filter', this);
+
+ /** Sets the value of "filter" */
+ void set filter(String value) {
+ JS('', '#.filter = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font" */
+ String get font => JS('String', '#.font', this);
+
+ /** Sets the value of "font" */
+ void set font(String value) {
+ JS('', '#.font = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font-family" */
+ String get fontFamily => JS('String', '#.fontFamily', this);
+
+ /** Sets the value of "font-family" */
+ void set fontFamily(String value) {
+ JS('', '#.fontFamily = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font-size" */
+ String get fontSize => JS('String', '#.fontSize', this);
+
+ /** Sets the value of "font-size" */
+ void set fontSize(String value) {
+ JS('', '#.fontSize = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font-stretch" */
+ String get fontStretch => JS('String', '#.fontStretch', this);
+
+ /** Sets the value of "font-stretch" */
+ void set fontStretch(String value) {
+ JS('', '#.fontStretch = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font-style" */
+ String get fontStyle => JS('String', '#.fontStyle', this);
+
+ /** Sets the value of "font-style" */
+ void set fontStyle(String value) {
+ JS('', '#.fontStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font-variant" */
+ String get fontVariant => JS('String', '#.fontVariant', this);
+
+ /** Sets the value of "font-variant" */
+ void set fontVariant(String value) {
+ JS('', '#.fontVariant = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "font-weight" */
+ String get fontWeight => JS('String', '#.fontWeight', this);
+
+ /** Sets the value of "font-weight" */
+ void set fontWeight(String value) {
+ JS('', '#.fontWeight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "height" */
+ String get height => JS('String', '#.height', this);
+
+ /** Sets the value of "height" */
+ void set height(String value) {
+ JS('', '#.height = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "left" */
+ String get left => JS('String', '#.left', this);
+
+ /** Sets the value of "left" */
+ void set left(String value) {
+ JS('', '#.left = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "letter-spacing" */
+ String get letterSpacing => JS('String', '#.letterSpacing', this);
+
+ /** Sets the value of "letter-spacing" */
+ void set letterSpacing(String value) {
+ JS('', '#.letterSpacing = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "line-height" */
+ String get lineHeight => JS('String', '#.lineHeight', this);
+
+ /** Sets the value of "line-height" */
+ void set lineHeight(String value) {
+ JS('', '#.lineHeight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "list-style" */
+ String get listStyle => JS('String', '#.listStyle', this);
+
+ /** Sets the value of "list-style" */
+ void set listStyle(String value) {
+ JS('', '#.listStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "list-style-image" */
+ String get listStyleImage => JS('String', '#.listStyleImage', this);
+
+ /** Sets the value of "list-style-image" */
+ void set listStyleImage(String value) {
+ JS('', '#.listStyleImage = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "list-style-position" */
+ String get listStylePosition => JS('String', '#.listStylePosition', this);
+
+ /** Sets the value of "list-style-position" */
+ void set listStylePosition(String value) {
+ JS('', '#.listStylePosition = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "list-style-type" */
+ String get listStyleType => JS('String', '#.listStyleType', this);
+
+ /** Sets the value of "list-style-type" */
+ void set listStyleType(String value) {
+ JS('', '#.listStyleType = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "margin" */
+ String get margin => JS('String', '#.margin', this);
+
+ /** Sets the value of "margin" */
+ void set margin(String value) {
+ JS('', '#.margin = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "margin-bottom" */
+ String get marginBottom => JS('String', '#.marginBottom', this);
+
+ /** Sets the value of "margin-bottom" */
+ void set marginBottom(String value) {
+ JS('', '#.marginBottom = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "margin-left" */
+ String get marginLeft => JS('String', '#.marginLeft', this);
+
+ /** Sets the value of "margin-left" */
+ void set marginLeft(String value) {
+ JS('', '#.marginLeft = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "margin-right" */
+ String get marginRight => JS('String', '#.marginRight', this);
+
+ /** Sets the value of "margin-right" */
+ void set marginRight(String value) {
+ JS('', '#.marginRight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "margin-top" */
+ String get marginTop => JS('String', '#.marginTop', this);
+
+ /** Sets the value of "margin-top" */
+ void set marginTop(String value) {
+ JS('', '#.marginTop = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "mask" */
+ String get mask => JS('String', '#.mask', this);
+
+ /** Sets the value of "mask" */
+ void set mask(String value) {
+ JS('', '#.mask = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "max-height" */
+ String get maxHeight => JS('String', '#.maxHeight', this);
+
+ /** Sets the value of "max-height" */
+ void set maxHeight(String value) {
+ JS('', '#.maxHeight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "max-width" */
+ String get maxWidth => JS('String', '#.maxWidth', this);
+
+ /** Sets the value of "max-width" */
+ void set maxWidth(String value) {
+ JS('', '#.maxWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "min-height" */
+ String get minHeight => JS('String', '#.minHeight', this);
+
+ /** Sets the value of "min-height" */
+ void set minHeight(String value) {
+ JS('', '#.minHeight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "min-width" */
+ String get minWidth => JS('String', '#.minWidth', this);
+
+ /** Sets the value of "min-width" */
+ void set minWidth(String value) {
+ JS('', '#.minWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "opacity" */
+ String get opacity => JS('String', '#.opacity', this);
+
+ /** Sets the value of "opacity" */
+ void set opacity(String value) {
+ JS('', '#.opacity = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "orphans" */
+ String get orphans => JS('String', '#.orphans', this);
+
+ /** Sets the value of "orphans" */
+ void set orphans(String value) {
+ JS('', '#.orphans = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "outline" */
+ String get outline => JS('String', '#.outline', this);
+
+ /** Sets the value of "outline" */
+ void set outline(String value) {
+ JS('', '#.outline = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "outline-color" */
+ String get outlineColor => JS('String', '#.outlineColor', this);
+
+ /** Sets the value of "outline-color" */
+ void set outlineColor(String value) {
+ JS('', '#.outlineColor = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "outline-style" */
+ String get outlineStyle => JS('String', '#.outlineStyle', this);
+
+ /** Sets the value of "outline-style" */
+ void set outlineStyle(String value) {
+ JS('', '#.outlineStyle = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "outline-width" */
+ String get outlineWidth => JS('String', '#.outlineWidth', this);
+
+ /** Sets the value of "outline-width" */
+ void set outlineWidth(String value) {
+ JS('', '#.outlineWidth = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "overflow" */
+ String get overflow => JS('String', '#.overflow', this);
+
+ /** Sets the value of "overflow" */
+ void set overflow(String value) {
+ JS('', '#.overflow = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "overflow-x" */
+ String get overflowX => JS('String', '#.overflowX', this);
+
+ /** Sets the value of "overflow-x" */
+ void set overflowX(String value) {
+ JS('', '#.overflowX = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "overflow-y" */
+ String get overflowY => JS('String', '#.overflowY', this);
+
+ /** Sets the value of "overflow-y" */
+ void set overflowY(String value) {
+ JS('', '#.overflowY = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "padding" */
+ String get padding => JS('String', '#.padding', this);
+
+ /** Sets the value of "padding" */
+ void set padding(String value) {
+ JS('', '#.padding = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "padding-bottom" */
+ String get paddingBottom => JS('String', '#.paddingBottom', this);
+
+ /** Sets the value of "padding-bottom" */
+ void set paddingBottom(String value) {
+ JS('', '#.paddingBottom = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "padding-left" */
+ String get paddingLeft => JS('String', '#.paddingLeft', this);
+
+ /** Sets the value of "padding-left" */
+ void set paddingLeft(String value) {
+ JS('', '#.paddingLeft = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "padding-right" */
+ String get paddingRight => JS('String', '#.paddingRight', this);
+
+ /** Sets the value of "padding-right" */
+ void set paddingRight(String value) {
+ JS('', '#.paddingRight = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "padding-top" */
+ String get paddingTop => JS('String', '#.paddingTop', this);
+
+ /** Sets the value of "padding-top" */
+ void set paddingTop(String value) {
+ JS('', '#.paddingTop = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "page-break-after" */
+ String get pageBreakAfter => JS('String', '#.pageBreakAfter', this);
+
+ /** Sets the value of "page-break-after" */
+ void set pageBreakAfter(String value) {
+ JS('', '#.pageBreakAfter = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "page-break-before" */
+ String get pageBreakBefore => JS('String', '#.pageBreakBefore', this);
+
+ /** Sets the value of "page-break-before" */
+ void set pageBreakBefore(String value) {
+ JS('', '#.pageBreakBefore = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "page-break-inside" */
+ String get pageBreakInside => JS('String', '#.pageBreakInside', this);
+
+ /** Sets the value of "page-break-inside" */
+ void set pageBreakInside(String value) {
+ JS('', '#.pageBreakInside = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "pointer-events" */
+ String get pointerEvents => JS('String', '#.pointerEvents', this);
+
+ /** Sets the value of "pointer-events" */
+ void set pointerEvents(String value) {
+ JS('', '#.pointerEvents = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "position" */
+ String get position => JS('String', '#.position', this);
+
+ /** Sets the value of "position" */
+ void set position(String value) {
+ JS('', '#.position = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "quotes" */
+ String get quotes => JS('String', '#.quotes', this);
+
+ /** Sets the value of "quotes" */
+ void set quotes(String value) {
+ JS('', '#.quotes = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "right" */
+ String get right => JS('String', '#.right', this);
+
+ /** Sets the value of "right" */
+ void set right(String value) {
+ JS('', '#.right = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "table-layout" */
+ String get tableLayout => JS('String', '#.tableLayout', this);
+
+ /** Sets the value of "table-layout" */
+ void set tableLayout(String value) {
+ JS('', '#.tableLayout = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "text-align" */
+ String get textAlign => JS('String', '#.textAlign', this);
+
+ /** Sets the value of "text-align" */
+ void set textAlign(String value) {
+ JS('', '#.textAlign = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "text-decoration" */
+ String get textDecoration => JS('String', '#.textDecoration', this);
+
+ /** Sets the value of "text-decoration" */
+ void set textDecoration(String value) {
+ JS('', '#.textDecoration = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "text-indent" */
+ String get textIndent => JS('String', '#.textIndent', this);
+
+ /** Sets the value of "text-indent" */
+ void set textIndent(String value) {
+ JS('', '#.textIndent = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "text-overflow" */
+ String get textOverflow => JS('String', '#.textOverflow', this);
+
+ /** Sets the value of "text-overflow" */
+ void set textOverflow(String value) {
+ JS('', '#.textOverflow = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "text-transform" */
+ String get textTransform => JS('String', '#.textTransform', this);
+
+ /** Sets the value of "text-transform" */
+ void set textTransform(String value) {
+ JS('', '#.textTransform = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "top" */
+ String get top => JS('String', '#.top', this);
+
+ /** Sets the value of "top" */
+ void set top(String value) {
+ JS('', '#.top = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "unicode-bidi" */
+ String get unicodeBidi => JS('String', '#.unicodeBidi', this);
+
+ /** Sets the value of "unicode-bidi" */
+ void set unicodeBidi(String value) {
+ JS('', '#.unicodeBidi = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "vertical-align" */
+ String get verticalAlign => JS('String', '#.verticalAlign', this);
+
+ /** Sets the value of "vertical-align" */
+ void set verticalAlign(String value) {
+ JS('', '#.verticalAlign = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "visibility" */
+ String get visibility => JS('String', '#.visibility', this);
+
+ /** Sets the value of "visibility" */
+ void set visibility(String value) {
+ JS('', '#.visibility = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "white-space" */
+ String get whiteSpace => JS('String', '#.whiteSpace', this);
+
+ /** Sets the value of "white-space" */
+ void set whiteSpace(String value) {
+ JS('', '#.whiteSpace = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "widows" */
+ String get widows => JS('String', '#.widows', this);
+
+ /** Sets the value of "widows" */
+ void set widows(String value) {
+ JS('', '#.widows = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "width" */
+ String get width => JS('String', '#.width', this);
+
+ /** Sets the value of "width" */
+ void set width(String value) {
+ JS('', '#.width = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "word-break" */
+ String get wordBreak => JS('String', '#.wordBreak', this);
+
+ /** Sets the value of "word-break" */
+ void set wordBreak(String value) {
+ JS('', '#.wordBreak = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "word-spacing" */
+ String get wordSpacing => JS('String', '#.wordSpacing', this);
+
+ /** Sets the value of "word-spacing" */
+ void set wordSpacing(String value) {
+ JS('', '#.wordSpacing = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "word-wrap" */
+ String get wordWrap => JS('String', '#.wordWrap', this);
+
+ /** Sets the value of "word-wrap" */
+ void set wordWrap(String value) {
+ JS('', '#.wordWrap = #', this, value == null ? '' : value);
+ }
+
+ /** Gets the value of "z-index" */
+ String get zIndex => JS('String', '#.zIndex', this);
+
+ /** Sets the value of "z-index" */
+ void set zIndex(String value) {
+ JS('', '#.zIndex = #', this, value == null ? '' : value);
+ }
+
}
class _CssStyleDeclarationSet extends Object with CssStyleDeclarationBase {
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | tools/dom/scripts/cssProperties.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698