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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 10928060: Partially migrate from old getter syntax to new one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « lib/dom/templates/html/impl/impl_Storage.darttemplate ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index 1d0036b78f69bd1177b81df329d04b8c0312eb61..b8f27149066bd888c0672f70e55ab69ee7fbd52b 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -15,12 +15,12 @@
-Window get window() native "return window;";
-_WindowImpl get _window() native "return window;";
+Window get window native "return window;";
+_WindowImpl get _window native "return window;";
-Document get document() native "return document;";
+Document get document native "return document;";
-_DocumentImpl get _document() native "return document;";
+_DocumentImpl get _document native "return document;";
Element query(String selector) => _document.query(selector);
ElementList queryAll(String selector) => _document.queryAll(selector);
@@ -4835,7 +4835,7 @@ class _DocumentImpl extends _NodeImpl implements Document
String cookie;
- _WindowImpl get window() native "return this.defaultView;";
+ _WindowImpl get window native "return this.defaultView;";
final _ElementImpl documentElement;
@@ -6274,7 +6274,7 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
_ElementEventsImpl get on =>
new _ElementEventsImpl(this);
- _HTMLCollectionImpl get $dom_children() native "return this.children;";
+ _HTMLCollectionImpl get $dom_children native "return this.children;";
String contentEditable;
@@ -6308,51 +6308,51 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
static const int ALLOW_KEYBOARD_INPUT = 1;
- int get $dom_childElementCount() native "return this.childElementCount;";
+ int get $dom_childElementCount native "return this.childElementCount;";
- String get $dom_className() native "return this.className;";
+ String get $dom_className native "return this.className;";
void set $dom_className(String value) native "this.className = value;";
- int get $dom_clientHeight() native "return this.clientHeight;";
+ int get $dom_clientHeight native "return this.clientHeight;";
- int get $dom_clientLeft() native "return this.clientLeft;";
+ int get $dom_clientLeft native "return this.clientLeft;";
- int get $dom_clientTop() native "return this.clientTop;";
+ int get $dom_clientTop native "return this.clientTop;";
- int get $dom_clientWidth() native "return this.clientWidth;";
+ int get $dom_clientWidth native "return this.clientWidth;";
final Map<String, String> dataset;
- _ElementImpl get $dom_firstElementChild() native "return this.firstElementChild;";
+ _ElementImpl get $dom_firstElementChild native "return this.firstElementChild;";
- _ElementImpl get $dom_lastElementChild() native "return this.lastElementChild;";
+ _ElementImpl get $dom_lastElementChild native "return this.lastElementChild;";
final _ElementImpl nextElementSibling;
- int get $dom_offsetHeight() native "return this.offsetHeight;";
+ int get $dom_offsetHeight native "return this.offsetHeight;";
- int get $dom_offsetLeft() native "return this.offsetLeft;";
+ int get $dom_offsetLeft native "return this.offsetLeft;";
final _ElementImpl offsetParent;
- int get $dom_offsetTop() native "return this.offsetTop;";
+ int get $dom_offsetTop native "return this.offsetTop;";
- int get $dom_offsetWidth() native "return this.offsetWidth;";
+ int get $dom_offsetWidth native "return this.offsetWidth;";
final _ElementImpl previousElementSibling;
- int get $dom_scrollHeight() native "return this.scrollHeight;";
+ int get $dom_scrollHeight native "return this.scrollHeight;";
- int get $dom_scrollLeft() native "return this.scrollLeft;";
+ int get $dom_scrollLeft native "return this.scrollLeft;";
void set $dom_scrollLeft(int value) native "this.scrollLeft = value;";
- int get $dom_scrollTop() native "return this.scrollTop;";
+ int get $dom_scrollTop native "return this.scrollTop;";
void set $dom_scrollTop(int value) native "this.scrollTop = value;";
- int get $dom_scrollWidth() native "return this.scrollWidth;";
+ int get $dom_scrollWidth native "return this.scrollWidth;";
final _CSSStyleDeclarationImpl style;
@@ -7625,7 +7625,7 @@ class _HTMLCollectionImpl implements HTMLCollection, JavaScriptIndexingBehavior
class _HTMLOptionsCollectionImpl extends _HTMLCollectionImpl implements HTMLOptionsCollection native "*HTMLOptionsCollection" {
// Shadowing definition.
- int get length() native "return this.length;";
+ int get length native "return this.length;";
void set length(int value) native "this.length = value;";
@@ -7811,10 +7811,10 @@ class _IDBCursorImpl implements IDBCursor native "*IDBCursor" {
final String direction;
Dynamic get key => _convertNativeToDart_IDBKey(this._key);
- Dynamic get _key() native "return this.key;";
+ Dynamic get _key native "return this.key;";
Dynamic get primaryKey => _convertNativeToDart_IDBKey(this._primaryKey);
- Dynamic get _primaryKey() native "return this.primaryKey;";
+ Dynamic get _primaryKey native "return this.primaryKey;";
final Dynamic source;
@@ -7844,7 +7844,7 @@ class _IDBCursorImpl implements IDBCursor native "*IDBCursor" {
class _IDBCursorWithValueImpl extends _IDBCursorImpl implements IDBCursorWithValue native "*IDBCursorWithValue" {
Dynamic get value => _convertNativeToDart_IDBAny(this._value);
- Dynamic get _value() native "return this.value;";
+ Dynamic get _value native "return this.value;";
}
// 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
@@ -8158,12 +8158,12 @@ class _IDBKeyImpl implements IDBKey native "*IDBKey" {
class _IDBKeyRangeImpl implements IDBKeyRange native "*IDBKeyRange" {
Dynamic get lower => _convertNativeToDart_IDBKey(this._lower);
- Dynamic get _lower() native "return this.lower;";
+ Dynamic get _lower native "return this.lower;";
final bool lowerOpen;
Dynamic get upper => _convertNativeToDart_IDBKey(this._upper);
- Dynamic get _upper() native "return this.upper;";
+ Dynamic get _upper native "return this.upper;";
final bool upperOpen;
}
@@ -8368,7 +8368,7 @@ class _IDBRequestImpl extends _EventTargetImpl implements IDBRequest native "*ID
final String readyState;
Dynamic get result => _convertNativeToDart_IDBAny(this._result);
- Dynamic get _result() native "return this.result;";
+ Dynamic get _result native "return this.result;";
final Dynamic source;
@@ -8493,7 +8493,7 @@ class _IFrameElementImpl extends _ElementImpl implements IFrameElement native "*
_SVGDocumentImpl getSVGDocument() native;
- Window get _contentWindow() native "return this.contentWindow;";
+ Window get _contentWindow native "return this.contentWindow;";
// Override contentWindow to return secure wrapper.
Window get contentWindow {
@@ -9850,8 +9850,8 @@ class _MouseEventImpl extends _UIEventImpl implements MouseEvent native "*MouseE
}
}
- int get _offsetX() native 'return this.offsetX';
- int get _offsetY() native 'return this.offsetY';
+ int get _offsetX native 'return this.offsetX';
+ int get _offsetY native 'return this.offsetY';
}
class _MutationEventImpl extends _EventImpl implements MutationEvent native "*MutationEvent" {
@@ -10311,25 +10311,25 @@ class _NodeImpl extends _EventTargetImpl implements Node native "*Node" {
static const int TEXT_NODE = 3;
- _NamedNodeMapImpl get $dom_attributes() native "return this.attributes;";
+ _NamedNodeMapImpl get $dom_attributes native "return this.attributes;";
- _NodeListImpl get $dom_childNodes() native "return this.childNodes;";
+ _NodeListImpl get $dom_childNodes native "return this.childNodes;";
- _NodeImpl get $dom_firstChild() native "return this.firstChild;";
+ _NodeImpl get $dom_firstChild native "return this.firstChild;";
- _NodeImpl get $dom_lastChild() native "return this.lastChild;";
+ _NodeImpl get $dom_lastChild native "return this.lastChild;";
- _NodeImpl get nextNode() native "return this.nextSibling;";
+ _NodeImpl get nextNode native "return this.nextSibling;";
- int get $dom_nodeType() native "return this.nodeType;";
+ int get $dom_nodeType native "return this.nodeType;";
- _DocumentImpl get document() native "return this.ownerDocument;";
+ _DocumentImpl get document native "return this.ownerDocument;";
- _NodeImpl get parent() native "return this.parentNode;";
+ _NodeImpl get parent native "return this.parentNode;";
- _NodeImpl get previousNode() native "return this.previousSibling;";
+ _NodeImpl get previousNode native "return this.previousSibling;";
- String get text() native "return this.textContent;";
+ String get text native "return this.textContent;";
void set text(String value) native "this.textContent = value;";
@@ -11376,7 +11376,7 @@ class _SVGAElementImpl extends _SVGElementImpl implements SVGAElement native "*S
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -11605,7 +11605,7 @@ class _SVGCircleElementImpl extends _SVGElementImpl implements SVGCircleElement
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -11657,7 +11657,7 @@ class _SVGClipPathElementImpl extends _SVGElementImpl implements SVGClipPathElem
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -11782,7 +11782,7 @@ class _SVGDefsElementImpl extends _SVGElementImpl implements SVGDefsElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -11818,7 +11818,7 @@ class _SVGDescElementImpl extends _SVGElementImpl implements SVGDescElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -11886,7 +11886,7 @@ class _SVGElementImpl extends _ElementImpl implements SVGElement native "*SVGEle
// Shadowing definition.
- String get id() native "return this.id;";
+ String get id native "return this.id;";
void set id(String value) native "this.id = value;";
@@ -12043,7 +12043,7 @@ class _SVGEllipseElementImpl extends _SVGElementImpl implements SVGEllipseElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12120,7 +12120,7 @@ class _SVGFEBlendElementImpl extends _SVGElementImpl implements SVGFEBlendElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12160,7 +12160,7 @@ class _SVGFEColorMatrixElementImpl extends _SVGElementImpl implements SVGFEColor
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12186,7 +12186,7 @@ class _SVGFEComponentTransferElementImpl extends _SVGElementImpl implements SVGF
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12238,7 +12238,7 @@ class _SVGFECompositeElementImpl extends _SVGElementImpl implements SVGFEComposi
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12294,7 +12294,7 @@ class _SVGFEConvolveMatrixElementImpl extends _SVGElementImpl implements SVGFECo
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12328,7 +12328,7 @@ class _SVGFEDiffuseLightingElementImpl extends _SVGElementImpl implements SVGFED
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12372,7 +12372,7 @@ class _SVGFEDisplacementMapElementImpl extends _SVGElementImpl implements SVGFED
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12415,7 +12415,7 @@ class _SVGFEDropShadowElementImpl extends _SVGElementImpl implements SVGFEDropSh
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12439,7 +12439,7 @@ class _SVGFEFloodElementImpl extends _SVGElementImpl implements SVGFEFloodElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12483,7 +12483,7 @@ class _SVGFEGaussianBlurElementImpl extends _SVGElementImpl implements SVGFEGaus
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12523,7 +12523,7 @@ class _SVGFEImageElementImpl extends _SVGElementImpl implements SVGFEImageElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12547,7 +12547,7 @@ class _SVGFEMergeElementImpl extends _SVGElementImpl implements SVGFEMergeElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12592,7 +12592,7 @@ class _SVGFEMorphologyElementImpl extends _SVGElementImpl implements SVGFEMorpho
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12622,7 +12622,7 @@ class _SVGFEOffsetElementImpl extends _SVGElementImpl implements SVGFEOffsetElem
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12663,7 +12663,7 @@ class _SVGFESpecularLightingElementImpl extends _SVGElementImpl implements SVGFE
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12708,7 +12708,7 @@ class _SVGFETileElementImpl extends _SVGElementImpl implements SVGFETileElement
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12756,7 +12756,7 @@ class _SVGFETurbulenceElementImpl extends _SVGElementImpl implements SVGFETurbul
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12800,7 +12800,7 @@ class _SVGFilterElementImpl extends _SVGElementImpl implements SVGFilterElement
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12858,7 +12858,7 @@ class _SVGForeignObjectElementImpl extends _SVGElementImpl implements SVGForeign
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12908,7 +12908,7 @@ class _SVGGElementImpl extends _SVGElementImpl implements SVGGElement native "*S
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12957,7 +12957,7 @@ class _SVGGlyphRefElementImpl extends _SVGElementImpl implements SVGGlyphRefElem
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -12991,7 +12991,7 @@ class _SVGGradientElementImpl extends _SVGElementImpl implements SVGGradientElem
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13040,7 +13040,7 @@ class _SVGImageElementImpl extends _SVGElementImpl implements SVGImageElement na
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13154,7 +13154,7 @@ class _SVGLineElementImpl extends _SVGElementImpl implements SVGLineElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13246,7 +13246,7 @@ class _SVGMarkerElementImpl extends _SVGElementImpl implements SVGMarkerElement
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13296,7 +13296,7 @@ class _SVGMaskElementImpl extends _SVGElementImpl implements SVGMaskElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13480,7 +13480,7 @@ class _SVGPathElementImpl extends _SVGElementImpl implements SVGPathElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13787,7 +13787,7 @@ class _SVGPatternElementImpl extends _SVGElementImpl implements SVGPatternElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13857,7 +13857,7 @@ class _SVGPolygonElementImpl extends _SVGElementImpl implements SVGPolygonElemen
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -13911,7 +13911,7 @@ class _SVGPolylineElementImpl extends _SVGElementImpl implements SVGPolylineElem
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14032,7 +14032,7 @@ class _SVGRectElementImpl extends _SVGElementImpl implements SVGRectElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14173,7 +14173,7 @@ class _SVGSVGElementImpl extends _SVGElementImpl implements SVGSVGElement native
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14227,7 +14227,7 @@ class _SVGStopElementImpl extends _SVGElementImpl implements SVGStopElement nati
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14261,7 +14261,7 @@ class _SVGStyleElementImpl extends _SVGElementImpl implements SVGStyleElement na
String media;
// Shadowing definition.
- String get title() native "return this.title;";
+ String get title native "return this.title;";
void set title(String value) native "this.title = value;";
@@ -14298,7 +14298,7 @@ class _SVGSwitchElementImpl extends _SVGElementImpl implements SVGSwitchElement
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14338,7 +14338,7 @@ class _SVGSymbolElementImpl extends _SVGElementImpl implements SVGSymbolElement
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14414,7 +14414,7 @@ class _SVGTextContentElementImpl extends _SVGElementImpl implements SVGTextConte
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14491,7 +14491,7 @@ class _SVGTitleElementImpl extends _SVGElementImpl implements SVGTitleElement na
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -14606,7 +14606,7 @@ class _SVGUseElementImpl extends _SVGElementImpl implements SVGUseElement native
// From SVGStylable
- _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
+ _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
// Use implementation from Element.
// final _CSSStyleDeclarationImpl style;
@@ -15023,7 +15023,7 @@ class _SpeechRecognitionResultImpl implements SpeechRecognitionResult native "*S
final _DocumentImpl emma;
- bool get finalValue() native "return this.final;";
+ bool get finalValue native "return this.final;";
final int length;
@@ -15089,7 +15089,7 @@ class _StorageImpl implements Storage native "*Storage" {
bool isEmpty() => $dom_key(0) == null;
- int get $dom_length() native "return this.length;";
+ int get $dom_length native "return this.length;";
void $dom_clear() native "clear";
@@ -15747,7 +15747,7 @@ class _TrackElementImpl extends _ElementImpl implements TrackElement native "*HT
static const int NONE = 0;
- bool get defaultValue() native "return this.default;";
+ bool get defaultValue native "return this.default;";
void set defaultValue(bool value) native "this.default = value;";
@@ -17344,9 +17344,9 @@ class _WheelEventImpl extends _MouseEventImpl implements WheelEvent native "*Whe
class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow" {
- _DocumentImpl get document() native "return this.document;";
+ _DocumentImpl get document native "return this.document;";
- Window get _top() native "return this.top;";
+ Window get _top native "return this.top;";
// Override top to return secure wrapper.
Window get top => _DOMWindowCrossFrameImpl._createSafe(_top);
@@ -17398,7 +17398,7 @@ class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow
var _location_wrapper; // Cached wrapped Location object.
// Native getter and setter to access raw Location object.
- Location get _location() native 'return this.location';
+ Location get _location native 'return this.location';
void set _location(Location value) native 'this.location = value';
// Prevent compiled from thinking 'location' property is available for a Dart
// member.
@@ -20115,1843 +20115,1843 @@ interface CSSStyleDeclaration default _CSSStyleDeclarationFactoryProvider {
/** Gets the value of "animation" */
- String get animation;
+ String get animation();
/** Sets the value of "animation" */
void set animation(var value);
/** Gets the value of "animation-delay" */
- String get animationDelay;
+ String get animationDelay();
/** Sets the value of "animation-delay" */
void set animationDelay(var value);
/** Gets the value of "animation-direction" */
- String get animationDirection;
+ String get animationDirection();
/** Sets the value of "animation-direction" */
void set animationDirection(var value);
/** Gets the value of "animation-duration" */
- String get animationDuration;
+ String get animationDuration();
/** Sets the value of "animation-duration" */
void set animationDuration(var value);
/** Gets the value of "animation-fill-mode" */
- String get animationFillMode;
+ String get animationFillMode();
/** Sets the value of "animation-fill-mode" */
void set animationFillMode(var value);
/** Gets the value of "animation-iteration-count" */
- String get animationIterationCount;
+ String get animationIterationCount();
/** Sets the value of "animation-iteration-count" */
void set animationIterationCount(var value);
/** Gets the value of "animation-name" */
- String get animationName;
+ String get animationName();
/** Sets the value of "animation-name" */
void set animationName(var value);
/** Gets the value of "animation-play-state" */
- String get animationPlayState;
+ String get animationPlayState();
/** Sets the value of "animation-play-state" */
void set animationPlayState(var value);
/** Gets the value of "animation-timing-function" */
- String get animationTimingFunction;
+ String get animationTimingFunction();
/** Sets the value of "animation-timing-function" */
void set animationTimingFunction(var value);
/** Gets the value of "appearance" */
- String get appearance;
+ String get appearance();
/** Sets the value of "appearance" */
void set appearance(var value);
/** Gets the value of "backface-visibility" */
- String get backfaceVisibility;
+ String get backfaceVisibility();
/** Sets the value of "backface-visibility" */
void set backfaceVisibility(var value);
/** Gets the value of "background" */
- String get background;
+ String get background();
/** Sets the value of "background" */
void set background(var value);
/** Gets the value of "background-attachment" */
- String get backgroundAttachment;
+ String get backgroundAttachment();
/** Sets the value of "background-attachment" */
void set backgroundAttachment(var value);
/** Gets the value of "background-clip" */
- String get backgroundClip;
+ String get backgroundClip();
/** Sets the value of "background-clip" */
void set backgroundClip(var value);
/** Gets the value of "background-color" */
- String get backgroundColor;
+ String get backgroundColor();
/** Sets the value of "background-color" */
void set backgroundColor(var value);
/** Gets the value of "background-composite" */
- String get backgroundComposite;
+ String get backgroundComposite();
/** Sets the value of "background-composite" */
void set backgroundComposite(var value);
/** Gets the value of "background-image" */
- String get backgroundImage;
+ String get backgroundImage();
/** Sets the value of "background-image" */
void set backgroundImage(var value);
/** Gets the value of "background-origin" */
- String get backgroundOrigin;
+ String get backgroundOrigin();
/** Sets the value of "background-origin" */
void set backgroundOrigin(var value);
/** Gets the value of "background-position" */
- String get backgroundPosition;
+ String get backgroundPosition();
/** Sets the value of "background-position" */
void set backgroundPosition(var value);
/** Gets the value of "background-position-x" */
- String get backgroundPositionX;
+ String get backgroundPositionX();
/** Sets the value of "background-position-x" */
void set backgroundPositionX(var value);
/** Gets the value of "background-position-y" */
- String get backgroundPositionY;
+ String get backgroundPositionY();
/** Sets the value of "background-position-y" */
void set backgroundPositionY(var value);
/** Gets the value of "background-repeat" */
- String get backgroundRepeat;
+ String get backgroundRepeat();
/** Sets the value of "background-repeat" */
void set backgroundRepeat(var value);
/** Gets the value of "background-repeat-x" */
- String get backgroundRepeatX;
+ String get backgroundRepeatX();
/** Sets the value of "background-repeat-x" */
void set backgroundRepeatX(var value);
/** Gets the value of "background-repeat-y" */
- String get backgroundRepeatY;
+ String get backgroundRepeatY();
/** Sets the value of "background-repeat-y" */
void set backgroundRepeatY(var value);
/** Gets the value of "background-size" */
- String get backgroundSize;
+ String get backgroundSize();
/** Sets the value of "background-size" */
void set backgroundSize(var value);
/** Gets the value of "border" */
- String get border;
+ String get border();
/** Sets the value of "border" */
void set border(var value);
/** Gets the value of "border-after" */
- String get borderAfter;
+ String get borderAfter();
/** Sets the value of "border-after" */
void set borderAfter(var value);
/** Gets the value of "border-after-color" */
- String get borderAfterColor;
+ String get borderAfterColor();
/** Sets the value of "border-after-color" */
void set borderAfterColor(var value);
/** Gets the value of "border-after-style" */
- String get borderAfterStyle;
+ String get borderAfterStyle();
/** Sets the value of "border-after-style" */
void set borderAfterStyle(var value);
/** Gets the value of "border-after-width" */
- String get borderAfterWidth;
+ String get borderAfterWidth();
/** Sets the value of "border-after-width" */
void set borderAfterWidth(var value);
/** Gets the value of "border-before" */
- String get borderBefore;
+ String get borderBefore();
/** Sets the value of "border-before" */
void set borderBefore(var value);
/** Gets the value of "border-before-color" */
- String get borderBeforeColor;
+ String get borderBeforeColor();
/** Sets the value of "border-before-color" */
void set borderBeforeColor(var value);
/** Gets the value of "border-before-style" */
- String get borderBeforeStyle;
+ String get borderBeforeStyle();
/** Sets the value of "border-before-style" */
void set borderBeforeStyle(var value);
/** Gets the value of "border-before-width" */
- String get borderBeforeWidth;
+ String get borderBeforeWidth();
/** Sets the value of "border-before-width" */
void set borderBeforeWidth(var value);
/** Gets the value of "border-bottom" */
- String get borderBottom;
+ String get borderBottom();
/** Sets the value of "border-bottom" */
void set borderBottom(var value);
/** Gets the value of "border-bottom-color" */
- String get borderBottomColor;
+ String get borderBottomColor();
/** Sets the value of "border-bottom-color" */
void set borderBottomColor(var value);
/** Gets the value of "border-bottom-left-radius" */
- String get borderBottomLeftRadius;
+ String get borderBottomLeftRadius();
/** Sets the value of "border-bottom-left-radius" */
void set borderBottomLeftRadius(var value);
/** Gets the value of "border-bottom-right-radius" */
- String get borderBottomRightRadius;
+ String get borderBottomRightRadius();
/** Sets the value of "border-bottom-right-radius" */
void set borderBottomRightRadius(var value);
/** Gets the value of "border-bottom-style" */
- String get borderBottomStyle;
+ String get borderBottomStyle();
/** Sets the value of "border-bottom-style" */
void set borderBottomStyle(var value);
/** Gets the value of "border-bottom-width" */
- String get borderBottomWidth;
+ String get borderBottomWidth();
/** Sets the value of "border-bottom-width" */
void set borderBottomWidth(var value);
/** Gets the value of "border-collapse" */
- String get borderCollapse;
+ String get borderCollapse();
/** Sets the value of "border-collapse" */
void set borderCollapse(var value);
/** Gets the value of "border-color" */
- String get borderColor;
+ String get borderColor();
/** Sets the value of "border-color" */
void set borderColor(var value);
/** Gets the value of "border-end" */
- String get borderEnd;
+ String get borderEnd();
/** Sets the value of "border-end" */
void set borderEnd(var value);
/** Gets the value of "border-end-color" */
- String get borderEndColor;
+ String get borderEndColor();
/** Sets the value of "border-end-color" */
void set borderEndColor(var value);
/** Gets the value of "border-end-style" */
- String get borderEndStyle;
+ String get borderEndStyle();
/** Sets the value of "border-end-style" */
void set borderEndStyle(var value);
/** Gets the value of "border-end-width" */
- String get borderEndWidth;
+ String get borderEndWidth();
/** Sets the value of "border-end-width" */
void set borderEndWidth(var value);
/** Gets the value of "border-fit" */
- String get borderFit;
+ String get borderFit();
/** Sets the value of "border-fit" */
void set borderFit(var value);
/** Gets the value of "border-horizontal-spacing" */
- String get borderHorizontalSpacing;
+ String get borderHorizontalSpacing();
/** Sets the value of "border-horizontal-spacing" */
void set borderHorizontalSpacing(var value);
/** Gets the value of "border-image" */
- String get borderImage;
+ String get borderImage();
/** Sets the value of "border-image" */
void set borderImage(var value);
/** Gets the value of "border-image-outset" */
- String get borderImageOutset;
+ String get borderImageOutset();
/** Sets the value of "border-image-outset" */
void set borderImageOutset(var value);
/** Gets the value of "border-image-repeat" */
- String get borderImageRepeat;
+ String get borderImageRepeat();
/** Sets the value of "border-image-repeat" */
void set borderImageRepeat(var value);
/** Gets the value of "border-image-slice" */
- String get borderImageSlice;
+ String get borderImageSlice();
/** Sets the value of "border-image-slice" */
void set borderImageSlice(var value);
/** Gets the value of "border-image-source" */
- String get borderImageSource;
+ String get borderImageSource();
/** Sets the value of "border-image-source" */
void set borderImageSource(var value);
/** Gets the value of "border-image-width" */
- String get borderImageWidth;
+ String get borderImageWidth();
/** Sets the value of "border-image-width" */
void set borderImageWidth(var value);
/** Gets the value of "border-left" */
- String get borderLeft;
+ String get borderLeft();
/** Sets the value of "border-left" */
void set borderLeft(var value);
/** Gets the value of "border-left-color" */
- String get borderLeftColor;
+ String get borderLeftColor();
/** Sets the value of "border-left-color" */
void set borderLeftColor(var value);
/** Gets the value of "border-left-style" */
- String get borderLeftStyle;
+ String get borderLeftStyle();
/** Sets the value of "border-left-style" */
void set borderLeftStyle(var value);
/** Gets the value of "border-left-width" */
- String get borderLeftWidth;
+ String get borderLeftWidth();
/** Sets the value of "border-left-width" */
void set borderLeftWidth(var value);
/** Gets the value of "border-radius" */
- String get borderRadius;
+ String get borderRadius();
/** Sets the value of "border-radius" */
void set borderRadius(var value);
/** Gets the value of "border-right" */
- String get borderRight;
+ String get borderRight();
/** Sets the value of "border-right" */
void set borderRight(var value);
/** Gets the value of "border-right-color" */
- String get borderRightColor;
+ String get borderRightColor();
/** Sets the value of "border-right-color" */
void set borderRightColor(var value);
/** Gets the value of "border-right-style" */
- String get borderRightStyle;
+ String get borderRightStyle();
/** Sets the value of "border-right-style" */
void set borderRightStyle(var value);
/** Gets the value of "border-right-width" */
- String get borderRightWidth;
+ String get borderRightWidth();
/** Sets the value of "border-right-width" */
void set borderRightWidth(var value);
/** Gets the value of "border-spacing" */
- String get borderSpacing;
+ String get borderSpacing();
/** Sets the value of "border-spacing" */
void set borderSpacing(var value);
/** Gets the value of "border-start" */
- String get borderStart;
+ String get borderStart();
/** Sets the value of "border-start" */
void set borderStart(var value);
/** Gets the value of "border-start-color" */
- String get borderStartColor;
+ String get borderStartColor();
/** Sets the value of "border-start-color" */
void set borderStartColor(var value);
/** Gets the value of "border-start-style" */
- String get borderStartStyle;
+ String get borderStartStyle();
/** Sets the value of "border-start-style" */
void set borderStartStyle(var value);
/** Gets the value of "border-start-width" */
- String get borderStartWidth;
+ String get borderStartWidth();
/** Sets the value of "border-start-width" */
void set borderStartWidth(var value);
/** Gets the value of "border-style" */
- String get borderStyle;
+ String get borderStyle();
/** Sets the value of "border-style" */
void set borderStyle(var value);
/** Gets the value of "border-top" */
- String get borderTop;
+ String get borderTop();
/** Sets the value of "border-top" */
void set borderTop(var value);
/** Gets the value of "border-top-color" */
- String get borderTopColor;
+ String get borderTopColor();
/** Sets the value of "border-top-color" */
void set borderTopColor(var value);
/** Gets the value of "border-top-left-radius" */
- String get borderTopLeftRadius;
+ String get borderTopLeftRadius();
/** Sets the value of "border-top-left-radius" */
void set borderTopLeftRadius(var value);
/** Gets the value of "border-top-right-radius" */
- String get borderTopRightRadius;
+ String get borderTopRightRadius();
/** Sets the value of "border-top-right-radius" */
void set borderTopRightRadius(var value);
/** Gets the value of "border-top-style" */
- String get borderTopStyle;
+ String get borderTopStyle();
/** Sets the value of "border-top-style" */
void set borderTopStyle(var value);
/** Gets the value of "border-top-width" */
- String get borderTopWidth;
+ String get borderTopWidth();
/** Sets the value of "border-top-width" */
void set borderTopWidth(var value);
/** Gets the value of "border-vertical-spacing" */
- String get borderVerticalSpacing;
+ String get borderVerticalSpacing();
/** Sets the value of "border-vertical-spacing" */
void set borderVerticalSpacing(var value);
/** Gets the value of "border-width" */
- String get borderWidth;
+ String get borderWidth();
/** Sets the value of "border-width" */
void set borderWidth(var value);
/** Gets the value of "bottom" */
- String get bottom;
+ String get bottom();
/** Sets the value of "bottom" */
void set bottom(var value);
/** Gets the value of "box-align" */
- String get boxAlign;
+ String get boxAlign();
/** Sets the value of "box-align" */
void set boxAlign(var value);
/** Gets the value of "box-direction" */
- String get boxDirection;
+ String get boxDirection();
/** Sets the value of "box-direction" */
void set boxDirection(var value);
/** Gets the value of "box-flex" */
- String get boxFlex;
+ String get boxFlex();
/** Sets the value of "box-flex" */
void set boxFlex(var value);
/** Gets the value of "box-flex-group" */
- String get boxFlexGroup;
+ String get boxFlexGroup();
/** Sets the value of "box-flex-group" */
void set boxFlexGroup(var value);
/** Gets the value of "box-lines" */
- String get boxLines;
+ String get boxLines();
/** Sets the value of "box-lines" */
void set boxLines(var value);
/** Gets the value of "box-ordinal-group" */
- String get boxOrdinalGroup;
+ String get boxOrdinalGroup();
/** Sets the value of "box-ordinal-group" */
void set boxOrdinalGroup(var value);
/** Gets the value of "box-orient" */
- String get boxOrient;
+ String get boxOrient();
/** Sets the value of "box-orient" */
void set boxOrient(var value);
/** Gets the value of "box-pack" */
- String get boxPack;
+ String get boxPack();
/** Sets the value of "box-pack" */
void set boxPack(var value);
/** Gets the value of "box-reflect" */
- String get boxReflect;
+ String get boxReflect();
/** Sets the value of "box-reflect" */
void set boxReflect(var value);
/** Gets the value of "box-shadow" */
- String get boxShadow;
+ String get boxShadow();
/** Sets the value of "box-shadow" */
void set boxShadow(var value);
/** Gets the value of "box-sizing" */
- String get boxSizing;
+ String get boxSizing();
/** Sets the value of "box-sizing" */
void set boxSizing(var value);
/** Gets the value of "caption-side" */
- String get captionSide;
+ String get captionSide();
/** Sets the value of "caption-side" */
void set captionSide(var value);
/** Gets the value of "clear" */
- String get clear;
+ String get clear();
/** Sets the value of "clear" */
void set clear(var value);
/** Gets the value of "clip" */
- String get clip;
+ String get clip();
/** Sets the value of "clip" */
void set clip(var value);
/** Gets the value of "color" */
- String get color;
+ String get color();
/** Sets the value of "color" */
void set color(var value);
/** Gets the value of "color-correction" */
- String get colorCorrection;
+ String get colorCorrection();
/** Sets the value of "color-correction" */
void set colorCorrection(var value);
/** Gets the value of "column-break-after" */
- String get columnBreakAfter;
+ String get columnBreakAfter();
/** Sets the value of "column-break-after" */
void set columnBreakAfter(var value);
/** Gets the value of "column-break-before" */
- String get columnBreakBefore;
+ String get columnBreakBefore();
/** Sets the value of "column-break-before" */
void set columnBreakBefore(var value);
/** Gets the value of "column-break-inside" */
- String get columnBreakInside;
+ String get columnBreakInside();
/** Sets the value of "column-break-inside" */
void set columnBreakInside(var value);
/** Gets the value of "column-count" */
- String get columnCount;
+ String get columnCount();
/** Sets the value of "column-count" */
void set columnCount(var value);
/** Gets the value of "column-gap" */
- String get columnGap;
+ String get columnGap();
/** Sets the value of "column-gap" */
void set columnGap(var value);
/** Gets the value of "column-rule" */
- String get columnRule;
+ String get columnRule();
/** Sets the value of "column-rule" */
void set columnRule(var value);
/** Gets the value of "column-rule-color" */
- String get columnRuleColor;
+ String get columnRuleColor();
/** Sets the value of "column-rule-color" */
void set columnRuleColor(var value);
/** Gets the value of "column-rule-style" */
- String get columnRuleStyle;
+ String get columnRuleStyle();
/** Sets the value of "column-rule-style" */
void set columnRuleStyle(var value);
/** Gets the value of "column-rule-width" */
- String get columnRuleWidth;
+ String get columnRuleWidth();
/** Sets the value of "column-rule-width" */
void set columnRuleWidth(var value);
/** Gets the value of "column-span" */
- String get columnSpan;
+ String get columnSpan();
/** Sets the value of "column-span" */
void set columnSpan(var value);
/** Gets the value of "column-width" */
- String get columnWidth;
+ String get columnWidth();
/** Sets the value of "column-width" */
void set columnWidth(var value);
/** Gets the value of "columns" */
- String get columns;
+ String get columns();
/** Sets the value of "columns" */
void set columns(var value);
/** Gets the value of "content" */
- String get content;
+ String get content();
/** Sets the value of "content" */
void set content(var value);
/** Gets the value of "counter-increment" */
- String get counterIncrement;
+ String get counterIncrement();
/** Sets the value of "counter-increment" */
void set counterIncrement(var value);
/** Gets the value of "counter-reset" */
- String get counterReset;
+ String get counterReset();
/** Sets the value of "counter-reset" */
void set counterReset(var value);
/** Gets the value of "cursor" */
- String get cursor;
+ String get cursor();
/** Sets the value of "cursor" */
void set cursor(var value);
/** Gets the value of "direction" */
- String get direction;
+ String get direction();
/** Sets the value of "direction" */
void set direction(var value);
/** Gets the value of "display" */
- String get display;
+ String get display();
/** Sets the value of "display" */
void set display(var value);
/** Gets the value of "empty-cells" */
- String get emptyCells;
+ String get emptyCells();
/** Sets the value of "empty-cells" */
void set emptyCells(var value);
/** Gets the value of "filter" */
- String get filter;
+ String get filter();
/** Sets the value of "filter" */
void set filter(var value);
/** Gets the value of "flex-align" */
- String get flexAlign;
+ String get flexAlign();
/** Sets the value of "flex-align" */
void set flexAlign(var value);
/** Gets the value of "flex-flow" */
- String get flexFlow;
+ String get flexFlow();
/** Sets the value of "flex-flow" */
void set flexFlow(var value);
/** Gets the value of "flex-order" */
- String get flexOrder;
+ String get flexOrder();
/** Sets the value of "flex-order" */
void set flexOrder(var value);
/** Gets the value of "flex-pack" */
- String get flexPack;
+ String get flexPack();
/** Sets the value of "flex-pack" */
void set flexPack(var value);
/** Gets the value of "float" */
- String get float;
+ String get float();
/** Sets the value of "float" */
void set float(var value);
/** Gets the value of "flow-from" */
- String get flowFrom;
+ String get flowFrom();
/** Sets the value of "flow-from" */
void set flowFrom(var value);
/** Gets the value of "flow-into" */
- String get flowInto;
+ String get flowInto();
/** Sets the value of "flow-into" */
void set flowInto(var value);
/** Gets the value of "font" */
- String get font;
+ String get font();
/** Sets the value of "font" */
void set font(var value);
/** Gets the value of "font-family" */
- String get fontFamily;
+ String get fontFamily();
/** Sets the value of "font-family" */
void set fontFamily(var value);
/** Gets the value of "font-feature-settings" */
- String get fontFeatureSettings;
+ String get fontFeatureSettings();
/** Sets the value of "font-feature-settings" */
void set fontFeatureSettings(var value);
/** Gets the value of "font-size" */
- String get fontSize;
+ String get fontSize();
/** Sets the value of "font-size" */
void set fontSize(var value);
/** Gets the value of "font-size-delta" */
- String get fontSizeDelta;
+ String get fontSizeDelta();
/** Sets the value of "font-size-delta" */
void set fontSizeDelta(var value);
/** Gets the value of "font-smoothing" */
- String get fontSmoothing;
+ String get fontSmoothing();
/** Sets the value of "font-smoothing" */
void set fontSmoothing(var value);
/** Gets the value of "font-stretch" */
- String get fontStretch;
+ String get fontStretch();
/** Sets the value of "font-stretch" */
void set fontStretch(var value);
/** Gets the value of "font-style" */
- String get fontStyle;
+ String get fontStyle();
/** Sets the value of "font-style" */
void set fontStyle(var value);
/** Gets the value of "font-variant" */
- String get fontVariant;
+ String get fontVariant();
/** Sets the value of "font-variant" */
void set fontVariant(var value);
/** Gets the value of "font-weight" */
- String get fontWeight;
+ String get fontWeight();
/** Sets the value of "font-weight" */
void set fontWeight(var value);
/** Gets the value of "height" */
- String get height;
+ String get height();
/** Sets the value of "height" */
void set height(var value);
/** Gets the value of "highlight" */
- String get highlight;
+ String get highlight();
/** Sets the value of "highlight" */
void set highlight(var value);
/** Gets the value of "hyphenate-character" */
- String get hyphenateCharacter;
+ String get hyphenateCharacter();
/** Sets the value of "hyphenate-character" */
void set hyphenateCharacter(var value);
/** Gets the value of "hyphenate-limit-after" */
- String get hyphenateLimitAfter;
+ String get hyphenateLimitAfter();
/** Sets the value of "hyphenate-limit-after" */
void set hyphenateLimitAfter(var value);
/** Gets the value of "hyphenate-limit-before" */
- String get hyphenateLimitBefore;
+ String get hyphenateLimitBefore();
/** Sets the value of "hyphenate-limit-before" */
void set hyphenateLimitBefore(var value);
/** Gets the value of "hyphenate-limit-lines" */
- String get hyphenateLimitLines;
+ String get hyphenateLimitLines();
/** Sets the value of "hyphenate-limit-lines" */
void set hyphenateLimitLines(var value);
/** Gets the value of "hyphens" */
- String get hyphens;
+ String get hyphens();
/** Sets the value of "hyphens" */
void set hyphens(var value);
/** Gets the value of "image-rendering" */
- String get imageRendering;
+ String get imageRendering();
/** Sets the value of "image-rendering" */
void set imageRendering(var value);
/** Gets the value of "left" */
- String get left;
+ String get left();
/** Sets the value of "left" */
void set left(var value);
/** Gets the value of "letter-spacing" */
- String get letterSpacing;
+ String get letterSpacing();
/** Sets the value of "letter-spacing" */
void set letterSpacing(var value);
/** Gets the value of "line-box-contain" */
- String get lineBoxContain;
+ String get lineBoxContain();
/** Sets the value of "line-box-contain" */
void set lineBoxContain(var value);
/** Gets the value of "line-break" */
- String get lineBreak;
+ String get lineBreak();
/** Sets the value of "line-break" */
void set lineBreak(var value);
/** Gets the value of "line-clamp" */
- String get lineClamp;
+ String get lineClamp();
/** Sets the value of "line-clamp" */
void set lineClamp(var value);
/** Gets the value of "line-height" */
- String get lineHeight;
+ String get lineHeight();
/** Sets the value of "line-height" */
void set lineHeight(var value);
/** Gets the value of "list-style" */
- String get listStyle;
+ String get listStyle();
/** Sets the value of "list-style" */
void set listStyle(var value);
/** Gets the value of "list-style-image" */
- String get listStyleImage;
+ String get listStyleImage();
/** Sets the value of "list-style-image" */
void set listStyleImage(var value);
/** Gets the value of "list-style-position" */
- String get listStylePosition;
+ String get listStylePosition();
/** Sets the value of "list-style-position" */
void set listStylePosition(var value);
/** Gets the value of "list-style-type" */
- String get listStyleType;
+ String get listStyleType();
/** Sets the value of "list-style-type" */
void set listStyleType(var value);
/** Gets the value of "locale" */
- String get locale;
+ String get locale();
/** Sets the value of "locale" */
void set locale(var value);
/** Gets the value of "logical-height" */
- String get logicalHeight;
+ String get logicalHeight();
/** Sets the value of "logical-height" */
void set logicalHeight(var value);
/** Gets the value of "logical-width" */
- String get logicalWidth;
+ String get logicalWidth();
/** Sets the value of "logical-width" */
void set logicalWidth(var value);
/** Gets the value of "margin" */
- String get margin;
+ String get margin();
/** Sets the value of "margin" */
void set margin(var value);
/** Gets the value of "margin-after" */
- String get marginAfter;
+ String get marginAfter();
/** Sets the value of "margin-after" */
void set marginAfter(var value);
/** Gets the value of "margin-after-collapse" */
- String get marginAfterCollapse;
+ String get marginAfterCollapse();
/** Sets the value of "margin-after-collapse" */
void set marginAfterCollapse(var value);
/** Gets the value of "margin-before" */
- String get marginBefore;
+ String get marginBefore();
/** Sets the value of "margin-before" */
void set marginBefore(var value);
/** Gets the value of "margin-before-collapse" */
- String get marginBeforeCollapse;
+ String get marginBeforeCollapse();
/** Sets the value of "margin-before-collapse" */
void set marginBeforeCollapse(var value);
/** Gets the value of "margin-bottom" */
- String get marginBottom;
+ String get marginBottom();
/** Sets the value of "margin-bottom" */
void set marginBottom(var value);
/** Gets the value of "margin-bottom-collapse" */
- String get marginBottomCollapse;
+ String get marginBottomCollapse();
/** Sets the value of "margin-bottom-collapse" */
void set marginBottomCollapse(var value);
/** Gets the value of "margin-collapse" */
- String get marginCollapse;
+ String get marginCollapse();
/** Sets the value of "margin-collapse" */
void set marginCollapse(var value);
/** Gets the value of "margin-end" */
- String get marginEnd;
+ String get marginEnd();
/** Sets the value of "margin-end" */
void set marginEnd(var value);
/** Gets the value of "margin-left" */
- String get marginLeft;
+ String get marginLeft();
/** Sets the value of "margin-left" */
void set marginLeft(var value);
/** Gets the value of "margin-right" */
- String get marginRight;
+ String get marginRight();
/** Sets the value of "margin-right" */
void set marginRight(var value);
/** Gets the value of "margin-start" */
- String get marginStart;
+ String get marginStart();
/** Sets the value of "margin-start" */
void set marginStart(var value);
/** Gets the value of "margin-top" */
- String get marginTop;
+ String get marginTop();
/** Sets the value of "margin-top" */
void set marginTop(var value);
/** Gets the value of "margin-top-collapse" */
- String get marginTopCollapse;
+ String get marginTopCollapse();
/** Sets the value of "margin-top-collapse" */
void set marginTopCollapse(var value);
/** Gets the value of "marquee" */
- String get marquee;
+ String get marquee();
/** Sets the value of "marquee" */
void set marquee(var value);
/** Gets the value of "marquee-direction" */
- String get marqueeDirection;
+ String get marqueeDirection();
/** Sets the value of "marquee-direction" */
void set marqueeDirection(var value);
/** Gets the value of "marquee-increment" */
- String get marqueeIncrement;
+ String get marqueeIncrement();
/** Sets the value of "marquee-increment" */
void set marqueeIncrement(var value);
/** Gets the value of "marquee-repetition" */
- String get marqueeRepetition;
+ String get marqueeRepetition();
/** Sets the value of "marquee-repetition" */
void set marqueeRepetition(var value);
/** Gets the value of "marquee-speed" */
- String get marqueeSpeed;
+ String get marqueeSpeed();
/** Sets the value of "marquee-speed" */
void set marqueeSpeed(var value);
/** Gets the value of "marquee-style" */
- String get marqueeStyle;
+ String get marqueeStyle();
/** Sets the value of "marquee-style" */
void set marqueeStyle(var value);
/** Gets the value of "mask" */
- String get mask;
+ String get mask();
/** Sets the value of "mask" */
void set mask(var value);
/** Gets the value of "mask-attachment" */
- String get maskAttachment;
+ String get maskAttachment();
/** Sets the value of "mask-attachment" */
void set maskAttachment(var value);
/** Gets the value of "mask-box-image" */
- String get maskBoxImage;
+ String get maskBoxImage();
/** Sets the value of "mask-box-image" */
void set maskBoxImage(var value);
/** Gets the value of "mask-box-image-outset" */
- String get maskBoxImageOutset;
+ String get maskBoxImageOutset();
/** Sets the value of "mask-box-image-outset" */
void set maskBoxImageOutset(var value);
/** Gets the value of "mask-box-image-repeat" */
- String get maskBoxImageRepeat;
+ String get maskBoxImageRepeat();
/** Sets the value of "mask-box-image-repeat" */
void set maskBoxImageRepeat(var value);
/** Gets the value of "mask-box-image-slice" */
- String get maskBoxImageSlice;
+ String get maskBoxImageSlice();
/** Sets the value of "mask-box-image-slice" */
void set maskBoxImageSlice(var value);
/** Gets the value of "mask-box-image-source" */
- String get maskBoxImageSource;
+ String get maskBoxImageSource();
/** Sets the value of "mask-box-image-source" */
void set maskBoxImageSource(var value);
/** Gets the value of "mask-box-image-width" */
- String get maskBoxImageWidth;
+ String get maskBoxImageWidth();
/** Sets the value of "mask-box-image-width" */
void set maskBoxImageWidth(var value);
/** Gets the value of "mask-clip" */
- String get maskClip;
+ String get maskClip();
/** Sets the value of "mask-clip" */
void set maskClip(var value);
/** Gets the value of "mask-composite" */
- String get maskComposite;
+ String get maskComposite();
/** Sets the value of "mask-composite" */
void set maskComposite(var value);
/** Gets the value of "mask-image" */
- String get maskImage;
+ String get maskImage();
/** Sets the value of "mask-image" */
void set maskImage(var value);
/** Gets the value of "mask-origin" */
- String get maskOrigin;
+ String get maskOrigin();
/** Sets the value of "mask-origin" */
void set maskOrigin(var value);
/** Gets the value of "mask-position" */
- String get maskPosition;
+ String get maskPosition();
/** Sets the value of "mask-position" */
void set maskPosition(var value);
/** Gets the value of "mask-position-x" */
- String get maskPositionX;
+ String get maskPositionX();
/** Sets the value of "mask-position-x" */
void set maskPositionX(var value);
/** Gets the value of "mask-position-y" */
- String get maskPositionY;
+ String get maskPositionY();
/** Sets the value of "mask-position-y" */
void set maskPositionY(var value);
/** Gets the value of "mask-repeat" */
- String get maskRepeat;
+ String get maskRepeat();
/** Sets the value of "mask-repeat" */
void set maskRepeat(var value);
/** Gets the value of "mask-repeat-x" */
- String get maskRepeatX;
+ String get maskRepeatX();
/** Sets the value of "mask-repeat-x" */
void set maskRepeatX(var value);
/** Gets the value of "mask-repeat-y" */
- String get maskRepeatY;
+ String get maskRepeatY();
/** Sets the value of "mask-repeat-y" */
void set maskRepeatY(var value);
/** Gets the value of "mask-size" */
- String get maskSize;
+ String get maskSize();
/** Sets the value of "mask-size" */
void set maskSize(var value);
/** Gets the value of "match-nearest-mail-blockquote-color" */
- String get matchNearestMailBlockquoteColor;
+ String get matchNearestMailBlockquoteColor();
/** Sets the value of "match-nearest-mail-blockquote-color" */
void set matchNearestMailBlockquoteColor(var value);
/** Gets the value of "max-height" */
- String get maxHeight;
+ String get maxHeight();
/** Sets the value of "max-height" */
void set maxHeight(var value);
/** Gets the value of "max-logical-height" */
- String get maxLogicalHeight;
+ String get maxLogicalHeight();
/** Sets the value of "max-logical-height" */
void set maxLogicalHeight(var value);
/** Gets the value of "max-logical-width" */
- String get maxLogicalWidth;
+ String get maxLogicalWidth();
/** Sets the value of "max-logical-width" */
void set maxLogicalWidth(var value);
/** Gets the value of "max-width" */
- String get maxWidth;
+ String get maxWidth();
/** Sets the value of "max-width" */
void set maxWidth(var value);
/** Gets the value of "min-height" */
- String get minHeight;
+ String get minHeight();
/** Sets the value of "min-height" */
void set minHeight(var value);
/** Gets the value of "min-logical-height" */
- String get minLogicalHeight;
+ String get minLogicalHeight();
/** Sets the value of "min-logical-height" */
void set minLogicalHeight(var value);
/** Gets the value of "min-logical-width" */
- String get minLogicalWidth;
+ String get minLogicalWidth();
/** Sets the value of "min-logical-width" */
void set minLogicalWidth(var value);
/** Gets the value of "min-width" */
- String get minWidth;
+ String get minWidth();
/** Sets the value of "min-width" */
void set minWidth(var value);
/** Gets the value of "nbsp-mode" */
- String get nbspMode;
+ String get nbspMode();
/** Sets the value of "nbsp-mode" */
void set nbspMode(var value);
/** Gets the value of "opacity" */
- String get opacity;
+ String get opacity();
/** Sets the value of "opacity" */
void set opacity(var value);
/** Gets the value of "orphans" */
- String get orphans;
+ String get orphans();
/** Sets the value of "orphans" */
void set orphans(var value);
/** Gets the value of "outline" */
- String get outline;
+ String get outline();
/** Sets the value of "outline" */
void set outline(var value);
/** Gets the value of "outline-color" */
- String get outlineColor;
+ String get outlineColor();
/** Sets the value of "outline-color" */
void set outlineColor(var value);
/** Gets the value of "outline-offset" */
- String get outlineOffset;
+ String get outlineOffset();
/** Sets the value of "outline-offset" */
void set outlineOffset(var value);
/** Gets the value of "outline-style" */
- String get outlineStyle;
+ String get outlineStyle();
/** Sets the value of "outline-style" */
void set outlineStyle(var value);
/** Gets the value of "outline-width" */
- String get outlineWidth;
+ String get outlineWidth();
/** Sets the value of "outline-width" */
void set outlineWidth(var value);
/** Gets the value of "overflow" */
- String get overflow;
+ String get overflow();
/** Sets the value of "overflow" */
void set overflow(var value);
/** Gets the value of "overflow-x" */
- String get overflowX;
+ String get overflowX();
/** Sets the value of "overflow-x" */
void set overflowX(var value);
/** Gets the value of "overflow-y" */
- String get overflowY;
+ String get overflowY();
/** Sets the value of "overflow-y" */
void set overflowY(var value);
/** Gets the value of "padding" */
- String get padding;
+ String get padding();
/** Sets the value of "padding" */
void set padding(var value);
/** Gets the value of "padding-after" */
- String get paddingAfter;
+ String get paddingAfter();
/** Sets the value of "padding-after" */
void set paddingAfter(var value);
/** Gets the value of "padding-before" */
- String get paddingBefore;
+ String get paddingBefore();
/** Sets the value of "padding-before" */
void set paddingBefore(var value);
/** Gets the value of "padding-bottom" */
- String get paddingBottom;
+ String get paddingBottom();
/** Sets the value of "padding-bottom" */
void set paddingBottom(var value);
/** Gets the value of "padding-end" */
- String get paddingEnd;
+ String get paddingEnd();
/** Sets the value of "padding-end" */
void set paddingEnd(var value);
/** Gets the value of "padding-left" */
- String get paddingLeft;
+ String get paddingLeft();
/** Sets the value of "padding-left" */
void set paddingLeft(var value);
/** Gets the value of "padding-right" */
- String get paddingRight;
+ String get paddingRight();
/** Sets the value of "padding-right" */
void set paddingRight(var value);
/** Gets the value of "padding-start" */
- String get paddingStart;
+ String get paddingStart();
/** Sets the value of "padding-start" */
void set paddingStart(var value);
/** Gets the value of "padding-top" */
- String get paddingTop;
+ String get paddingTop();
/** Sets the value of "padding-top" */
void set paddingTop(var value);
/** Gets the value of "page" */
- String get page;
+ String get page();
/** Sets the value of "page" */
void set page(var value);
/** Gets the value of "page-break-after" */
- String get pageBreakAfter;
+ String get pageBreakAfter();
/** Sets the value of "page-break-after" */
void set pageBreakAfter(var value);
/** Gets the value of "page-break-before" */
- String get pageBreakBefore;
+ String get pageBreakBefore();
/** Sets the value of "page-break-before" */
void set pageBreakBefore(var value);
/** Gets the value of "page-break-inside" */
- String get pageBreakInside;
+ String get pageBreakInside();
/** Sets the value of "page-break-inside" */
void set pageBreakInside(var value);
/** Gets the value of "perspective" */
- String get perspective;
+ String get perspective();
/** Sets the value of "perspective" */
void set perspective(var value);
/** Gets the value of "perspective-origin" */
- String get perspectiveOrigin;
+ String get perspectiveOrigin();
/** Sets the value of "perspective-origin" */
void set perspectiveOrigin(var value);
/** Gets the value of "perspective-origin-x" */
- String get perspectiveOriginX;
+ String get perspectiveOriginX();
/** Sets the value of "perspective-origin-x" */
void set perspectiveOriginX(var value);
/** Gets the value of "perspective-origin-y" */
- String get perspectiveOriginY;
+ String get perspectiveOriginY();
/** Sets the value of "perspective-origin-y" */
void set perspectiveOriginY(var value);
/** Gets the value of "pointer-events" */
- String get pointerEvents;
+ String get pointerEvents();
/** Sets the value of "pointer-events" */
void set pointerEvents(var value);
/** Gets the value of "position" */
- String get position;
+ String get position();
/** Sets the value of "position" */
void set position(var value);
/** Gets the value of "quotes" */
- String get quotes;
+ String get quotes();
/** Sets the value of "quotes" */
void set quotes(var value);
/** Gets the value of "region-break-after" */
- String get regionBreakAfter;
+ String get regionBreakAfter();
/** Sets the value of "region-break-after" */
void set regionBreakAfter(var value);
/** Gets the value of "region-break-before" */
- String get regionBreakBefore;
+ String get regionBreakBefore();
/** Sets the value of "region-break-before" */
void set regionBreakBefore(var value);
/** Gets the value of "region-break-inside" */
- String get regionBreakInside;
+ String get regionBreakInside();
/** Sets the value of "region-break-inside" */
void set regionBreakInside(var value);
/** Gets the value of "region-overflow" */
- String get regionOverflow;
+ String get regionOverflow();
/** Sets the value of "region-overflow" */
void set regionOverflow(var value);
/** Gets the value of "resize" */
- String get resize;
+ String get resize();
/** Sets the value of "resize" */
void set resize(var value);
/** Gets the value of "right" */
- String get right;
+ String get right();
/** Sets the value of "right" */
void set right(var value);
/** Gets the value of "rtl-ordering" */
- String get rtlOrdering;
+ String get rtlOrdering();
/** Sets the value of "rtl-ordering" */
void set rtlOrdering(var value);
/** Gets the value of "size" */
- String get size;
+ String get size();
/** Sets the value of "size" */
void set size(var value);
/** Gets the value of "speak" */
- String get speak;
+ String get speak();
/** Sets the value of "speak" */
void set speak(var value);
/** Gets the value of "src" */
- String get src;
+ String get src();
/** Sets the value of "src" */
void set src(var value);
/** Gets the value of "table-layout" */
- String get tableLayout;
+ String get tableLayout();
/** Sets the value of "table-layout" */
void set tableLayout(var value);
/** Gets the value of "tap-highlight-color" */
- String get tapHighlightColor;
+ String get tapHighlightColor();
/** Sets the value of "tap-highlight-color" */
void set tapHighlightColor(var value);
/** Gets the value of "text-align" */
- String get textAlign;
+ String get textAlign();
/** Sets the value of "text-align" */
void set textAlign(var value);
/** Gets the value of "text-combine" */
- String get textCombine;
+ String get textCombine();
/** Sets the value of "text-combine" */
void set textCombine(var value);
/** Gets the value of "text-decoration" */
- String get textDecoration;
+ String get textDecoration();
/** Sets the value of "text-decoration" */
void set textDecoration(var value);
/** Gets the value of "text-decorations-in-effect" */
- String get textDecorationsInEffect;
+ String get textDecorationsInEffect();
/** Sets the value of "text-decorations-in-effect" */
void set textDecorationsInEffect(var value);
/** Gets the value of "text-emphasis" */
- String get textEmphasis;
+ String get textEmphasis();
/** Sets the value of "text-emphasis" */
void set textEmphasis(var value);
/** Gets the value of "text-emphasis-color" */
- String get textEmphasisColor;
+ String get textEmphasisColor();
/** Sets the value of "text-emphasis-color" */
void set textEmphasisColor(var value);
/** Gets the value of "text-emphasis-position" */
- String get textEmphasisPosition;
+ String get textEmphasisPosition();
/** Sets the value of "text-emphasis-position" */
void set textEmphasisPosition(var value);
/** Gets the value of "text-emphasis-style" */
- String get textEmphasisStyle;
+ String get textEmphasisStyle();
/** Sets the value of "text-emphasis-style" */
void set textEmphasisStyle(var value);
/** Gets the value of "text-fill-color" */
- String get textFillColor;
+ String get textFillColor();
/** Sets the value of "text-fill-color" */
void set textFillColor(var value);
/** Gets the value of "text-indent" */
- String get textIndent;
+ String get textIndent();
/** Sets the value of "text-indent" */
void set textIndent(var value);
/** Gets the value of "text-line-through" */
- String get textLineThrough;
+ String get textLineThrough();
/** Sets the value of "text-line-through" */
void set textLineThrough(var value);
/** Gets the value of "text-line-through-color" */
- String get textLineThroughColor;
+ String get textLineThroughColor();
/** Sets the value of "text-line-through-color" */
void set textLineThroughColor(var value);
/** Gets the value of "text-line-through-mode" */
- String get textLineThroughMode;
+ String get textLineThroughMode();
/** Sets the value of "text-line-through-mode" */
void set textLineThroughMode(var value);
/** Gets the value of "text-line-through-style" */
- String get textLineThroughStyle;
+ String get textLineThroughStyle();
/** Sets the value of "text-line-through-style" */
void set textLineThroughStyle(var value);
/** Gets the value of "text-line-through-width" */
- String get textLineThroughWidth;
+ String get textLineThroughWidth();
/** Sets the value of "text-line-through-width" */
void set textLineThroughWidth(var value);
/** Gets the value of "text-orientation" */
- String get textOrientation;
+ String get textOrientation();
/** Sets the value of "text-orientation" */
void set textOrientation(var value);
/** Gets the value of "text-overflow" */
- String get textOverflow;
+ String get textOverflow();
/** Sets the value of "text-overflow" */
void set textOverflow(var value);
/** Gets the value of "text-overline" */
- String get textOverline;
+ String get textOverline();
/** Sets the value of "text-overline" */
void set textOverline(var value);
/** Gets the value of "text-overline-color" */
- String get textOverlineColor;
+ String get textOverlineColor();
/** Sets the value of "text-overline-color" */
void set textOverlineColor(var value);
/** Gets the value of "text-overline-mode" */
- String get textOverlineMode;
+ String get textOverlineMode();
/** Sets the value of "text-overline-mode" */
void set textOverlineMode(var value);
/** Gets the value of "text-overline-style" */
- String get textOverlineStyle;
+ String get textOverlineStyle();
/** Sets the value of "text-overline-style" */
void set textOverlineStyle(var value);
/** Gets the value of "text-overline-width" */
- String get textOverlineWidth;
+ String get textOverlineWidth();
/** Sets the value of "text-overline-width" */
void set textOverlineWidth(var value);
/** Gets the value of "text-rendering" */
- String get textRendering;
+ String get textRendering();
/** Sets the value of "text-rendering" */
void set textRendering(var value);
/** Gets the value of "text-security" */
- String get textSecurity;
+ String get textSecurity();
/** Sets the value of "text-security" */
void set textSecurity(var value);
/** Gets the value of "text-shadow" */
- String get textShadow;
+ String get textShadow();
/** Sets the value of "text-shadow" */
void set textShadow(var value);
/** Gets the value of "text-size-adjust" */
- String get textSizeAdjust;
+ String get textSizeAdjust();
/** Sets the value of "text-size-adjust" */
void set textSizeAdjust(var value);
/** Gets the value of "text-stroke" */
- String get textStroke;
+ String get textStroke();
/** Sets the value of "text-stroke" */
void set textStroke(var value);
/** Gets the value of "text-stroke-color" */
- String get textStrokeColor;
+ String get textStrokeColor();
/** Sets the value of "text-stroke-color" */
void set textStrokeColor(var value);
/** Gets the value of "text-stroke-width" */
- String get textStrokeWidth;
+ String get textStrokeWidth();
/** Sets the value of "text-stroke-width" */
void set textStrokeWidth(var value);
/** Gets the value of "text-transform" */
- String get textTransform;
+ String get textTransform();
/** Sets the value of "text-transform" */
void set textTransform(var value);
/** Gets the value of "text-underline" */
- String get textUnderline;
+ String get textUnderline();
/** Sets the value of "text-underline" */
void set textUnderline(var value);
/** Gets the value of "text-underline-color" */
- String get textUnderlineColor;
+ String get textUnderlineColor();
/** Sets the value of "text-underline-color" */
void set textUnderlineColor(var value);
/** Gets the value of "text-underline-mode" */
- String get textUnderlineMode;
+ String get textUnderlineMode();
/** Sets the value of "text-underline-mode" */
void set textUnderlineMode(var value);
/** Gets the value of "text-underline-style" */
- String get textUnderlineStyle;
+ String get textUnderlineStyle();
/** Sets the value of "text-underline-style" */
void set textUnderlineStyle(var value);
/** Gets the value of "text-underline-width" */
- String get textUnderlineWidth;
+ String get textUnderlineWidth();
/** Sets the value of "text-underline-width" */
void set textUnderlineWidth(var value);
/** Gets the value of "top" */
- String get top;
+ String get top();
/** Sets the value of "top" */
void set top(var value);
/** Gets the value of "transform" */
- String get transform;
+ String get transform();
/** Sets the value of "transform" */
void set transform(var value);
/** Gets the value of "transform-origin" */
- String get transformOrigin;
+ String get transformOrigin();
/** Sets the value of "transform-origin" */
void set transformOrigin(var value);
/** Gets the value of "transform-origin-x" */
- String get transformOriginX;
+ String get transformOriginX();
/** Sets the value of "transform-origin-x" */
void set transformOriginX(var value);
/** Gets the value of "transform-origin-y" */
- String get transformOriginY;
+ String get transformOriginY();
/** Sets the value of "transform-origin-y" */
void set transformOriginY(var value);
/** Gets the value of "transform-origin-z" */
- String get transformOriginZ;
+ String get transformOriginZ();
/** Sets the value of "transform-origin-z" */
void set transformOriginZ(var value);
/** Gets the value of "transform-style" */
- String get transformStyle;
+ String get transformStyle();
/** Sets the value of "transform-style" */
void set transformStyle(var value);
/** Gets the value of "transition" */
- String get transition;
+ String get transition();
/** Sets the value of "transition" */
void set transition(var value);
/** Gets the value of "transition-delay" */
- String get transitionDelay;
+ String get transitionDelay();
/** Sets the value of "transition-delay" */
void set transitionDelay(var value);
/** Gets the value of "transition-duration" */
- String get transitionDuration;
+ String get transitionDuration();
/** Sets the value of "transition-duration" */
void set transitionDuration(var value);
/** Gets the value of "transition-property" */
- String get transitionProperty;
+ String get transitionProperty();
/** Sets the value of "transition-property" */
void set transitionProperty(var value);
/** Gets the value of "transition-timing-function" */
- String get transitionTimingFunction;
+ String get transitionTimingFunction();
/** Sets the value of "transition-timing-function" */
void set transitionTimingFunction(var value);
/** Gets the value of "unicode-bidi" */
- String get unicodeBidi;
+ String get unicodeBidi();
/** Sets the value of "unicode-bidi" */
void set unicodeBidi(var value);
/** Gets the value of "unicode-range" */
- String get unicodeRange;
+ String get unicodeRange();
/** Sets the value of "unicode-range" */
void set unicodeRange(var value);
/** Gets the value of "user-drag" */
- String get userDrag;
+ String get userDrag();
/** Sets the value of "user-drag" */
void set userDrag(var value);
/** Gets the value of "user-modify" */
- String get userModify;
+ String get userModify();
/** Sets the value of "user-modify" */
void set userModify(var value);
/** Gets the value of "user-select" */
- String get userSelect;
+ String get userSelect();
/** Sets the value of "user-select" */
void set userSelect(var value);
/** Gets the value of "vertical-align" */
- String get verticalAlign;
+ String get verticalAlign();
/** Sets the value of "vertical-align" */
void set verticalAlign(var value);
/** Gets the value of "visibility" */
- String get visibility;
+ String get visibility();
/** Sets the value of "visibility" */
void set visibility(var value);
/** Gets the value of "white-space" */
- String get whiteSpace;
+ String get whiteSpace();
/** Sets the value of "white-space" */
void set whiteSpace(var value);
/** Gets the value of "widows" */
- String get widows;
+ String get widows();
/** Sets the value of "widows" */
void set widows(var value);
/** Gets the value of "width" */
- String get width;
+ String get width();
/** Sets the value of "width" */
void set width(var value);
/** Gets the value of "word-break" */
- String get wordBreak;
+ String get wordBreak();
/** Sets the value of "word-break" */
void set wordBreak(var value);
/** Gets the value of "word-spacing" */
- String get wordSpacing;
+ String get wordSpacing();
/** Sets the value of "word-spacing" */
void set wordSpacing(var value);
/** Gets the value of "word-wrap" */
- String get wordWrap;
+ String get wordWrap();
/** Sets the value of "word-wrap" */
void set wordWrap(var value);
/** Gets the value of "wrap-shape" */
- String get wrapShape;
+ String get wrapShape();
/** Sets the value of "wrap-shape" */
void set wrapShape(var value);
/** Gets the value of "writing-mode" */
- String get writingMode;
+ String get writingMode();
/** Sets the value of "writing-mode" */
void set writingMode(var value);
/** Gets the value of "z-index" */
- String get zIndex;
+ String get zIndex();
/** Sets the value of "z-index" */
void set zIndex(var value);
/** Gets the value of "zoom" */
- String get zoom;
+ String get zoom();
/** Sets the value of "zoom" */
void set zoom(var value);
@@ -23903,7 +23903,7 @@ interface ElementList extends List {
ElementList getRange(int start, int length);
- Element get first;
+ Element get first();
// TODO(jacobr): add insertAt
}
@@ -23921,13 +23921,13 @@ interface AttributeMap extends Map<String, String> {
*/
interface ElementRect {
// Relative to offsetParent
- ClientRect get client;
- ClientRect get offset;
- ClientRect get scroll;
+ ClientRect get client();
+ ClientRect get offset();
+ ClientRect get scroll();
// In global coords
- ClientRect get bounding;
+ ClientRect get bounding();
// In global coords
- List<ClientRect> get clientRects;
+ List<ClientRect> get clientRects();
}
interface NodeSelector {
@@ -23946,7 +23946,7 @@ interface CSSClassSet extends Set<String> {
* Returns [:true:] classes cannot be added or removed from this
* [:CSSClassSet:].
*/
- bool get isFrozen;
+ bool get isFrozen();
}
/// @domName Element
@@ -23954,23 +23954,23 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
Element.html(String html);
Element.tag(String tag);
- AttributeMap get attributes;
+ AttributeMap get attributes();
void set attributes(Map<String, String> value);
/**
* @domName childElementCount, firstElementChild, lastElementChild,
* children, Node.nodes.add
*/
- ElementList get elements;
+ ElementList get elements();
void set elements(Collection<Element> value);
/** @domName className, classList */
- CSSClassSet get classes;
+ CSSClassSet get classes();
void set classes(Collection<String> value);
- AttributeMap get dataAttributes;
+ AttributeMap get dataAttributes();
void set dataAttributes(Map<String, String> value);
/**
@@ -23989,17 +23989,17 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
* clientTop, clientLeft, offsetHeight, offsetWidth, offsetTop, offsetLeft,
* scrollHeight, scrollWidth, scrollTop, scrollLeft
*/
- Future<ElementRect> get rect;
+ Future<ElementRect> get rect();
/** @domName Window.getComputedStyle */
- Future<CSSStyleDeclaration> get computedStyle;
+ Future<CSSStyleDeclaration> get computedStyle();
/** @domName Window.getComputedStyle */
Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement);
Element clone(bool deep);
- Element get parent;
+ Element get parent();
/**
@@ -28287,7 +28287,7 @@ typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream);
/// @domName Node
interface Node extends EventTarget {
- NodeList get nodes;
+ NodeList get nodes();
void set nodes(Collection<Node> value);
@@ -28494,7 +28494,7 @@ interface NodeList extends List<Node> {
NodeList getRange(int start, int length);
- Node get first;
+ Node get first();
/** @domName NodeList.length */
@@ -36446,7 +36446,7 @@ interface Window extends EventTarget {
void cancelAnimationFrame(int id);
- IDBFactory get indexedDB;
+ IDBFactory get indexedDB();
/**
* Creates a new object URL for the specified object. The URL will be
« no previous file with comments | « lib/dom/templates/html/impl/impl_Storage.darttemplate ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698