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

Unified Diff: lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 10919146: Get rid of a lot of () for getters. (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/html/dart2js/html_dart2js.dart ('k') | lib/html/src/AnimationEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 86e136ec6b53f5ea53e57793925aa4883f6ee5dd..5faaffc8a45956cfbadffc9afd4aec15b2aec262 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -18,7 +18,7 @@
Window __window;
-Window get window() {
+Window get window {
if (__window !== null) {
return __window;
}
@@ -30,7 +30,7 @@ Window get _window() native "Utils_window";
Document __document;
-Document get document() {
+Document get document {
if (__document !== null) {
return __document;
}
@@ -38,7 +38,7 @@ Document get document() {
return __document;
}
-Document get _document() => _window.document;
+Document get _document => _window.document;
Element query(String selector) => _document.query(selector);
ElementList queryAll(String selector) => _document.queryAll(selector);
@@ -71,7 +71,7 @@ _callPortSync(num id, var message) {
class _AbstractWorkerEventsImpl extends _EventsImpl implements AbstractWorkerEvents {
_AbstractWorkerEventsImpl(_ptr) : super(_ptr);
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
}
// 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
@@ -81,7 +81,7 @@ class _AbstractWorkerEventsImpl extends _EventsImpl implements AbstractWorkerEve
class _AbstractWorkerImpl extends _EventTargetImpl implements AbstractWorker {
- _AbstractWorkerEventsImpl get on() =>
+ _AbstractWorkerEventsImpl get on =>
new _AbstractWorkerEventsImpl(this);
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "AbstractWorker_addEventListener_Callback";
@@ -235,7 +235,7 @@ class _AudioChannelSplitterImpl extends _AudioNodeImpl implements AudioChannelSp
class _AudioContextEventsImpl extends _EventsImpl implements AudioContextEvents {
_AudioContextEventsImpl(_ptr) : super(_ptr);
- EventListenerList get complete() => this['complete'];
+ EventListenerList get complete => this['complete'];
}
// 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
@@ -245,7 +245,7 @@ class _AudioContextEventsImpl extends _EventsImpl implements AudioContextEvents
class _AudioContextImpl extends _EventTargetImpl implements AudioContext {
- _AudioContextEventsImpl get on() =>
+ _AudioContextEventsImpl get on =>
new _AudioContextEventsImpl(this);
int get activeSourceCount() native "AudioContext_activeSourceCount_Getter";
@@ -560,13 +560,13 @@ class _BarInfoImpl extends NativeFieldWrapperClass1 implements BarInfo {
class _BatteryManagerEventsImpl extends _EventsImpl implements BatteryManagerEvents {
_BatteryManagerEventsImpl(_ptr) : super(_ptr);
- EventListenerList get chargingChange() => this['chargingchange'];
+ EventListenerList get chargingChange => this['chargingchange'];
- EventListenerList get chargingTimeChange() => this['chargingtimechange'];
+ EventListenerList get chargingTimeChange => this['chargingtimechange'];
- EventListenerList get dischargingTimeChange() => this['dischargingtimechange'];
+ EventListenerList get dischargingTimeChange => this['dischargingtimechange'];
- EventListenerList get levelChange() => this['levelchange'];
+ EventListenerList get levelChange => this['levelchange'];
}
// 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
@@ -576,7 +576,7 @@ class _BatteryManagerEventsImpl extends _EventsImpl implements BatteryManagerEve
class _BatteryManagerImpl extends _EventTargetImpl implements BatteryManager {
- _BatteryManagerEventsImpl get on() =>
+ _BatteryManagerEventsImpl get on =>
new _BatteryManagerEventsImpl(this);
bool get charging() native "BatteryManager_charging_Getter";
@@ -832,7 +832,7 @@ class _CSSRuleListImpl extends NativeFieldWrapperClass1 implements CSSRuleList {
String _cachedBrowserPrefix;
-String get _browserPrefix() {
+String get _browserPrefix {
if (_cachedBrowserPrefix === null) {
if (_Device.isFirefox) {
_cachedBrowserPrefix = '-moz-';
@@ -877,7 +877,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
// TODO(jacobr): generate this list of properties using the existing script.
/** Gets the value of "animation" */
- String get animation() =>
+ String get animation =>
getPropertyValue('${_browserPrefix}animation');
/** Sets the value of "animation" */
@@ -886,7 +886,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-delay" */
- String get animationDelay() =>
+ String get animationDelay =>
getPropertyValue('${_browserPrefix}animation-delay');
/** Sets the value of "animation-delay" */
@@ -895,7 +895,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-direction" */
- String get animationDirection() =>
+ String get animationDirection =>
getPropertyValue('${_browserPrefix}animation-direction');
/** Sets the value of "animation-direction" */
@@ -904,7 +904,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-duration" */
- String get animationDuration() =>
+ String get animationDuration =>
getPropertyValue('${_browserPrefix}animation-duration');
/** Sets the value of "animation-duration" */
@@ -913,7 +913,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-fill-mode" */
- String get animationFillMode() =>
+ String get animationFillMode =>
getPropertyValue('${_browserPrefix}animation-fill-mode');
/** Sets the value of "animation-fill-mode" */
@@ -922,7 +922,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-iteration-count" */
- String get animationIterationCount() =>
+ String get animationIterationCount =>
getPropertyValue('${_browserPrefix}animation-iteration-count');
/** Sets the value of "animation-iteration-count" */
@@ -931,7 +931,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-name" */
- String get animationName() =>
+ String get animationName =>
getPropertyValue('${_browserPrefix}animation-name');
/** Sets the value of "animation-name" */
@@ -940,7 +940,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-play-state" */
- String get animationPlayState() =>
+ String get animationPlayState =>
getPropertyValue('${_browserPrefix}animation-play-state');
/** Sets the value of "animation-play-state" */
@@ -949,7 +949,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "animation-timing-function" */
- String get animationTimingFunction() =>
+ String get animationTimingFunction =>
getPropertyValue('${_browserPrefix}animation-timing-function');
/** Sets the value of "animation-timing-function" */
@@ -958,7 +958,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "appearance" */
- String get appearance() =>
+ String get appearance =>
getPropertyValue('${_browserPrefix}appearance');
/** Sets the value of "appearance" */
@@ -967,7 +967,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "backface-visibility" */
- String get backfaceVisibility() =>
+ String get backfaceVisibility =>
getPropertyValue('${_browserPrefix}backface-visibility');
/** Sets the value of "backface-visibility" */
@@ -976,7 +976,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background" */
- String get background() =>
+ String get background =>
getPropertyValue('background');
/** Sets the value of "background" */
@@ -985,7 +985,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-attachment" */
- String get backgroundAttachment() =>
+ String get backgroundAttachment =>
getPropertyValue('background-attachment');
/** Sets the value of "background-attachment" */
@@ -994,7 +994,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-clip" */
- String get backgroundClip() =>
+ String get backgroundClip =>
getPropertyValue('background-clip');
/** Sets the value of "background-clip" */
@@ -1003,7 +1003,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-color" */
- String get backgroundColor() =>
+ String get backgroundColor =>
getPropertyValue('background-color');
/** Sets the value of "background-color" */
@@ -1012,7 +1012,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-composite" */
- String get backgroundComposite() =>
+ String get backgroundComposite =>
getPropertyValue('${_browserPrefix}background-composite');
/** Sets the value of "background-composite" */
@@ -1021,7 +1021,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-image" */
- String get backgroundImage() =>
+ String get backgroundImage =>
getPropertyValue('background-image');
/** Sets the value of "background-image" */
@@ -1030,7 +1030,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-origin" */
- String get backgroundOrigin() =>
+ String get backgroundOrigin =>
getPropertyValue('background-origin');
/** Sets the value of "background-origin" */
@@ -1039,7 +1039,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-position" */
- String get backgroundPosition() =>
+ String get backgroundPosition =>
getPropertyValue('background-position');
/** Sets the value of "background-position" */
@@ -1048,7 +1048,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-position-x" */
- String get backgroundPositionX() =>
+ String get backgroundPositionX =>
getPropertyValue('background-position-x');
/** Sets the value of "background-position-x" */
@@ -1057,7 +1057,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-position-y" */
- String get backgroundPositionY() =>
+ String get backgroundPositionY =>
getPropertyValue('background-position-y');
/** Sets the value of "background-position-y" */
@@ -1066,7 +1066,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-repeat" */
- String get backgroundRepeat() =>
+ String get backgroundRepeat =>
getPropertyValue('background-repeat');
/** Sets the value of "background-repeat" */
@@ -1075,7 +1075,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-repeat-x" */
- String get backgroundRepeatX() =>
+ String get backgroundRepeatX =>
getPropertyValue('background-repeat-x');
/** Sets the value of "background-repeat-x" */
@@ -1084,7 +1084,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-repeat-y" */
- String get backgroundRepeatY() =>
+ String get backgroundRepeatY =>
getPropertyValue('background-repeat-y');
/** Sets the value of "background-repeat-y" */
@@ -1093,7 +1093,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "background-size" */
- String get backgroundSize() =>
+ String get backgroundSize =>
getPropertyValue('background-size');
/** Sets the value of "background-size" */
@@ -1102,7 +1102,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border" */
- String get border() =>
+ String get border =>
getPropertyValue('border');
/** Sets the value of "border" */
@@ -1111,7 +1111,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-after" */
- String get borderAfter() =>
+ String get borderAfter =>
getPropertyValue('${_browserPrefix}border-after');
/** Sets the value of "border-after" */
@@ -1120,7 +1120,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-after-color" */
- String get borderAfterColor() =>
+ String get borderAfterColor =>
getPropertyValue('${_browserPrefix}border-after-color');
/** Sets the value of "border-after-color" */
@@ -1129,7 +1129,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-after-style" */
- String get borderAfterStyle() =>
+ String get borderAfterStyle =>
getPropertyValue('${_browserPrefix}border-after-style');
/** Sets the value of "border-after-style" */
@@ -1138,7 +1138,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-after-width" */
- String get borderAfterWidth() =>
+ String get borderAfterWidth =>
getPropertyValue('${_browserPrefix}border-after-width');
/** Sets the value of "border-after-width" */
@@ -1147,7 +1147,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-before" */
- String get borderBefore() =>
+ String get borderBefore =>
getPropertyValue('${_browserPrefix}border-before');
/** Sets the value of "border-before" */
@@ -1156,7 +1156,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-before-color" */
- String get borderBeforeColor() =>
+ String get borderBeforeColor =>
getPropertyValue('${_browserPrefix}border-before-color');
/** Sets the value of "border-before-color" */
@@ -1165,7 +1165,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-before-style" */
- String get borderBeforeStyle() =>
+ String get borderBeforeStyle =>
getPropertyValue('${_browserPrefix}border-before-style');
/** Sets the value of "border-before-style" */
@@ -1174,7 +1174,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-before-width" */
- String get borderBeforeWidth() =>
+ String get borderBeforeWidth =>
getPropertyValue('${_browserPrefix}border-before-width');
/** Sets the value of "border-before-width" */
@@ -1183,7 +1183,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-bottom" */
- String get borderBottom() =>
+ String get borderBottom =>
getPropertyValue('border-bottom');
/** Sets the value of "border-bottom" */
@@ -1192,7 +1192,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-bottom-color" */
- String get borderBottomColor() =>
+ String get borderBottomColor =>
getPropertyValue('border-bottom-color');
/** Sets the value of "border-bottom-color" */
@@ -1201,7 +1201,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-bottom-left-radius" */
- String get borderBottomLeftRadius() =>
+ String get borderBottomLeftRadius =>
getPropertyValue('border-bottom-left-radius');
/** Sets the value of "border-bottom-left-radius" */
@@ -1210,7 +1210,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-bottom-right-radius" */
- String get borderBottomRightRadius() =>
+ String get borderBottomRightRadius =>
getPropertyValue('border-bottom-right-radius');
/** Sets the value of "border-bottom-right-radius" */
@@ -1219,7 +1219,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-bottom-style" */
- String get borderBottomStyle() =>
+ String get borderBottomStyle =>
getPropertyValue('border-bottom-style');
/** Sets the value of "border-bottom-style" */
@@ -1228,7 +1228,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-bottom-width" */
- String get borderBottomWidth() =>
+ String get borderBottomWidth =>
getPropertyValue('border-bottom-width');
/** Sets the value of "border-bottom-width" */
@@ -1237,7 +1237,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-collapse" */
- String get borderCollapse() =>
+ String get borderCollapse =>
getPropertyValue('border-collapse');
/** Sets the value of "border-collapse" */
@@ -1246,7 +1246,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-color" */
- String get borderColor() =>
+ String get borderColor =>
getPropertyValue('border-color');
/** Sets the value of "border-color" */
@@ -1255,7 +1255,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-end" */
- String get borderEnd() =>
+ String get borderEnd =>
getPropertyValue('${_browserPrefix}border-end');
/** Sets the value of "border-end" */
@@ -1264,7 +1264,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-end-color" */
- String get borderEndColor() =>
+ String get borderEndColor =>
getPropertyValue('${_browserPrefix}border-end-color');
/** Sets the value of "border-end-color" */
@@ -1273,7 +1273,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-end-style" */
- String get borderEndStyle() =>
+ String get borderEndStyle =>
getPropertyValue('${_browserPrefix}border-end-style');
/** Sets the value of "border-end-style" */
@@ -1282,7 +1282,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-end-width" */
- String get borderEndWidth() =>
+ String get borderEndWidth =>
getPropertyValue('${_browserPrefix}border-end-width');
/** Sets the value of "border-end-width" */
@@ -1291,7 +1291,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-fit" */
- String get borderFit() =>
+ String get borderFit =>
getPropertyValue('${_browserPrefix}border-fit');
/** Sets the value of "border-fit" */
@@ -1300,7 +1300,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-horizontal-spacing" */
- String get borderHorizontalSpacing() =>
+ String get borderHorizontalSpacing =>
getPropertyValue('${_browserPrefix}border-horizontal-spacing');
/** Sets the value of "border-horizontal-spacing" */
@@ -1309,7 +1309,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-image" */
- String get borderImage() =>
+ String get borderImage =>
getPropertyValue('border-image');
/** Sets the value of "border-image" */
@@ -1318,7 +1318,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-image-outset" */
- String get borderImageOutset() =>
+ String get borderImageOutset =>
getPropertyValue('border-image-outset');
/** Sets the value of "border-image-outset" */
@@ -1327,7 +1327,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-image-repeat" */
- String get borderImageRepeat() =>
+ String get borderImageRepeat =>
getPropertyValue('border-image-repeat');
/** Sets the value of "border-image-repeat" */
@@ -1336,7 +1336,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-image-slice" */
- String get borderImageSlice() =>
+ String get borderImageSlice =>
getPropertyValue('border-image-slice');
/** Sets the value of "border-image-slice" */
@@ -1345,7 +1345,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-image-source" */
- String get borderImageSource() =>
+ String get borderImageSource =>
getPropertyValue('border-image-source');
/** Sets the value of "border-image-source" */
@@ -1354,7 +1354,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-image-width" */
- String get borderImageWidth() =>
+ String get borderImageWidth =>
getPropertyValue('border-image-width');
/** Sets the value of "border-image-width" */
@@ -1363,7 +1363,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-left" */
- String get borderLeft() =>
+ String get borderLeft =>
getPropertyValue('border-left');
/** Sets the value of "border-left" */
@@ -1372,7 +1372,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-left-color" */
- String get borderLeftColor() =>
+ String get borderLeftColor =>
getPropertyValue('border-left-color');
/** Sets the value of "border-left-color" */
@@ -1381,7 +1381,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-left-style" */
- String get borderLeftStyle() =>
+ String get borderLeftStyle =>
getPropertyValue('border-left-style');
/** Sets the value of "border-left-style" */
@@ -1390,7 +1390,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-left-width" */
- String get borderLeftWidth() =>
+ String get borderLeftWidth =>
getPropertyValue('border-left-width');
/** Sets the value of "border-left-width" */
@@ -1399,7 +1399,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-radius" */
- String get borderRadius() =>
+ String get borderRadius =>
getPropertyValue('border-radius');
/** Sets the value of "border-radius" */
@@ -1408,7 +1408,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-right" */
- String get borderRight() =>
+ String get borderRight =>
getPropertyValue('border-right');
/** Sets the value of "border-right" */
@@ -1417,7 +1417,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-right-color" */
- String get borderRightColor() =>
+ String get borderRightColor =>
getPropertyValue('border-right-color');
/** Sets the value of "border-right-color" */
@@ -1426,7 +1426,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-right-style" */
- String get borderRightStyle() =>
+ String get borderRightStyle =>
getPropertyValue('border-right-style');
/** Sets the value of "border-right-style" */
@@ -1435,7 +1435,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-right-width" */
- String get borderRightWidth() =>
+ String get borderRightWidth =>
getPropertyValue('border-right-width');
/** Sets the value of "border-right-width" */
@@ -1444,7 +1444,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-spacing" */
- String get borderSpacing() =>
+ String get borderSpacing =>
getPropertyValue('border-spacing');
/** Sets the value of "border-spacing" */
@@ -1453,7 +1453,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-start" */
- String get borderStart() =>
+ String get borderStart =>
getPropertyValue('${_browserPrefix}border-start');
/** Sets the value of "border-start" */
@@ -1462,7 +1462,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-start-color" */
- String get borderStartColor() =>
+ String get borderStartColor =>
getPropertyValue('${_browserPrefix}border-start-color');
/** Sets the value of "border-start-color" */
@@ -1471,7 +1471,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-start-style" */
- String get borderStartStyle() =>
+ String get borderStartStyle =>
getPropertyValue('${_browserPrefix}border-start-style');
/** Sets the value of "border-start-style" */
@@ -1480,7 +1480,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-start-width" */
- String get borderStartWidth() =>
+ String get borderStartWidth =>
getPropertyValue('${_browserPrefix}border-start-width');
/** Sets the value of "border-start-width" */
@@ -1489,7 +1489,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-style" */
- String get borderStyle() =>
+ String get borderStyle =>
getPropertyValue('border-style');
/** Sets the value of "border-style" */
@@ -1498,7 +1498,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-top" */
- String get borderTop() =>
+ String get borderTop =>
getPropertyValue('border-top');
/** Sets the value of "border-top" */
@@ -1507,7 +1507,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-top-color" */
- String get borderTopColor() =>
+ String get borderTopColor =>
getPropertyValue('border-top-color');
/** Sets the value of "border-top-color" */
@@ -1516,7 +1516,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-top-left-radius" */
- String get borderTopLeftRadius() =>
+ String get borderTopLeftRadius =>
getPropertyValue('border-top-left-radius');
/** Sets the value of "border-top-left-radius" */
@@ -1525,7 +1525,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-top-right-radius" */
- String get borderTopRightRadius() =>
+ String get borderTopRightRadius =>
getPropertyValue('border-top-right-radius');
/** Sets the value of "border-top-right-radius" */
@@ -1534,7 +1534,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-top-style" */
- String get borderTopStyle() =>
+ String get borderTopStyle =>
getPropertyValue('border-top-style');
/** Sets the value of "border-top-style" */
@@ -1543,7 +1543,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-top-width" */
- String get borderTopWidth() =>
+ String get borderTopWidth =>
getPropertyValue('border-top-width');
/** Sets the value of "border-top-width" */
@@ -1552,7 +1552,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-vertical-spacing" */
- String get borderVerticalSpacing() =>
+ String get borderVerticalSpacing =>
getPropertyValue('${_browserPrefix}border-vertical-spacing');
/** Sets the value of "border-vertical-spacing" */
@@ -1561,7 +1561,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "border-width" */
- String get borderWidth() =>
+ String get borderWidth =>
getPropertyValue('border-width');
/** Sets the value of "border-width" */
@@ -1570,7 +1570,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "bottom" */
- String get bottom() =>
+ String get bottom =>
getPropertyValue('bottom');
/** Sets the value of "bottom" */
@@ -1579,7 +1579,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-align" */
- String get boxAlign() =>
+ String get boxAlign =>
getPropertyValue('${_browserPrefix}box-align');
/** Sets the value of "box-align" */
@@ -1588,7 +1588,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-direction" */
- String get boxDirection() =>
+ String get boxDirection =>
getPropertyValue('${_browserPrefix}box-direction');
/** Sets the value of "box-direction" */
@@ -1597,7 +1597,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-flex" */
- String get boxFlex() =>
+ String get boxFlex =>
getPropertyValue('${_browserPrefix}box-flex');
/** Sets the value of "box-flex" */
@@ -1606,7 +1606,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-flex-group" */
- String get boxFlexGroup() =>
+ String get boxFlexGroup =>
getPropertyValue('${_browserPrefix}box-flex-group');
/** Sets the value of "box-flex-group" */
@@ -1615,7 +1615,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-lines" */
- String get boxLines() =>
+ String get boxLines =>
getPropertyValue('${_browserPrefix}box-lines');
/** Sets the value of "box-lines" */
@@ -1624,7 +1624,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-ordinal-group" */
- String get boxOrdinalGroup() =>
+ String get boxOrdinalGroup =>
getPropertyValue('${_browserPrefix}box-ordinal-group');
/** Sets the value of "box-ordinal-group" */
@@ -1633,7 +1633,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-orient" */
- String get boxOrient() =>
+ String get boxOrient =>
getPropertyValue('${_browserPrefix}box-orient');
/** Sets the value of "box-orient" */
@@ -1642,7 +1642,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-pack" */
- String get boxPack() =>
+ String get boxPack =>
getPropertyValue('${_browserPrefix}box-pack');
/** Sets the value of "box-pack" */
@@ -1651,7 +1651,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-reflect" */
- String get boxReflect() =>
+ String get boxReflect =>
getPropertyValue('${_browserPrefix}box-reflect');
/** Sets the value of "box-reflect" */
@@ -1660,7 +1660,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-shadow" */
- String get boxShadow() =>
+ String get boxShadow =>
getPropertyValue('box-shadow');
/** Sets the value of "box-shadow" */
@@ -1669,7 +1669,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "box-sizing" */
- String get boxSizing() =>
+ String get boxSizing =>
getPropertyValue('box-sizing');
/** Sets the value of "box-sizing" */
@@ -1678,7 +1678,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "caption-side" */
- String get captionSide() =>
+ String get captionSide =>
getPropertyValue('caption-side');
/** Sets the value of "caption-side" */
@@ -1687,7 +1687,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "clear" */
- String get clear() =>
+ String get clear =>
getPropertyValue('clear');
/** Sets the value of "clear" */
@@ -1696,7 +1696,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "clip" */
- String get clip() =>
+ String get clip =>
getPropertyValue('clip');
/** Sets the value of "clip" */
@@ -1705,7 +1705,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "color" */
- String get color() =>
+ String get color =>
getPropertyValue('color');
/** Sets the value of "color" */
@@ -1714,7 +1714,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "color-correction" */
- String get colorCorrection() =>
+ String get colorCorrection =>
getPropertyValue('${_browserPrefix}color-correction');
/** Sets the value of "color-correction" */
@@ -1723,7 +1723,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-break-after" */
- String get columnBreakAfter() =>
+ String get columnBreakAfter =>
getPropertyValue('${_browserPrefix}column-break-after');
/** Sets the value of "column-break-after" */
@@ -1732,7 +1732,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-break-before" */
- String get columnBreakBefore() =>
+ String get columnBreakBefore =>
getPropertyValue('${_browserPrefix}column-break-before');
/** Sets the value of "column-break-before" */
@@ -1741,7 +1741,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-break-inside" */
- String get columnBreakInside() =>
+ String get columnBreakInside =>
getPropertyValue('${_browserPrefix}column-break-inside');
/** Sets the value of "column-break-inside" */
@@ -1750,7 +1750,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-count" */
- String get columnCount() =>
+ String get columnCount =>
getPropertyValue('${_browserPrefix}column-count');
/** Sets the value of "column-count" */
@@ -1759,7 +1759,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-gap" */
- String get columnGap() =>
+ String get columnGap =>
getPropertyValue('${_browserPrefix}column-gap');
/** Sets the value of "column-gap" */
@@ -1768,7 +1768,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-rule" */
- String get columnRule() =>
+ String get columnRule =>
getPropertyValue('${_browserPrefix}column-rule');
/** Sets the value of "column-rule" */
@@ -1777,7 +1777,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-rule-color" */
- String get columnRuleColor() =>
+ String get columnRuleColor =>
getPropertyValue('${_browserPrefix}column-rule-color');
/** Sets the value of "column-rule-color" */
@@ -1786,7 +1786,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-rule-style" */
- String get columnRuleStyle() =>
+ String get columnRuleStyle =>
getPropertyValue('${_browserPrefix}column-rule-style');
/** Sets the value of "column-rule-style" */
@@ -1795,7 +1795,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-rule-width" */
- String get columnRuleWidth() =>
+ String get columnRuleWidth =>
getPropertyValue('${_browserPrefix}column-rule-width');
/** Sets the value of "column-rule-width" */
@@ -1804,7 +1804,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-span" */
- String get columnSpan() =>
+ String get columnSpan =>
getPropertyValue('${_browserPrefix}column-span');
/** Sets the value of "column-span" */
@@ -1813,7 +1813,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "column-width" */
- String get columnWidth() =>
+ String get columnWidth =>
getPropertyValue('${_browserPrefix}column-width');
/** Sets the value of "column-width" */
@@ -1822,7 +1822,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "columns" */
- String get columns() =>
+ String get columns =>
getPropertyValue('${_browserPrefix}columns');
/** Sets the value of "columns" */
@@ -1831,7 +1831,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "content" */
- String get content() =>
+ String get content =>
getPropertyValue('content');
/** Sets the value of "content" */
@@ -1840,7 +1840,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "counter-increment" */
- String get counterIncrement() =>
+ String get counterIncrement =>
getPropertyValue('counter-increment');
/** Sets the value of "counter-increment" */
@@ -1849,7 +1849,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "counter-reset" */
- String get counterReset() =>
+ String get counterReset =>
getPropertyValue('counter-reset');
/** Sets the value of "counter-reset" */
@@ -1858,7 +1858,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "cursor" */
- String get cursor() =>
+ String get cursor =>
getPropertyValue('cursor');
/** Sets the value of "cursor" */
@@ -1867,7 +1867,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "direction" */
- String get direction() =>
+ String get direction =>
getPropertyValue('direction');
/** Sets the value of "direction" */
@@ -1876,7 +1876,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "display" */
- String get display() =>
+ String get display =>
getPropertyValue('display');
/** Sets the value of "display" */
@@ -1885,7 +1885,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "empty-cells" */
- String get emptyCells() =>
+ String get emptyCells =>
getPropertyValue('empty-cells');
/** Sets the value of "empty-cells" */
@@ -1894,7 +1894,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "filter" */
- String get filter() =>
+ String get filter =>
getPropertyValue('${_browserPrefix}filter');
/** Sets the value of "filter" */
@@ -1903,7 +1903,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "flex-align" */
- String get flexAlign() =>
+ String get flexAlign =>
getPropertyValue('${_browserPrefix}flex-align');
/** Sets the value of "flex-align" */
@@ -1912,7 +1912,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "flex-flow" */
- String get flexFlow() =>
+ String get flexFlow =>
getPropertyValue('${_browserPrefix}flex-flow');
/** Sets the value of "flex-flow" */
@@ -1921,7 +1921,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "flex-order" */
- String get flexOrder() =>
+ String get flexOrder =>
getPropertyValue('${_browserPrefix}flex-order');
/** Sets the value of "flex-order" */
@@ -1930,7 +1930,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "flex-pack" */
- String get flexPack() =>
+ String get flexPack =>
getPropertyValue('${_browserPrefix}flex-pack');
/** Sets the value of "flex-pack" */
@@ -1939,7 +1939,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "float" */
- String get float() =>
+ String get float =>
getPropertyValue('float');
/** Sets the value of "float" */
@@ -1948,7 +1948,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "flow-from" */
- String get flowFrom() =>
+ String get flowFrom =>
getPropertyValue('${_browserPrefix}flow-from');
/** Sets the value of "flow-from" */
@@ -1957,7 +1957,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "flow-into" */
- String get flowInto() =>
+ String get flowInto =>
getPropertyValue('${_browserPrefix}flow-into');
/** Sets the value of "flow-into" */
@@ -1966,7 +1966,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font" */
- String get font() =>
+ String get font =>
getPropertyValue('font');
/** Sets the value of "font" */
@@ -1975,7 +1975,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-family" */
- String get fontFamily() =>
+ String get fontFamily =>
getPropertyValue('font-family');
/** Sets the value of "font-family" */
@@ -1984,7 +1984,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-feature-settings" */
- String get fontFeatureSettings() =>
+ String get fontFeatureSettings =>
getPropertyValue('${_browserPrefix}font-feature-settings');
/** Sets the value of "font-feature-settings" */
@@ -1993,7 +1993,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-size" */
- String get fontSize() =>
+ String get fontSize =>
getPropertyValue('font-size');
/** Sets the value of "font-size" */
@@ -2002,7 +2002,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-size-delta" */
- String get fontSizeDelta() =>
+ String get fontSizeDelta =>
getPropertyValue('${_browserPrefix}font-size-delta');
/** Sets the value of "font-size-delta" */
@@ -2011,7 +2011,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-smoothing" */
- String get fontSmoothing() =>
+ String get fontSmoothing =>
getPropertyValue('${_browserPrefix}font-smoothing');
/** Sets the value of "font-smoothing" */
@@ -2020,7 +2020,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-stretch" */
- String get fontStretch() =>
+ String get fontStretch =>
getPropertyValue('font-stretch');
/** Sets the value of "font-stretch" */
@@ -2029,7 +2029,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-style" */
- String get fontStyle() =>
+ String get fontStyle =>
getPropertyValue('font-style');
/** Sets the value of "font-style" */
@@ -2038,7 +2038,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-variant" */
- String get fontVariant() =>
+ String get fontVariant =>
getPropertyValue('font-variant');
/** Sets the value of "font-variant" */
@@ -2047,7 +2047,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "font-weight" */
- String get fontWeight() =>
+ String get fontWeight =>
getPropertyValue('font-weight');
/** Sets the value of "font-weight" */
@@ -2056,7 +2056,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "height" */
- String get height() =>
+ String get height =>
getPropertyValue('height');
/** Sets the value of "height" */
@@ -2065,7 +2065,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "highlight" */
- String get highlight() =>
+ String get highlight =>
getPropertyValue('${_browserPrefix}highlight');
/** Sets the value of "highlight" */
@@ -2074,7 +2074,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "hyphenate-character" */
- String get hyphenateCharacter() =>
+ String get hyphenateCharacter =>
getPropertyValue('${_browserPrefix}hyphenate-character');
/** Sets the value of "hyphenate-character" */
@@ -2083,7 +2083,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "hyphenate-limit-after" */
- String get hyphenateLimitAfter() =>
+ String get hyphenateLimitAfter =>
getPropertyValue('${_browserPrefix}hyphenate-limit-after');
/** Sets the value of "hyphenate-limit-after" */
@@ -2092,7 +2092,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "hyphenate-limit-before" */
- String get hyphenateLimitBefore() =>
+ String get hyphenateLimitBefore =>
getPropertyValue('${_browserPrefix}hyphenate-limit-before');
/** Sets the value of "hyphenate-limit-before" */
@@ -2101,7 +2101,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "hyphenate-limit-lines" */
- String get hyphenateLimitLines() =>
+ String get hyphenateLimitLines =>
getPropertyValue('${_browserPrefix}hyphenate-limit-lines');
/** Sets the value of "hyphenate-limit-lines" */
@@ -2110,7 +2110,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "hyphens" */
- String get hyphens() =>
+ String get hyphens =>
getPropertyValue('${_browserPrefix}hyphens');
/** Sets the value of "hyphens" */
@@ -2119,7 +2119,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "image-rendering" */
- String get imageRendering() =>
+ String get imageRendering =>
getPropertyValue('image-rendering');
/** Sets the value of "image-rendering" */
@@ -2128,7 +2128,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "left" */
- String get left() =>
+ String get left =>
getPropertyValue('left');
/** Sets the value of "left" */
@@ -2137,7 +2137,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "letter-spacing" */
- String get letterSpacing() =>
+ String get letterSpacing =>
getPropertyValue('letter-spacing');
/** Sets the value of "letter-spacing" */
@@ -2146,7 +2146,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "line-box-contain" */
- String get lineBoxContain() =>
+ String get lineBoxContain =>
getPropertyValue('${_browserPrefix}line-box-contain');
/** Sets the value of "line-box-contain" */
@@ -2155,7 +2155,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "line-break" */
- String get lineBreak() =>
+ String get lineBreak =>
getPropertyValue('${_browserPrefix}line-break');
/** Sets the value of "line-break" */
@@ -2164,7 +2164,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "line-clamp" */
- String get lineClamp() =>
+ String get lineClamp =>
getPropertyValue('${_browserPrefix}line-clamp');
/** Sets the value of "line-clamp" */
@@ -2173,7 +2173,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "line-height" */
- String get lineHeight() =>
+ String get lineHeight =>
getPropertyValue('line-height');
/** Sets the value of "line-height" */
@@ -2182,7 +2182,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "list-style" */
- String get listStyle() =>
+ String get listStyle =>
getPropertyValue('list-style');
/** Sets the value of "list-style" */
@@ -2191,7 +2191,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "list-style-image" */
- String get listStyleImage() =>
+ String get listStyleImage =>
getPropertyValue('list-style-image');
/** Sets the value of "list-style-image" */
@@ -2200,7 +2200,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "list-style-position" */
- String get listStylePosition() =>
+ String get listStylePosition =>
getPropertyValue('list-style-position');
/** Sets the value of "list-style-position" */
@@ -2209,7 +2209,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "list-style-type" */
- String get listStyleType() =>
+ String get listStyleType =>
getPropertyValue('list-style-type');
/** Sets the value of "list-style-type" */
@@ -2218,7 +2218,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "locale" */
- String get locale() =>
+ String get locale =>
getPropertyValue('${_browserPrefix}locale');
/** Sets the value of "locale" */
@@ -2227,7 +2227,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "logical-height" */
- String get logicalHeight() =>
+ String get logicalHeight =>
getPropertyValue('${_browserPrefix}logical-height');
/** Sets the value of "logical-height" */
@@ -2236,7 +2236,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "logical-width" */
- String get logicalWidth() =>
+ String get logicalWidth =>
getPropertyValue('${_browserPrefix}logical-width');
/** Sets the value of "logical-width" */
@@ -2245,7 +2245,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin" */
- String get margin() =>
+ String get margin =>
getPropertyValue('margin');
/** Sets the value of "margin" */
@@ -2254,7 +2254,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-after" */
- String get marginAfter() =>
+ String get marginAfter =>
getPropertyValue('${_browserPrefix}margin-after');
/** Sets the value of "margin-after" */
@@ -2263,7 +2263,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-after-collapse" */
- String get marginAfterCollapse() =>
+ String get marginAfterCollapse =>
getPropertyValue('${_browserPrefix}margin-after-collapse');
/** Sets the value of "margin-after-collapse" */
@@ -2272,7 +2272,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-before" */
- String get marginBefore() =>
+ String get marginBefore =>
getPropertyValue('${_browserPrefix}margin-before');
/** Sets the value of "margin-before" */
@@ -2281,7 +2281,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-before-collapse" */
- String get marginBeforeCollapse() =>
+ String get marginBeforeCollapse =>
getPropertyValue('${_browserPrefix}margin-before-collapse');
/** Sets the value of "margin-before-collapse" */
@@ -2290,7 +2290,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-bottom" */
- String get marginBottom() =>
+ String get marginBottom =>
getPropertyValue('margin-bottom');
/** Sets the value of "margin-bottom" */
@@ -2299,7 +2299,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-bottom-collapse" */
- String get marginBottomCollapse() =>
+ String get marginBottomCollapse =>
getPropertyValue('${_browserPrefix}margin-bottom-collapse');
/** Sets the value of "margin-bottom-collapse" */
@@ -2308,7 +2308,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-collapse" */
- String get marginCollapse() =>
+ String get marginCollapse =>
getPropertyValue('${_browserPrefix}margin-collapse');
/** Sets the value of "margin-collapse" */
@@ -2317,7 +2317,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-end" */
- String get marginEnd() =>
+ String get marginEnd =>
getPropertyValue('${_browserPrefix}margin-end');
/** Sets the value of "margin-end" */
@@ -2326,7 +2326,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-left" */
- String get marginLeft() =>
+ String get marginLeft =>
getPropertyValue('margin-left');
/** Sets the value of "margin-left" */
@@ -2335,7 +2335,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-right" */
- String get marginRight() =>
+ String get marginRight =>
getPropertyValue('margin-right');
/** Sets the value of "margin-right" */
@@ -2344,7 +2344,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-start" */
- String get marginStart() =>
+ String get marginStart =>
getPropertyValue('${_browserPrefix}margin-start');
/** Sets the value of "margin-start" */
@@ -2353,7 +2353,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-top" */
- String get marginTop() =>
+ String get marginTop =>
getPropertyValue('margin-top');
/** Sets the value of "margin-top" */
@@ -2362,7 +2362,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "margin-top-collapse" */
- String get marginTopCollapse() =>
+ String get marginTopCollapse =>
getPropertyValue('${_browserPrefix}margin-top-collapse');
/** Sets the value of "margin-top-collapse" */
@@ -2371,7 +2371,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "marquee" */
- String get marquee() =>
+ String get marquee =>
getPropertyValue('${_browserPrefix}marquee');
/** Sets the value of "marquee" */
@@ -2380,7 +2380,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "marquee-direction" */
- String get marqueeDirection() =>
+ String get marqueeDirection =>
getPropertyValue('${_browserPrefix}marquee-direction');
/** Sets the value of "marquee-direction" */
@@ -2389,7 +2389,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "marquee-increment" */
- String get marqueeIncrement() =>
+ String get marqueeIncrement =>
getPropertyValue('${_browserPrefix}marquee-increment');
/** Sets the value of "marquee-increment" */
@@ -2398,7 +2398,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "marquee-repetition" */
- String get marqueeRepetition() =>
+ String get marqueeRepetition =>
getPropertyValue('${_browserPrefix}marquee-repetition');
/** Sets the value of "marquee-repetition" */
@@ -2407,7 +2407,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "marquee-speed" */
- String get marqueeSpeed() =>
+ String get marqueeSpeed =>
getPropertyValue('${_browserPrefix}marquee-speed');
/** Sets the value of "marquee-speed" */
@@ -2416,7 +2416,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "marquee-style" */
- String get marqueeStyle() =>
+ String get marqueeStyle =>
getPropertyValue('${_browserPrefix}marquee-style');
/** Sets the value of "marquee-style" */
@@ -2425,7 +2425,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask" */
- String get mask() =>
+ String get mask =>
getPropertyValue('${_browserPrefix}mask');
/** Sets the value of "mask" */
@@ -2434,7 +2434,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-attachment" */
- String get maskAttachment() =>
+ String get maskAttachment =>
getPropertyValue('${_browserPrefix}mask-attachment');
/** Sets the value of "mask-attachment" */
@@ -2443,7 +2443,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-box-image" */
- String get maskBoxImage() =>
+ String get maskBoxImage =>
getPropertyValue('${_browserPrefix}mask-box-image');
/** Sets the value of "mask-box-image" */
@@ -2452,7 +2452,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-box-image-outset" */
- String get maskBoxImageOutset() =>
+ String get maskBoxImageOutset =>
getPropertyValue('${_browserPrefix}mask-box-image-outset');
/** Sets the value of "mask-box-image-outset" */
@@ -2461,7 +2461,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-box-image-repeat" */
- String get maskBoxImageRepeat() =>
+ String get maskBoxImageRepeat =>
getPropertyValue('${_browserPrefix}mask-box-image-repeat');
/** Sets the value of "mask-box-image-repeat" */
@@ -2470,7 +2470,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-box-image-slice" */
- String get maskBoxImageSlice() =>
+ String get maskBoxImageSlice =>
getPropertyValue('${_browserPrefix}mask-box-image-slice');
/** Sets the value of "mask-box-image-slice" */
@@ -2479,7 +2479,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-box-image-source" */
- String get maskBoxImageSource() =>
+ String get maskBoxImageSource =>
getPropertyValue('${_browserPrefix}mask-box-image-source');
/** Sets the value of "mask-box-image-source" */
@@ -2488,7 +2488,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-box-image-width" */
- String get maskBoxImageWidth() =>
+ String get maskBoxImageWidth =>
getPropertyValue('${_browserPrefix}mask-box-image-width');
/** Sets the value of "mask-box-image-width" */
@@ -2497,7 +2497,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-clip" */
- String get maskClip() =>
+ String get maskClip =>
getPropertyValue('${_browserPrefix}mask-clip');
/** Sets the value of "mask-clip" */
@@ -2506,7 +2506,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-composite" */
- String get maskComposite() =>
+ String get maskComposite =>
getPropertyValue('${_browserPrefix}mask-composite');
/** Sets the value of "mask-composite" */
@@ -2515,7 +2515,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-image" */
- String get maskImage() =>
+ String get maskImage =>
getPropertyValue('${_browserPrefix}mask-image');
/** Sets the value of "mask-image" */
@@ -2524,7 +2524,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-origin" */
- String get maskOrigin() =>
+ String get maskOrigin =>
getPropertyValue('${_browserPrefix}mask-origin');
/** Sets the value of "mask-origin" */
@@ -2533,7 +2533,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-position" */
- String get maskPosition() =>
+ String get maskPosition =>
getPropertyValue('${_browserPrefix}mask-position');
/** Sets the value of "mask-position" */
@@ -2542,7 +2542,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-position-x" */
- String get maskPositionX() =>
+ String get maskPositionX =>
getPropertyValue('${_browserPrefix}mask-position-x');
/** Sets the value of "mask-position-x" */
@@ -2551,7 +2551,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-position-y" */
- String get maskPositionY() =>
+ String get maskPositionY =>
getPropertyValue('${_browserPrefix}mask-position-y');
/** Sets the value of "mask-position-y" */
@@ -2560,7 +2560,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-repeat" */
- String get maskRepeat() =>
+ String get maskRepeat =>
getPropertyValue('${_browserPrefix}mask-repeat');
/** Sets the value of "mask-repeat" */
@@ -2569,7 +2569,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-repeat-x" */
- String get maskRepeatX() =>
+ String get maskRepeatX =>
getPropertyValue('${_browserPrefix}mask-repeat-x');
/** Sets the value of "mask-repeat-x" */
@@ -2578,7 +2578,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-repeat-y" */
- String get maskRepeatY() =>
+ String get maskRepeatY =>
getPropertyValue('${_browserPrefix}mask-repeat-y');
/** Sets the value of "mask-repeat-y" */
@@ -2587,7 +2587,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "mask-size" */
- String get maskSize() =>
+ String get maskSize =>
getPropertyValue('${_browserPrefix}mask-size');
/** Sets the value of "mask-size" */
@@ -2596,7 +2596,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "match-nearest-mail-blockquote-color" */
- String get matchNearestMailBlockquoteColor() =>
+ String get matchNearestMailBlockquoteColor =>
getPropertyValue('${_browserPrefix}match-nearest-mail-blockquote-color');
/** Sets the value of "match-nearest-mail-blockquote-color" */
@@ -2605,7 +2605,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "max-height" */
- String get maxHeight() =>
+ String get maxHeight =>
getPropertyValue('max-height');
/** Sets the value of "max-height" */
@@ -2614,7 +2614,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "max-logical-height" */
- String get maxLogicalHeight() =>
+ String get maxLogicalHeight =>
getPropertyValue('${_browserPrefix}max-logical-height');
/** Sets the value of "max-logical-height" */
@@ -2623,7 +2623,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "max-logical-width" */
- String get maxLogicalWidth() =>
+ String get maxLogicalWidth =>
getPropertyValue('${_browserPrefix}max-logical-width');
/** Sets the value of "max-logical-width" */
@@ -2632,7 +2632,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "max-width" */
- String get maxWidth() =>
+ String get maxWidth =>
getPropertyValue('max-width');
/** Sets the value of "max-width" */
@@ -2641,7 +2641,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "min-height" */
- String get minHeight() =>
+ String get minHeight =>
getPropertyValue('min-height');
/** Sets the value of "min-height" */
@@ -2650,7 +2650,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "min-logical-height" */
- String get minLogicalHeight() =>
+ String get minLogicalHeight =>
getPropertyValue('${_browserPrefix}min-logical-height');
/** Sets the value of "min-logical-height" */
@@ -2659,7 +2659,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "min-logical-width" */
- String get minLogicalWidth() =>
+ String get minLogicalWidth =>
getPropertyValue('${_browserPrefix}min-logical-width');
/** Sets the value of "min-logical-width" */
@@ -2668,7 +2668,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "min-width" */
- String get minWidth() =>
+ String get minWidth =>
getPropertyValue('min-width');
/** Sets the value of "min-width" */
@@ -2677,7 +2677,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "nbsp-mode" */
- String get nbspMode() =>
+ String get nbspMode =>
getPropertyValue('${_browserPrefix}nbsp-mode');
/** Sets the value of "nbsp-mode" */
@@ -2686,7 +2686,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "opacity" */
- String get opacity() =>
+ String get opacity =>
getPropertyValue('opacity');
/** Sets the value of "opacity" */
@@ -2695,7 +2695,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "orphans" */
- String get orphans() =>
+ String get orphans =>
getPropertyValue('orphans');
/** Sets the value of "orphans" */
@@ -2704,7 +2704,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "outline" */
- String get outline() =>
+ String get outline =>
getPropertyValue('outline');
/** Sets the value of "outline" */
@@ -2713,7 +2713,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "outline-color" */
- String get outlineColor() =>
+ String get outlineColor =>
getPropertyValue('outline-color');
/** Sets the value of "outline-color" */
@@ -2722,7 +2722,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "outline-offset" */
- String get outlineOffset() =>
+ String get outlineOffset =>
getPropertyValue('outline-offset');
/** Sets the value of "outline-offset" */
@@ -2731,7 +2731,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "outline-style" */
- String get outlineStyle() =>
+ String get outlineStyle =>
getPropertyValue('outline-style');
/** Sets the value of "outline-style" */
@@ -2740,7 +2740,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "outline-width" */
- String get outlineWidth() =>
+ String get outlineWidth =>
getPropertyValue('outline-width');
/** Sets the value of "outline-width" */
@@ -2749,7 +2749,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "overflow" */
- String get overflow() =>
+ String get overflow =>
getPropertyValue('overflow');
/** Sets the value of "overflow" */
@@ -2758,7 +2758,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "overflow-x" */
- String get overflowX() =>
+ String get overflowX =>
getPropertyValue('overflow-x');
/** Sets the value of "overflow-x" */
@@ -2767,7 +2767,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "overflow-y" */
- String get overflowY() =>
+ String get overflowY =>
getPropertyValue('overflow-y');
/** Sets the value of "overflow-y" */
@@ -2776,7 +2776,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding" */
- String get padding() =>
+ String get padding =>
getPropertyValue('padding');
/** Sets the value of "padding" */
@@ -2785,7 +2785,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-after" */
- String get paddingAfter() =>
+ String get paddingAfter =>
getPropertyValue('${_browserPrefix}padding-after');
/** Sets the value of "padding-after" */
@@ -2794,7 +2794,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-before" */
- String get paddingBefore() =>
+ String get paddingBefore =>
getPropertyValue('${_browserPrefix}padding-before');
/** Sets the value of "padding-before" */
@@ -2803,7 +2803,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-bottom" */
- String get paddingBottom() =>
+ String get paddingBottom =>
getPropertyValue('padding-bottom');
/** Sets the value of "padding-bottom" */
@@ -2812,7 +2812,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-end" */
- String get paddingEnd() =>
+ String get paddingEnd =>
getPropertyValue('${_browserPrefix}padding-end');
/** Sets the value of "padding-end" */
@@ -2821,7 +2821,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-left" */
- String get paddingLeft() =>
+ String get paddingLeft =>
getPropertyValue('padding-left');
/** Sets the value of "padding-left" */
@@ -2830,7 +2830,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-right" */
- String get paddingRight() =>
+ String get paddingRight =>
getPropertyValue('padding-right');
/** Sets the value of "padding-right" */
@@ -2839,7 +2839,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-start" */
- String get paddingStart() =>
+ String get paddingStart =>
getPropertyValue('${_browserPrefix}padding-start');
/** Sets the value of "padding-start" */
@@ -2848,7 +2848,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "padding-top" */
- String get paddingTop() =>
+ String get paddingTop =>
getPropertyValue('padding-top');
/** Sets the value of "padding-top" */
@@ -2857,7 +2857,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "page" */
- String get page() =>
+ String get page =>
getPropertyValue('page');
/** Sets the value of "page" */
@@ -2866,7 +2866,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "page-break-after" */
- String get pageBreakAfter() =>
+ String get pageBreakAfter =>
getPropertyValue('page-break-after');
/** Sets the value of "page-break-after" */
@@ -2875,7 +2875,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "page-break-before" */
- String get pageBreakBefore() =>
+ String get pageBreakBefore =>
getPropertyValue('page-break-before');
/** Sets the value of "page-break-before" */
@@ -2884,7 +2884,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "page-break-inside" */
- String get pageBreakInside() =>
+ String get pageBreakInside =>
getPropertyValue('page-break-inside');
/** Sets the value of "page-break-inside" */
@@ -2893,7 +2893,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "perspective" */
- String get perspective() =>
+ String get perspective =>
getPropertyValue('${_browserPrefix}perspective');
/** Sets the value of "perspective" */
@@ -2902,7 +2902,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "perspective-origin" */
- String get perspectiveOrigin() =>
+ String get perspectiveOrigin =>
getPropertyValue('${_browserPrefix}perspective-origin');
/** Sets the value of "perspective-origin" */
@@ -2911,7 +2911,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "perspective-origin-x" */
- String get perspectiveOriginX() =>
+ String get perspectiveOriginX =>
getPropertyValue('${_browserPrefix}perspective-origin-x');
/** Sets the value of "perspective-origin-x" */
@@ -2920,7 +2920,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "perspective-origin-y" */
- String get perspectiveOriginY() =>
+ String get perspectiveOriginY =>
getPropertyValue('${_browserPrefix}perspective-origin-y');
/** Sets the value of "perspective-origin-y" */
@@ -2929,7 +2929,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "pointer-events" */
- String get pointerEvents() =>
+ String get pointerEvents =>
getPropertyValue('pointer-events');
/** Sets the value of "pointer-events" */
@@ -2938,7 +2938,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "position" */
- String get position() =>
+ String get position =>
getPropertyValue('position');
/** Sets the value of "position" */
@@ -2947,7 +2947,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "quotes" */
- String get quotes() =>
+ String get quotes =>
getPropertyValue('quotes');
/** Sets the value of "quotes" */
@@ -2956,7 +2956,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "region-break-after" */
- String get regionBreakAfter() =>
+ String get regionBreakAfter =>
getPropertyValue('${_browserPrefix}region-break-after');
/** Sets the value of "region-break-after" */
@@ -2965,7 +2965,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "region-break-before" */
- String get regionBreakBefore() =>
+ String get regionBreakBefore =>
getPropertyValue('${_browserPrefix}region-break-before');
/** Sets the value of "region-break-before" */
@@ -2974,7 +2974,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "region-break-inside" */
- String get regionBreakInside() =>
+ String get regionBreakInside =>
getPropertyValue('${_browserPrefix}region-break-inside');
/** Sets the value of "region-break-inside" */
@@ -2983,7 +2983,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "region-overflow" */
- String get regionOverflow() =>
+ String get regionOverflow =>
getPropertyValue('${_browserPrefix}region-overflow');
/** Sets the value of "region-overflow" */
@@ -2992,7 +2992,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "resize" */
- String get resize() =>
+ String get resize =>
getPropertyValue('resize');
/** Sets the value of "resize" */
@@ -3001,7 +3001,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "right" */
- String get right() =>
+ String get right =>
getPropertyValue('right');
/** Sets the value of "right" */
@@ -3010,7 +3010,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "rtl-ordering" */
- String get rtlOrdering() =>
+ String get rtlOrdering =>
getPropertyValue('${_browserPrefix}rtl-ordering');
/** Sets the value of "rtl-ordering" */
@@ -3019,7 +3019,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "size" */
- String get size() =>
+ String get size =>
getPropertyValue('size');
/** Sets the value of "size" */
@@ -3028,7 +3028,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "speak" */
- String get speak() =>
+ String get speak =>
getPropertyValue('speak');
/** Sets the value of "speak" */
@@ -3037,7 +3037,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "src" */
- String get src() =>
+ String get src =>
getPropertyValue('src');
/** Sets the value of "src" */
@@ -3046,7 +3046,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "table-layout" */
- String get tableLayout() =>
+ String get tableLayout =>
getPropertyValue('table-layout');
/** Sets the value of "table-layout" */
@@ -3055,7 +3055,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "tap-highlight-color" */
- String get tapHighlightColor() =>
+ String get tapHighlightColor =>
getPropertyValue('${_browserPrefix}tap-highlight-color');
/** Sets the value of "tap-highlight-color" */
@@ -3064,7 +3064,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-align" */
- String get textAlign() =>
+ String get textAlign =>
getPropertyValue('text-align');
/** Sets the value of "text-align" */
@@ -3073,7 +3073,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-combine" */
- String get textCombine() =>
+ String get textCombine =>
getPropertyValue('${_browserPrefix}text-combine');
/** Sets the value of "text-combine" */
@@ -3082,7 +3082,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-decoration" */
- String get textDecoration() =>
+ String get textDecoration =>
getPropertyValue('text-decoration');
/** Sets the value of "text-decoration" */
@@ -3091,7 +3091,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-decorations-in-effect" */
- String get textDecorationsInEffect() =>
+ String get textDecorationsInEffect =>
getPropertyValue('${_browserPrefix}text-decorations-in-effect');
/** Sets the value of "text-decorations-in-effect" */
@@ -3100,7 +3100,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-emphasis" */
- String get textEmphasis() =>
+ String get textEmphasis =>
getPropertyValue('${_browserPrefix}text-emphasis');
/** Sets the value of "text-emphasis" */
@@ -3109,7 +3109,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-emphasis-color" */
- String get textEmphasisColor() =>
+ String get textEmphasisColor =>
getPropertyValue('${_browserPrefix}text-emphasis-color');
/** Sets the value of "text-emphasis-color" */
@@ -3118,7 +3118,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-emphasis-position" */
- String get textEmphasisPosition() =>
+ String get textEmphasisPosition =>
getPropertyValue('${_browserPrefix}text-emphasis-position');
/** Sets the value of "text-emphasis-position" */
@@ -3127,7 +3127,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-emphasis-style" */
- String get textEmphasisStyle() =>
+ String get textEmphasisStyle =>
getPropertyValue('${_browserPrefix}text-emphasis-style');
/** Sets the value of "text-emphasis-style" */
@@ -3136,7 +3136,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-fill-color" */
- String get textFillColor() =>
+ String get textFillColor =>
getPropertyValue('${_browserPrefix}text-fill-color');
/** Sets the value of "text-fill-color" */
@@ -3145,7 +3145,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-indent" */
- String get textIndent() =>
+ String get textIndent =>
getPropertyValue('text-indent');
/** Sets the value of "text-indent" */
@@ -3154,7 +3154,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-line-through" */
- String get textLineThrough() =>
+ String get textLineThrough =>
getPropertyValue('text-line-through');
/** Sets the value of "text-line-through" */
@@ -3163,7 +3163,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-line-through-color" */
- String get textLineThroughColor() =>
+ String get textLineThroughColor =>
getPropertyValue('text-line-through-color');
/** Sets the value of "text-line-through-color" */
@@ -3172,7 +3172,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-line-through-mode" */
- String get textLineThroughMode() =>
+ String get textLineThroughMode =>
getPropertyValue('text-line-through-mode');
/** Sets the value of "text-line-through-mode" */
@@ -3181,7 +3181,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-line-through-style" */
- String get textLineThroughStyle() =>
+ String get textLineThroughStyle =>
getPropertyValue('text-line-through-style');
/** Sets the value of "text-line-through-style" */
@@ -3190,7 +3190,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-line-through-width" */
- String get textLineThroughWidth() =>
+ String get textLineThroughWidth =>
getPropertyValue('text-line-through-width');
/** Sets the value of "text-line-through-width" */
@@ -3199,7 +3199,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-orientation" */
- String get textOrientation() =>
+ String get textOrientation =>
getPropertyValue('${_browserPrefix}text-orientation');
/** Sets the value of "text-orientation" */
@@ -3208,7 +3208,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-overflow" */
- String get textOverflow() =>
+ String get textOverflow =>
getPropertyValue('text-overflow');
/** Sets the value of "text-overflow" */
@@ -3217,7 +3217,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-overline" */
- String get textOverline() =>
+ String get textOverline =>
getPropertyValue('text-overline');
/** Sets the value of "text-overline" */
@@ -3226,7 +3226,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-overline-color" */
- String get textOverlineColor() =>
+ String get textOverlineColor =>
getPropertyValue('text-overline-color');
/** Sets the value of "text-overline-color" */
@@ -3235,7 +3235,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-overline-mode" */
- String get textOverlineMode() =>
+ String get textOverlineMode =>
getPropertyValue('text-overline-mode');
/** Sets the value of "text-overline-mode" */
@@ -3244,7 +3244,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-overline-style" */
- String get textOverlineStyle() =>
+ String get textOverlineStyle =>
getPropertyValue('text-overline-style');
/** Sets the value of "text-overline-style" */
@@ -3253,7 +3253,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-overline-width" */
- String get textOverlineWidth() =>
+ String get textOverlineWidth =>
getPropertyValue('text-overline-width');
/** Sets the value of "text-overline-width" */
@@ -3262,7 +3262,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-rendering" */
- String get textRendering() =>
+ String get textRendering =>
getPropertyValue('text-rendering');
/** Sets the value of "text-rendering" */
@@ -3271,7 +3271,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-security" */
- String get textSecurity() =>
+ String get textSecurity =>
getPropertyValue('${_browserPrefix}text-security');
/** Sets the value of "text-security" */
@@ -3280,7 +3280,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-shadow" */
- String get textShadow() =>
+ String get textShadow =>
getPropertyValue('text-shadow');
/** Sets the value of "text-shadow" */
@@ -3289,7 +3289,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-size-adjust" */
- String get textSizeAdjust() =>
+ String get textSizeAdjust =>
getPropertyValue('${_browserPrefix}text-size-adjust');
/** Sets the value of "text-size-adjust" */
@@ -3298,7 +3298,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-stroke" */
- String get textStroke() =>
+ String get textStroke =>
getPropertyValue('${_browserPrefix}text-stroke');
/** Sets the value of "text-stroke" */
@@ -3307,7 +3307,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-stroke-color" */
- String get textStrokeColor() =>
+ String get textStrokeColor =>
getPropertyValue('${_browserPrefix}text-stroke-color');
/** Sets the value of "text-stroke-color" */
@@ -3316,7 +3316,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-stroke-width" */
- String get textStrokeWidth() =>
+ String get textStrokeWidth =>
getPropertyValue('${_browserPrefix}text-stroke-width');
/** Sets the value of "text-stroke-width" */
@@ -3325,7 +3325,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-transform" */
- String get textTransform() =>
+ String get textTransform =>
getPropertyValue('text-transform');
/** Sets the value of "text-transform" */
@@ -3334,7 +3334,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-underline" */
- String get textUnderline() =>
+ String get textUnderline =>
getPropertyValue('text-underline');
/** Sets the value of "text-underline" */
@@ -3343,7 +3343,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-underline-color" */
- String get textUnderlineColor() =>
+ String get textUnderlineColor =>
getPropertyValue('text-underline-color');
/** Sets the value of "text-underline-color" */
@@ -3352,7 +3352,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-underline-mode" */
- String get textUnderlineMode() =>
+ String get textUnderlineMode =>
getPropertyValue('text-underline-mode');
/** Sets the value of "text-underline-mode" */
@@ -3361,7 +3361,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-underline-style" */
- String get textUnderlineStyle() =>
+ String get textUnderlineStyle =>
getPropertyValue('text-underline-style');
/** Sets the value of "text-underline-style" */
@@ -3370,7 +3370,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "text-underline-width" */
- String get textUnderlineWidth() =>
+ String get textUnderlineWidth =>
getPropertyValue('text-underline-width');
/** Sets the value of "text-underline-width" */
@@ -3379,7 +3379,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "top" */
- String get top() =>
+ String get top =>
getPropertyValue('top');
/** Sets the value of "top" */
@@ -3388,7 +3388,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transform" */
- String get transform() =>
+ String get transform =>
getPropertyValue('${_browserPrefix}transform');
/** Sets the value of "transform" */
@@ -3397,7 +3397,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transform-origin" */
- String get transformOrigin() =>
+ String get transformOrigin =>
getPropertyValue('${_browserPrefix}transform-origin');
/** Sets the value of "transform-origin" */
@@ -3406,7 +3406,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transform-origin-x" */
- String get transformOriginX() =>
+ String get transformOriginX =>
getPropertyValue('${_browserPrefix}transform-origin-x');
/** Sets the value of "transform-origin-x" */
@@ -3415,7 +3415,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transform-origin-y" */
- String get transformOriginY() =>
+ String get transformOriginY =>
getPropertyValue('${_browserPrefix}transform-origin-y');
/** Sets the value of "transform-origin-y" */
@@ -3424,7 +3424,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transform-origin-z" */
- String get transformOriginZ() =>
+ String get transformOriginZ =>
getPropertyValue('${_browserPrefix}transform-origin-z');
/** Sets the value of "transform-origin-z" */
@@ -3433,7 +3433,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transform-style" */
- String get transformStyle() =>
+ String get transformStyle =>
getPropertyValue('${_browserPrefix}transform-style');
/** Sets the value of "transform-style" */
@@ -3442,7 +3442,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transition" */
- String get transition() =>
+ String get transition =>
getPropertyValue('${_browserPrefix}transition');
/** Sets the value of "transition" */
@@ -3451,7 +3451,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transition-delay" */
- String get transitionDelay() =>
+ String get transitionDelay =>
getPropertyValue('${_browserPrefix}transition-delay');
/** Sets the value of "transition-delay" */
@@ -3460,7 +3460,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transition-duration" */
- String get transitionDuration() =>
+ String get transitionDuration =>
getPropertyValue('${_browserPrefix}transition-duration');
/** Sets the value of "transition-duration" */
@@ -3469,7 +3469,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transition-property" */
- String get transitionProperty() =>
+ String get transitionProperty =>
getPropertyValue('${_browserPrefix}transition-property');
/** Sets the value of "transition-property" */
@@ -3478,7 +3478,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "transition-timing-function" */
- String get transitionTimingFunction() =>
+ String get transitionTimingFunction =>
getPropertyValue('${_browserPrefix}transition-timing-function');
/** Sets the value of "transition-timing-function" */
@@ -3487,7 +3487,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "unicode-bidi" */
- String get unicodeBidi() =>
+ String get unicodeBidi =>
getPropertyValue('unicode-bidi');
/** Sets the value of "unicode-bidi" */
@@ -3496,7 +3496,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "unicode-range" */
- String get unicodeRange() =>
+ String get unicodeRange =>
getPropertyValue('unicode-range');
/** Sets the value of "unicode-range" */
@@ -3505,7 +3505,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "user-drag" */
- String get userDrag() =>
+ String get userDrag =>
getPropertyValue('${_browserPrefix}user-drag');
/** Sets the value of "user-drag" */
@@ -3514,7 +3514,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "user-modify" */
- String get userModify() =>
+ String get userModify =>
getPropertyValue('${_browserPrefix}user-modify');
/** Sets the value of "user-modify" */
@@ -3523,7 +3523,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "user-select" */
- String get userSelect() =>
+ String get userSelect =>
getPropertyValue('${_browserPrefix}user-select');
/** Sets the value of "user-select" */
@@ -3532,7 +3532,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "vertical-align" */
- String get verticalAlign() =>
+ String get verticalAlign =>
getPropertyValue('vertical-align');
/** Sets the value of "vertical-align" */
@@ -3541,7 +3541,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "visibility" */
- String get visibility() =>
+ String get visibility =>
getPropertyValue('visibility');
/** Sets the value of "visibility" */
@@ -3550,7 +3550,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "white-space" */
- String get whiteSpace() =>
+ String get whiteSpace =>
getPropertyValue('white-space');
/** Sets the value of "white-space" */
@@ -3559,7 +3559,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "widows" */
- String get widows() =>
+ String get widows =>
getPropertyValue('widows');
/** Sets the value of "widows" */
@@ -3568,7 +3568,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "width" */
- String get width() =>
+ String get width =>
getPropertyValue('width');
/** Sets the value of "width" */
@@ -3577,7 +3577,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "word-break" */
- String get wordBreak() =>
+ String get wordBreak =>
getPropertyValue('word-break');
/** Sets the value of "word-break" */
@@ -3586,7 +3586,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "word-spacing" */
- String get wordSpacing() =>
+ String get wordSpacing =>
getPropertyValue('word-spacing');
/** Sets the value of "word-spacing" */
@@ -3595,7 +3595,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "word-wrap" */
- String get wordWrap() =>
+ String get wordWrap =>
getPropertyValue('word-wrap');
/** Sets the value of "word-wrap" */
@@ -3604,7 +3604,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "wrap-shape" */
- String get wrapShape() =>
+ String get wrapShape =>
getPropertyValue('${_browserPrefix}wrap-shape');
/** Sets the value of "wrap-shape" */
@@ -3613,7 +3613,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "writing-mode" */
- String get writingMode() =>
+ String get writingMode =>
getPropertyValue('${_browserPrefix}writing-mode');
/** Sets the value of "writing-mode" */
@@ -3622,7 +3622,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "z-index" */
- String get zIndex() =>
+ String get zIndex =>
getPropertyValue('z-index');
/** Sets the value of "z-index" */
@@ -3631,7 +3631,7 @@ class _CSSStyleDeclarationImpl extends NativeFieldWrapperClass1 implements CSSSt
}
/** Gets the value of "zoom" */
- String get zoom() =>
+ String get zoom =>
getPropertyValue('zoom');
/** Sets the value of "zoom" */
@@ -4506,21 +4506,21 @@ class _CustomEventImpl extends _EventImpl implements CustomEvent {
class _DOMApplicationCacheEventsImpl extends _EventsImpl implements DOMApplicationCacheEvents {
_DOMApplicationCacheEventsImpl(_ptr) : super(_ptr);
- EventListenerList get cached() => this['cached'];
+ EventListenerList get cached => this['cached'];
- EventListenerList get checking() => this['checking'];
+ EventListenerList get checking => this['checking'];
- EventListenerList get downloading() => this['downloading'];
+ EventListenerList get downloading => this['downloading'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get noUpdate() => this['noupdate'];
+ EventListenerList get noUpdate => this['noupdate'];
- EventListenerList get obsolete() => this['obsolete'];
+ EventListenerList get obsolete => this['obsolete'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
- EventListenerList get updateReady() => this['updateready'];
+ EventListenerList get updateReady => this['updateready'];
}
// 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
@@ -4530,7 +4530,7 @@ class _DOMApplicationCacheEventsImpl extends _EventsImpl implements DOMApplicati
class _DOMApplicationCacheImpl extends _EventTargetImpl implements DOMApplicationCache {
- _DOMApplicationCacheEventsImpl get on() =>
+ _DOMApplicationCacheEventsImpl get on =>
new _DOMApplicationCacheEventsImpl(this);
int get status() native "DOMApplicationCache_status_Getter";
@@ -4965,153 +4965,153 @@ class _DOMURLImpl extends NativeFieldWrapperClass1 implements DOMURL {
class _WindowEventsImpl extends _EventsImpl implements WindowEvents {
_WindowEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get animationEnd() => this['webkitAnimationEnd'];
+ EventListenerList get animationEnd => this['webkitAnimationEnd'];
- EventListenerList get animationIteration() => this['webkitAnimationIteration'];
+ EventListenerList get animationIteration => this['webkitAnimationIteration'];
- EventListenerList get animationStart() => this['webkitAnimationStart'];
+ EventListenerList get animationStart => this['webkitAnimationStart'];
- EventListenerList get beforeUnload() => this['beforeunload'];
+ EventListenerList get beforeUnload => this['beforeunload'];
- EventListenerList get blur() => this['blur'];
+ EventListenerList get blur => this['blur'];
- EventListenerList get canPlay() => this['canplay'];
+ EventListenerList get canPlay => this['canplay'];
- EventListenerList get canPlayThrough() => this['canplaythrough'];
+ EventListenerList get canPlayThrough => this['canplaythrough'];
- EventListenerList get change() => this['change'];
+ EventListenerList get change => this['change'];
- EventListenerList get click() => this['click'];
+ EventListenerList get click => this['click'];
- EventListenerList get contentLoaded() => this['DOMContentLoaded'];
+ EventListenerList get contentLoaded => this['DOMContentLoaded'];
- EventListenerList get contextMenu() => this['contextmenu'];
+ EventListenerList get contextMenu => this['contextmenu'];
- EventListenerList get deviceMotion() => this['devicemotion'];
+ EventListenerList get deviceMotion => this['devicemotion'];
- EventListenerList get deviceOrientation() => this['deviceorientation'];
+ EventListenerList get deviceOrientation => this['deviceorientation'];
- EventListenerList get doubleClick() => this['dblclick'];
+ EventListenerList get doubleClick => this['dblclick'];
- EventListenerList get drag() => this['drag'];
+ EventListenerList get drag => this['drag'];
- EventListenerList get dragEnd() => this['dragend'];
+ EventListenerList get dragEnd => this['dragend'];
- EventListenerList get dragEnter() => this['dragenter'];
+ EventListenerList get dragEnter => this['dragenter'];
- EventListenerList get dragLeave() => this['dragleave'];
+ EventListenerList get dragLeave => this['dragleave'];
- EventListenerList get dragOver() => this['dragover'];
+ EventListenerList get dragOver => this['dragover'];
- EventListenerList get dragStart() => this['dragstart'];
+ EventListenerList get dragStart => this['dragstart'];
- EventListenerList get drop() => this['drop'];
+ EventListenerList get drop => this['drop'];
- EventListenerList get durationChange() => this['durationchange'];
+ EventListenerList get durationChange => this['durationchange'];
- EventListenerList get emptied() => this['emptied'];
+ EventListenerList get emptied => this['emptied'];
- EventListenerList get ended() => this['ended'];
+ EventListenerList get ended => this['ended'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get focus() => this['focus'];
+ EventListenerList get focus => this['focus'];
- EventListenerList get hashChange() => this['hashchange'];
+ EventListenerList get hashChange => this['hashchange'];
- EventListenerList get input() => this['input'];
+ EventListenerList get input => this['input'];
- EventListenerList get invalid() => this['invalid'];
+ EventListenerList get invalid => this['invalid'];
- EventListenerList get keyDown() => this['keydown'];
+ EventListenerList get keyDown => this['keydown'];
- EventListenerList get keyPress() => this['keypress'];
+ EventListenerList get keyPress => this['keypress'];
- EventListenerList get keyUp() => this['keyup'];
+ EventListenerList get keyUp => this['keyup'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get loadStart() => this['loadstart'];
+ EventListenerList get loadStart => this['loadstart'];
- EventListenerList get loadedData() => this['loadeddata'];
+ EventListenerList get loadedData => this['loadeddata'];
- EventListenerList get loadedMetadata() => this['loadedmetadata'];
+ EventListenerList get loadedMetadata => this['loadedmetadata'];
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
- EventListenerList get mouseDown() => this['mousedown'];
+ EventListenerList get mouseDown => this['mousedown'];
- EventListenerList get mouseMove() => this['mousemove'];
+ EventListenerList get mouseMove => this['mousemove'];
- EventListenerList get mouseOut() => this['mouseout'];
+ EventListenerList get mouseOut => this['mouseout'];
- EventListenerList get mouseOver() => this['mouseover'];
+ EventListenerList get mouseOver => this['mouseover'];
- EventListenerList get mouseUp() => this['mouseup'];
+ EventListenerList get mouseUp => this['mouseup'];
- EventListenerList get mouseWheel() => this['mousewheel'];
+ EventListenerList get mouseWheel => this['mousewheel'];
- EventListenerList get offline() => this['offline'];
+ EventListenerList get offline => this['offline'];
- EventListenerList get online() => this['online'];
+ EventListenerList get online => this['online'];
- EventListenerList get pageHide() => this['pagehide'];
+ EventListenerList get pageHide => this['pagehide'];
- EventListenerList get pageShow() => this['pageshow'];
+ EventListenerList get pageShow => this['pageshow'];
- EventListenerList get pause() => this['pause'];
+ EventListenerList get pause => this['pause'];
- EventListenerList get play() => this['play'];
+ EventListenerList get play => this['play'];
- EventListenerList get playing() => this['playing'];
+ EventListenerList get playing => this['playing'];
- EventListenerList get popState() => this['popstate'];
+ EventListenerList get popState => this['popstate'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
- EventListenerList get rateChange() => this['ratechange'];
+ EventListenerList get rateChange => this['ratechange'];
- EventListenerList get reset() => this['reset'];
+ EventListenerList get reset => this['reset'];
- EventListenerList get resize() => this['resize'];
+ EventListenerList get resize => this['resize'];
- EventListenerList get scroll() => this['scroll'];
+ EventListenerList get scroll => this['scroll'];
- EventListenerList get search() => this['search'];
+ EventListenerList get search => this['search'];
- EventListenerList get seeked() => this['seeked'];
+ EventListenerList get seeked => this['seeked'];
- EventListenerList get seeking() => this['seeking'];
+ EventListenerList get seeking => this['seeking'];
- EventListenerList get select() => this['select'];
+ EventListenerList get select => this['select'];
- EventListenerList get stalled() => this['stalled'];
+ EventListenerList get stalled => this['stalled'];
- EventListenerList get storage() => this['storage'];
+ EventListenerList get storage => this['storage'];
- EventListenerList get submit() => this['submit'];
+ EventListenerList get submit => this['submit'];
- EventListenerList get suspend() => this['suspend'];
+ EventListenerList get suspend => this['suspend'];
- EventListenerList get timeUpdate() => this['timeupdate'];
+ EventListenerList get timeUpdate => this['timeupdate'];
- EventListenerList get touchCancel() => this['touchcancel'];
+ EventListenerList get touchCancel => this['touchcancel'];
- EventListenerList get touchEnd() => this['touchend'];
+ EventListenerList get touchEnd => this['touchend'];
- EventListenerList get touchMove() => this['touchmove'];
+ EventListenerList get touchMove => this['touchmove'];
- EventListenerList get touchStart() => this['touchstart'];
+ EventListenerList get touchStart => this['touchstart'];
- EventListenerList get transitionEnd() => this['webkitTransitionEnd'];
+ EventListenerList get transitionEnd => this['webkitTransitionEnd'];
- EventListenerList get unload() => this['unload'];
+ EventListenerList get unload => this['unload'];
- EventListenerList get volumeChange() => this['volumechange'];
+ EventListenerList get volumeChange => this['volumechange'];
- EventListenerList get waiting() => this['waiting'];
+ EventListenerList get waiting => this['waiting'];
}
// 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
@@ -5128,7 +5128,7 @@ class _DOMWindowImpl extends _EventTargetImpl implements Window {
void cancelAnimationFrame(int id) => webkitCancelAnimationFrame(id);
- IDBFactory get indexedDB() => webkitIndexedDB;
+ IDBFactory get indexedDB => webkitIndexedDB;
// TODO(kasperl): Document these.
lookupPort(String name) {
@@ -5142,7 +5142,7 @@ class _DOMWindowImpl extends _EventTargetImpl implements Window {
}
- _WindowEventsImpl get on() =>
+ _WindowEventsImpl get on =>
new _WindowEventsImpl(this);
DOMApplicationCache get applicationCache() native "DOMWindow_applicationCache_Getter";
@@ -5595,7 +5595,7 @@ class _DatabaseSyncImpl extends NativeFieldWrapperClass1 implements DatabaseSync
class _DedicatedWorkerContextEventsImpl extends _WorkerContextEventsImpl implements DedicatedWorkerContextEvents {
_DedicatedWorkerContextEventsImpl(_ptr) : super(_ptr);
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
}
// 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
@@ -5605,7 +5605,7 @@ class _DedicatedWorkerContextEventsImpl extends _WorkerContextEventsImpl impleme
class _DedicatedWorkerContextImpl extends _WorkerContextImpl implements DedicatedWorkerContext {
- _DedicatedWorkerContextEventsImpl get on() =>
+ _DedicatedWorkerContextEventsImpl get on =>
new _DedicatedWorkerContextEventsImpl(this);
void postMessage(Object message, [List messagePorts]) native "DedicatedWorkerContext_postMessage_Callback";
@@ -5744,11 +5744,11 @@ class FilteredElementList implements ElementList {
// with externally to this class.
//
// TODO(nweiz): Do we really need to copy the list to make the types work out?
- List<Element> get _filtered() =>
+ List<Element> get _filtered =>
new List.from(_childNodes.filter((n) => n is Element));
// Don't use _filtered.first so we can short-circuit once we find an element.
- Element get first() {
+ Element get first {
for (final node in _childNodes) {
if (node is Element) {
return node;
@@ -5823,7 +5823,7 @@ class FilteredElementList implements ElementList {
bool every(bool f(Element element)) => _filtered.every(f);
bool some(bool f(Element element)) => _filtered.some(f);
bool isEmpty() => _filtered.isEmpty();
- int get length() => _filtered.length;
+ int get length => _filtered.length;
Element operator [](int index) => _filtered[index];
Iterator<Element> iterator() => _filtered.iterator();
List<Element> getRange(int start, int rangeLength) =>
@@ -5863,13 +5863,13 @@ class _FrozenCSSClassSet extends _CssClassSet {
}
Set<String> _read() => new Set<String>();
- bool get isFrozen() => true;
+ bool get isFrozen => true;
}
class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
ElementList _elements;
- ElementList get elements() {
+ ElementList get elements {
if (_elements == null) {
_elements = new FilteredElementList(this);
}
@@ -5890,13 +5890,13 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
List<Element> queryAll(String selectors) =>
new _FrozenElementList._wrap($dom_querySelectorAll(selectors));
- String get innerHTML() {
+ String get innerHTML {
final e = new Element.tag("div");
e.nodes.add(this.clone(true));
return e.innerHTML;
}
- String get outerHTML() => innerHTML;
+ String get outerHTML => innerHTML;
// TODO(nweiz): Do we want to support some variant of innerHTML for XML and/or
// SVG strings?
@@ -5945,7 +5945,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
this.insertAdjacentHTML('beforeend', text);
}
- Future<ElementRect> get rect() {
+ Future<ElementRect> get rect {
return _createMeasurementFuture(() => const EmptyElementRect(),
new Completer<ElementRect>());
}
@@ -5953,29 +5953,29 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
// If we can come up with a semi-reasonable default value for an Element
// getter, we'll use it. In general, these return the same values as an
// element that has no parent.
- String get contentEditable() => "false";
- bool get isContentEditable() => false;
- bool get draggable() => false;
- bool get hidden() => false;
- bool get spellcheck() => false;
- bool get translate() => false;
- int get tabIndex() => -1;
- String get id() => "";
- String get title() => "";
- String get tagName() => "";
- String get webkitdropzone() => "";
- String get webkitRegionOverflow() => "";
+ String get contentEditable => "false";
+ bool get isContentEditable => false;
+ bool get draggable => false;
+ bool get hidden => false;
+ bool get spellcheck => false;
+ bool get translate => false;
+ int get tabIndex => -1;
+ String get id => "";
+ String get title => "";
+ String get tagName => "";
+ String get webkitdropzone => "";
+ String get webkitRegionOverflow => "";
Element get $dom_firstElementChild() => elements.first();
Element get $dom_lastElementChild() => elements.last();
- Element get nextElementSibling() => null;
- Element get previousElementSibling() => null;
- Element get offsetParent() => null;
- Element get parent() => null;
- Map<String, String> get attributes() => const {};
- CSSClassSet get classes() => new _FrozenCSSClassSet();
- Map<String, String> get dataAttributes() => const {};
- CSSStyleDeclaration get style() => new Element.tag('div').style;
- Future<CSSStyleDeclaration> get computedStyle() =>
+ Element get nextElementSibling => null;
+ Element get previousElementSibling => null;
+ Element get offsetParent => null;
+ Element get parent => null;
+ Map<String, String> get attributes => const {};
+ CSSClassSet get classes => new _FrozenCSSClassSet();
+ Map<String, String> get dataAttributes => const {};
+ CSSStyleDeclaration get style => new Element.tag('div').style;
+ Future<CSSStyleDeclaration> get computedStyle =>
_emptyStyleFuture();
Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) =>
_emptyStyleFuture();
@@ -6014,7 +6014,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
"Content editable can't be set for document fragments.");
}
- String get dir() {
+ String get dir {
throw new UnsupportedOperationException(
"Document fragments don't support text direction.");
}
@@ -6039,7 +6039,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
"ID can't be set for document fragments.");
}
- String get lang() {
+ String get lang {
throw new UnsupportedOperationException(
"Document fragments don't support language.");
}
@@ -6090,7 +6090,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
}
- _ElementEventsImpl get on() =>
+ _ElementEventsImpl get on =>
new _ElementEventsImpl(this);
Element $dom_querySelector(String selectors) native "DocumentFragment_querySelector_Callback";
@@ -6102,103 +6102,103 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
class _DocumentEventsImpl extends _ElementEventsImpl implements DocumentEvents {
_DocumentEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get beforeCopy() => this['beforecopy'];
+ EventListenerList get beforeCopy => this['beforecopy'];
- EventListenerList get beforeCut() => this['beforecut'];
+ EventListenerList get beforeCut => this['beforecut'];
- EventListenerList get beforePaste() => this['beforepaste'];
+ EventListenerList get beforePaste => this['beforepaste'];
- EventListenerList get blur() => this['blur'];
+ EventListenerList get blur => this['blur'];
- EventListenerList get change() => this['change'];
+ EventListenerList get change => this['change'];
- EventListenerList get click() => this['click'];
+ EventListenerList get click => this['click'];
- EventListenerList get contextMenu() => this['contextmenu'];
+ EventListenerList get contextMenu => this['contextmenu'];
- EventListenerList get copy() => this['copy'];
+ EventListenerList get copy => this['copy'];
- EventListenerList get cut() => this['cut'];
+ EventListenerList get cut => this['cut'];
- EventListenerList get doubleClick() => this['dblclick'];
+ EventListenerList get doubleClick => this['dblclick'];
- EventListenerList get drag() => this['drag'];
+ EventListenerList get drag => this['drag'];
- EventListenerList get dragEnd() => this['dragend'];
+ EventListenerList get dragEnd => this['dragend'];
- EventListenerList get dragEnter() => this['dragenter'];
+ EventListenerList get dragEnter => this['dragenter'];
- EventListenerList get dragLeave() => this['dragleave'];
+ EventListenerList get dragLeave => this['dragleave'];
- EventListenerList get dragOver() => this['dragover'];
+ EventListenerList get dragOver => this['dragover'];
- EventListenerList get dragStart() => this['dragstart'];
+ EventListenerList get dragStart => this['dragstart'];
- EventListenerList get drop() => this['drop'];
+ EventListenerList get drop => this['drop'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get focus() => this['focus'];
+ EventListenerList get focus => this['focus'];
- EventListenerList get fullscreenChange() => this['webkitfullscreenchange'];
+ EventListenerList get fullscreenChange => this['webkitfullscreenchange'];
- EventListenerList get fullscreenError() => this['webkitfullscreenerror'];
+ EventListenerList get fullscreenError => this['webkitfullscreenerror'];
- EventListenerList get input() => this['input'];
+ EventListenerList get input => this['input'];
- EventListenerList get invalid() => this['invalid'];
+ EventListenerList get invalid => this['invalid'];
- EventListenerList get keyDown() => this['keydown'];
+ EventListenerList get keyDown => this['keydown'];
- EventListenerList get keyPress() => this['keypress'];
+ EventListenerList get keyPress => this['keypress'];
- EventListenerList get keyUp() => this['keyup'];
+ EventListenerList get keyUp => this['keyup'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get mouseDown() => this['mousedown'];
+ EventListenerList get mouseDown => this['mousedown'];
- EventListenerList get mouseMove() => this['mousemove'];
+ EventListenerList get mouseMove => this['mousemove'];
- EventListenerList get mouseOut() => this['mouseout'];
+ EventListenerList get mouseOut => this['mouseout'];
- EventListenerList get mouseOver() => this['mouseover'];
+ EventListenerList get mouseOver => this['mouseover'];
- EventListenerList get mouseUp() => this['mouseup'];
+ EventListenerList get mouseUp => this['mouseup'];
- EventListenerList get mouseWheel() => this['mousewheel'];
+ EventListenerList get mouseWheel => this['mousewheel'];
- EventListenerList get paste() => this['paste'];
+ EventListenerList get paste => this['paste'];
- EventListenerList get pointerLockChange() => this['webkitpointerlockchange'];
+ EventListenerList get pointerLockChange => this['webkitpointerlockchange'];
- EventListenerList get pointerLockError() => this['webkitpointerlockerror'];
+ EventListenerList get pointerLockError => this['webkitpointerlockerror'];
- EventListenerList get readyStateChange() => this['readystatechange'];
+ EventListenerList get readyStateChange => this['readystatechange'];
- EventListenerList get reset() => this['reset'];
+ EventListenerList get reset => this['reset'];
- EventListenerList get scroll() => this['scroll'];
+ EventListenerList get scroll => this['scroll'];
- EventListenerList get search() => this['search'];
+ EventListenerList get search => this['search'];
- EventListenerList get select() => this['select'];
+ EventListenerList get select => this['select'];
- EventListenerList get selectStart() => this['selectstart'];
+ EventListenerList get selectStart => this['selectstart'];
- EventListenerList get selectionChange() => this['selectionchange'];
+ EventListenerList get selectionChange => this['selectionchange'];
- EventListenerList get submit() => this['submit'];
+ EventListenerList get submit => this['submit'];
- EventListenerList get touchCancel() => this['touchcancel'];
+ EventListenerList get touchCancel => this['touchcancel'];
- EventListenerList get touchEnd() => this['touchend'];
+ EventListenerList get touchEnd => this['touchend'];
- EventListenerList get touchMove() => this['touchmove'];
+ EventListenerList get touchMove => this['touchmove'];
- EventListenerList get touchStart() => this['touchstart'];
+ EventListenerList get touchStart => this['touchstart'];
}
// 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
@@ -6208,7 +6208,7 @@ class _DocumentImpl extends _NodeImpl implements Document
{
- _DocumentEventsImpl get on() =>
+ _DocumentEventsImpl get on =>
new _DocumentEventsImpl(this);
Element get body() native "Document_body_Getter";
@@ -6408,101 +6408,101 @@ class _EXTTextureFilterAnisotropicImpl extends NativeFieldWrapperClass1 implemen
class _ElementEventsImpl extends _EventsImpl implements ElementEvents {
_ElementEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get beforeCopy() => this['beforecopy'];
+ EventListenerList get beforeCopy => this['beforecopy'];
- EventListenerList get beforeCut() => this['beforecut'];
+ EventListenerList get beforeCut => this['beforecut'];
- EventListenerList get beforePaste() => this['beforepaste'];
+ EventListenerList get beforePaste => this['beforepaste'];
- EventListenerList get blur() => this['blur'];
+ EventListenerList get blur => this['blur'];
- EventListenerList get change() => this['change'];
+ EventListenerList get change => this['change'];
- EventListenerList get click() => this['click'];
+ EventListenerList get click => this['click'];
- EventListenerList get contextMenu() => this['contextmenu'];
+ EventListenerList get contextMenu => this['contextmenu'];
- EventListenerList get copy() => this['copy'];
+ EventListenerList get copy => this['copy'];
- EventListenerList get cut() => this['cut'];
+ EventListenerList get cut => this['cut'];
- EventListenerList get doubleClick() => this['dblclick'];
+ EventListenerList get doubleClick => this['dblclick'];
- EventListenerList get drag() => this['drag'];
+ EventListenerList get drag => this['drag'];
- EventListenerList get dragEnd() => this['dragend'];
+ EventListenerList get dragEnd => this['dragend'];
- EventListenerList get dragEnter() => this['dragenter'];
+ EventListenerList get dragEnter => this['dragenter'];
- EventListenerList get dragLeave() => this['dragleave'];
+ EventListenerList get dragLeave => this['dragleave'];
- EventListenerList get dragOver() => this['dragover'];
+ EventListenerList get dragOver => this['dragover'];
- EventListenerList get dragStart() => this['dragstart'];
+ EventListenerList get dragStart => this['dragstart'];
- EventListenerList get drop() => this['drop'];
+ EventListenerList get drop => this['drop'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get focus() => this['focus'];
+ EventListenerList get focus => this['focus'];
- EventListenerList get fullscreenChange() => this['webkitfullscreenchange'];
+ EventListenerList get fullscreenChange => this['webkitfullscreenchange'];
- EventListenerList get fullscreenError() => this['webkitfullscreenerror'];
+ EventListenerList get fullscreenError => this['webkitfullscreenerror'];
- EventListenerList get input() => this['input'];
+ EventListenerList get input => this['input'];
- EventListenerList get invalid() => this['invalid'];
+ EventListenerList get invalid => this['invalid'];
- EventListenerList get keyDown() => this['keydown'];
+ EventListenerList get keyDown => this['keydown'];
- EventListenerList get keyPress() => this['keypress'];
+ EventListenerList get keyPress => this['keypress'];
- EventListenerList get keyUp() => this['keyup'];
+ EventListenerList get keyUp => this['keyup'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get mouseDown() => this['mousedown'];
+ EventListenerList get mouseDown => this['mousedown'];
- EventListenerList get mouseMove() => this['mousemove'];
+ EventListenerList get mouseMove => this['mousemove'];
- EventListenerList get mouseOut() => this['mouseout'];
+ EventListenerList get mouseOut => this['mouseout'];
- EventListenerList get mouseOver() => this['mouseover'];
+ EventListenerList get mouseOver => this['mouseover'];
- EventListenerList get mouseUp() => this['mouseup'];
+ EventListenerList get mouseUp => this['mouseup'];
- EventListenerList get mouseWheel() => this['mousewheel'];
+ EventListenerList get mouseWheel => this['mousewheel'];
- EventListenerList get paste() => this['paste'];
+ EventListenerList get paste => this['paste'];
- EventListenerList get reset() => this['reset'];
+ EventListenerList get reset => this['reset'];
- EventListenerList get scroll() => this['scroll'];
+ EventListenerList get scroll => this['scroll'];
- EventListenerList get search() => this['search'];
+ EventListenerList get search => this['search'];
- EventListenerList get select() => this['select'];
+ EventListenerList get select => this['select'];
- EventListenerList get selectStart() => this['selectstart'];
+ EventListenerList get selectStart => this['selectstart'];
- EventListenerList get submit() => this['submit'];
+ EventListenerList get submit => this['submit'];
- EventListenerList get touchCancel() => this['touchcancel'];
+ EventListenerList get touchCancel => this['touchcancel'];
- EventListenerList get touchEnd() => this['touchend'];
+ EventListenerList get touchEnd => this['touchend'];
- EventListenerList get touchEnter() => this['touchenter'];
+ EventListenerList get touchEnter => this['touchenter'];
- EventListenerList get touchLeave() => this['touchleave'];
+ EventListenerList get touchLeave => this['touchleave'];
- EventListenerList get touchMove() => this['touchmove'];
+ EventListenerList get touchMove => this['touchmove'];
- EventListenerList get touchStart() => this['touchstart'];
+ EventListenerList get touchStart => this['touchstart'];
- EventListenerList get transitionEnd() => this['webkitTransitionEnd'];
+ EventListenerList get transitionEnd => this['webkitTransitionEnd'];
}
// 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
@@ -6527,7 +6527,7 @@ class _ChildrenElementList implements ElementList {
return output;
}
- _ElementImpl get first() {
+ _ElementImpl get first {
return _element.$dom_firstElementChild;
}
@@ -6577,7 +6577,7 @@ class _ChildrenElementList implements ElementList {
return _element.$dom_firstElementChild == null;
}
- int get length() {
+ int get length {
return _childElements.length;
}
@@ -6665,7 +6665,7 @@ class _FrozenElementList implements ElementList {
_FrozenElementList._wrap(this._nodeList);
- Element get first() {
+ Element get first {
return _nodeList[0];
}
@@ -6711,7 +6711,7 @@ class _FrozenElementList implements ElementList {
bool isEmpty() => _nodeList.isEmpty();
- int get length() => _nodeList.length;
+ int get length => _nodeList.length;
Element operator [](int index) => _nodeList[index];
@@ -6886,7 +6886,7 @@ class _ElementAttributeMap implements AttributeMap {
/**
* The number of {key, value} pairs in the map.
*/
- int get length() {
+ int get length {
return _element.$dom_attributes.length;
}
@@ -6961,7 +6961,7 @@ class _DataAttributeMap implements AttributeMap {
return values;
}
- int get length() => getKeys().length;
+ int get length => getKeys().length;
// TODO: Use lazy iterator when it is available on Map.
bool isEmpty() => length == 0;
@@ -6999,9 +6999,9 @@ class _CssClassSet implements CSSClassSet {
bool isEmpty() => _read().isEmpty();
- bool get isFrozen() => false;
+ bool get isFrozen => false;
- int get length() =>_read().length;
+ int get length =>_read().length;
// interface Collection - END
@@ -7114,8 +7114,8 @@ class _SimpleClientRect implements ClientRect {
final num top;
final num width;
final num height;
- num get right() => left + width;
- num get bottom() => top + height;
+ num get right => left + width;
+ num get bottom => top + height;
const _SimpleClientRect(this.left, this.top, this.width, this.height);
@@ -7160,10 +7160,10 @@ class _ElementRectImpl implements ElementRect {
_boundingClientRect = element.$dom_getBoundingClientRect(),
_clientRects = element.$dom_getClientRects();
- _ClientRectImpl get bounding() => _boundingClientRect;
+ _ClientRectImpl get bounding => _boundingClientRect;
// TODO(jacobr): cleanup.
- List<ClientRect> get clientRects() {
+ List<ClientRect> get clientRects {
final out = new List(_clientRects.length);
for (num i = 0; i < _clientRects.length; i++) {
out[i] = _clientRects.item(i);
@@ -7178,7 +7178,7 @@ class _ElementImpl extends _NodeImpl implements Element {
* @domName Element.hasAttribute, Element.getAttribute, Element.setAttribute,
* Element.removeAttribute
*/
- _ElementAttributeMap get attributes() => new _ElementAttributeMap(this);
+ _ElementAttributeMap get attributes => new _ElementAttributeMap(this);
void set attributes(Map<String, String> value) {
Map<String, String> attributes = this.attributes;
@@ -7194,14 +7194,14 @@ class _ElementImpl extends _NodeImpl implements Element {
elements.addAll(value);
}
- ElementList get elements() => new _ChildrenElementList._wrap(this);
+ ElementList get elements => new _ChildrenElementList._wrap(this);
_ElementImpl query(String selectors) => $dom_querySelector(selectors);
List<Element> queryAll(String selectors) =>
new _FrozenElementList._wrap($dom_querySelectorAll(selectors));
- _CssClassSet get classes() => new _CssClassSet(this);
+ _CssClassSet get classes => new _CssClassSet(this);
void set classes(Collection<String> value) {
_CssClassSet classSet = classes;
@@ -7209,7 +7209,7 @@ class _ElementImpl extends _NodeImpl implements Element {
classSet.addAll(value);
}
- Map<String, String> get dataAttributes() =>
+ Map<String, String> get dataAttributes =>
new _DataAttributeMap(attributes);
void set dataAttributes(Map<String, String> value) {
@@ -7220,13 +7220,13 @@ class _ElementImpl extends _NodeImpl implements Element {
}
}
- Future<ElementRect> get rect() {
+ Future<ElementRect> get rect {
return _createMeasurementFuture(
() => new _ElementRectImpl(this),
new Completer<ElementRect>());
}
- Future<CSSStyleDeclaration> get computedStyle() {
+ Future<CSSStyleDeclaration> get computedStyle {
// TODO(jacobr): last param should be null, see b/5045788
return getComputedStyle('');
}
@@ -7258,7 +7258,7 @@ class _ElementImpl extends _NodeImpl implements Element {
- _ElementEventsImpl get on() =>
+ _ElementEventsImpl get on =>
new _ElementEventsImpl(this);
int get $dom_childElementCount() native "Element_childElementCount_Getter";
@@ -7642,11 +7642,11 @@ class _EventSourceFactoryProvider {
class _EventSourceEventsImpl extends _EventsImpl implements EventSourceEvents {
_EventSourceEventsImpl(_ptr) : super(_ptr);
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
- EventListenerList get open() => this['open'];
+ EventListenerList get open => this['open'];
}
// 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
@@ -7656,7 +7656,7 @@ class _EventSourceEventsImpl extends _EventsImpl implements EventSourceEvents {
class _EventSourceImpl extends _EventTargetImpl implements EventSource {
- _EventSourceEventsImpl get on() =>
+ _EventSourceEventsImpl get on =>
new _EventSourceEventsImpl(this);
String get URL() native "EventSource_URL_Getter";
@@ -7732,7 +7732,7 @@ class _EventListenerListImpl implements EventListenerList {
class _EventTargetImpl extends NativeFieldWrapperClass1 implements EventTarget {
- Events get on() => new _EventsImpl(this);
+ Events get on => new _EventsImpl(this);
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "EventTarget_addEventListener_Callback";
@@ -7917,17 +7917,17 @@ class _FileReaderFactoryProvider {
class _FileReaderEventsImpl extends _EventsImpl implements FileReaderEvents {
_FileReaderEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get loadEnd() => this['loadend'];
+ EventListenerList get loadEnd => this['loadend'];
- EventListenerList get loadStart() => this['loadstart'];
+ EventListenerList get loadStart => this['loadstart'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
}
// 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
@@ -7937,7 +7937,7 @@ class _FileReaderEventsImpl extends _EventsImpl implements FileReaderEvents {
class _FileReaderImpl extends _EventTargetImpl implements FileReader {
- _FileReaderEventsImpl get on() =>
+ _FileReaderEventsImpl get on =>
new _FileReaderEventsImpl(this);
FileError get error() native "FileReader_error_Getter";
@@ -8011,17 +8011,17 @@ class _FileReaderSyncImpl extends NativeFieldWrapperClass1 implements FileReader
class _FileWriterEventsImpl extends _EventsImpl implements FileWriterEvents {
_FileWriterEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
- EventListenerList get write() => this['write'];
+ EventListenerList get write => this['write'];
- EventListenerList get writeEnd() => this['writeend'];
+ EventListenerList get writeEnd => this['writeend'];
- EventListenerList get writeStart() => this['writestart'];
+ EventListenerList get writeStart => this['writestart'];
}
// 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
@@ -8031,7 +8031,7 @@ class _FileWriterEventsImpl extends _EventsImpl implements FileWriterEvents {
class _FileWriterImpl extends _EventTargetImpl implements FileWriter {
- _FileWriterEventsImpl get on() =>
+ _FileWriterEventsImpl get on =>
new _FileWriterEventsImpl(this);
FileError get error() native "FileWriter_error_Getter";
@@ -8626,31 +8626,31 @@ class _HTMLBaseFontElementImpl extends _HTMLElementImpl implements BaseFontEleme
class _BodyElementEventsImpl extends _ElementEventsImpl implements BodyElementEvents {
_BodyElementEventsImpl(_ptr) : super(_ptr);
- EventListenerList get beforeUnload() => this['beforeunload'];
+ EventListenerList get beforeUnload => this['beforeunload'];
- EventListenerList get blur() => this['blur'];
+ EventListenerList get blur => this['blur'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get focus() => this['focus'];
+ EventListenerList get focus => this['focus'];
- EventListenerList get hashChange() => this['hashchange'];
+ EventListenerList get hashChange => this['hashchange'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
- EventListenerList get offline() => this['offline'];
+ EventListenerList get offline => this['offline'];
- EventListenerList get online() => this['online'];
+ EventListenerList get online => this['online'];
- EventListenerList get popState() => this['popstate'];
+ EventListenerList get popState => this['popstate'];
- EventListenerList get resize() => this['resize'];
+ EventListenerList get resize => this['resize'];
- EventListenerList get storage() => this['storage'];
+ EventListenerList get storage => this['storage'];
- EventListenerList get unload() => this['unload'];
+ EventListenerList get unload => this['unload'];
}
// 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
@@ -8660,7 +8660,7 @@ class _BodyElementEventsImpl extends _ElementEventsImpl implements BodyElementEv
class _HTMLBodyElementImpl extends _HTMLElementImpl implements BodyElement {
- _BodyElementEventsImpl get on() =>
+ _BodyElementEventsImpl get on =>
new _BodyElementEventsImpl(this);
String get aLink() native "HTMLBodyElement_aLink_Getter";
@@ -8766,7 +8766,7 @@ class _HTMLCanvasElementImpl extends _HTMLElementImpl implements CanvasElement {
String toDataURL(String type, [num quality]) native "HTMLCanvasElement_toDataURL_Callback";
- CanvasRenderingContext2D get context2d() => getContext('2d');
+ CanvasRenderingContext2D get context2d => getContext('2d');
}
// 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
@@ -9218,31 +9218,31 @@ class _HTMLFrameElementImpl extends _HTMLElementImpl implements FrameElement {
class _FrameSetElementEventsImpl extends _ElementEventsImpl implements FrameSetElementEvents {
_FrameSetElementEventsImpl(_ptr) : super(_ptr);
- EventListenerList get beforeUnload() => this['beforeunload'];
+ EventListenerList get beforeUnload => this['beforeunload'];
- EventListenerList get blur() => this['blur'];
+ EventListenerList get blur => this['blur'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get focus() => this['focus'];
+ EventListenerList get focus => this['focus'];
- EventListenerList get hashChange() => this['hashchange'];
+ EventListenerList get hashChange => this['hashchange'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
- EventListenerList get offline() => this['offline'];
+ EventListenerList get offline => this['offline'];
- EventListenerList get online() => this['online'];
+ EventListenerList get online => this['online'];
- EventListenerList get popState() => this['popstate'];
+ EventListenerList get popState => this['popstate'];
- EventListenerList get resize() => this['resize'];
+ EventListenerList get resize => this['resize'];
- EventListenerList get storage() => this['storage'];
+ EventListenerList get storage => this['storage'];
- EventListenerList get unload() => this['unload'];
+ EventListenerList get unload => this['unload'];
}
// 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
@@ -9252,7 +9252,7 @@ class _FrameSetElementEventsImpl extends _ElementEventsImpl implements FrameSetE
class _HTMLFrameSetElementImpl extends _HTMLElementImpl implements FrameSetElement {
- _FrameSetElementEventsImpl get on() =>
+ _FrameSetElementEventsImpl get on =>
new _FrameSetElementEventsImpl(this);
String get cols() native "HTMLFrameSetElement_cols_Getter";
@@ -9462,7 +9462,7 @@ class _HTMLImageElementImpl extends _HTMLElementImpl implements ImageElement {
class _InputElementEventsImpl extends _ElementEventsImpl implements InputElementEvents {
_InputElementEventsImpl(_ptr) : super(_ptr);
- EventListenerList get speechChange() => this['webkitSpeechChange'];
+ EventListenerList get speechChange => this['webkitSpeechChange'];
}
// 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
@@ -9472,7 +9472,7 @@ class _InputElementEventsImpl extends _ElementEventsImpl implements InputElement
class _HTMLInputElementImpl extends _HTMLElementImpl implements InputElement {
- _InputElementEventsImpl get on() =>
+ _InputElementEventsImpl get on =>
new _InputElementEventsImpl(this);
String get accept() native "HTMLInputElement_accept_Getter";
@@ -9911,55 +9911,55 @@ class _HTMLMarqueeElementImpl extends _HTMLElementImpl implements MarqueeElement
class _MediaElementEventsImpl extends _ElementEventsImpl implements MediaElementEvents {
_MediaElementEventsImpl(_ptr) : super(_ptr);
- EventListenerList get canPlay() => this['canplay'];
+ EventListenerList get canPlay => this['canplay'];
- EventListenerList get canPlayThrough() => this['canplaythrough'];
+ EventListenerList get canPlayThrough => this['canplaythrough'];
- EventListenerList get durationChange() => this['durationchange'];
+ EventListenerList get durationChange => this['durationchange'];
- EventListenerList get emptied() => this['emptied'];
+ EventListenerList get emptied => this['emptied'];
- EventListenerList get ended() => this['ended'];
+ EventListenerList get ended => this['ended'];
- EventListenerList get keyAdded() => this['webkitkeyadded'];
+ EventListenerList get keyAdded => this['webkitkeyadded'];
- EventListenerList get keyError() => this['webkitkeyerror'];
+ EventListenerList get keyError => this['webkitkeyerror'];
- EventListenerList get keyMessage() => this['webkitkeymessage'];
+ EventListenerList get keyMessage => this['webkitkeymessage'];
- EventListenerList get loadStart() => this['loadstart'];
+ EventListenerList get loadStart => this['loadstart'];
- EventListenerList get loadedData() => this['loadeddata'];
+ EventListenerList get loadedData => this['loadeddata'];
- EventListenerList get loadedMetadata() => this['loadedmetadata'];
+ EventListenerList get loadedMetadata => this['loadedmetadata'];
- EventListenerList get needKey() => this['webkitneedkey'];
+ EventListenerList get needKey => this['webkitneedkey'];
- EventListenerList get pause() => this['pause'];
+ EventListenerList get pause => this['pause'];
- EventListenerList get play() => this['play'];
+ EventListenerList get play => this['play'];
- EventListenerList get playing() => this['playing'];
+ EventListenerList get playing => this['playing'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
- EventListenerList get rateChange() => this['ratechange'];
+ EventListenerList get rateChange => this['ratechange'];
- EventListenerList get seeked() => this['seeked'];
+ EventListenerList get seeked => this['seeked'];
- EventListenerList get seeking() => this['seeking'];
+ EventListenerList get seeking => this['seeking'];
- EventListenerList get show() => this['show'];
+ EventListenerList get show => this['show'];
- EventListenerList get stalled() => this['stalled'];
+ EventListenerList get stalled => this['stalled'];
- EventListenerList get suspend() => this['suspend'];
+ EventListenerList get suspend => this['suspend'];
- EventListenerList get timeUpdate() => this['timeupdate'];
+ EventListenerList get timeUpdate => this['timeupdate'];
- EventListenerList get volumeChange() => this['volumechange'];
+ EventListenerList get volumeChange => this['volumechange'];
- EventListenerList get waiting() => this['waiting'];
+ EventListenerList get waiting => this['waiting'];
}
// 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
@@ -9969,7 +9969,7 @@ class _MediaElementEventsImpl extends _ElementEventsImpl implements MediaElement
class _HTMLMediaElementImpl extends _HTMLElementImpl implements MediaElement {
- _MediaElementEventsImpl get on() =>
+ _MediaElementEventsImpl get on =>
new _MediaElementEventsImpl(this);
bool get autoplay() native "HTMLMediaElement_autoplay_Getter";
@@ -11288,11 +11288,11 @@ class _IDBDatabaseExceptionImpl extends NativeFieldWrapperClass1 implements IDBD
class _IDBDatabaseEventsImpl extends _EventsImpl implements IDBDatabaseEvents {
_IDBDatabaseEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get versionChange() => this['versionchange'];
+ EventListenerList get versionChange => this['versionchange'];
}
// 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
@@ -11302,7 +11302,7 @@ class _IDBDatabaseEventsImpl extends _EventsImpl implements IDBDatabaseEvents {
class _IDBDatabaseImpl extends _EventTargetImpl implements IDBDatabase {
- _IDBDatabaseEventsImpl get on() =>
+ _IDBDatabaseEventsImpl get on =>
new _IDBDatabaseEventsImpl(this);
String get name() native "IDBDatabase_name_Getter";
@@ -11781,9 +11781,9 @@ class _IDBObjectStoreImpl extends NativeFieldWrapperClass1 implements IDBObjectS
class _IDBOpenDBRequestEventsImpl extends _IDBRequestEventsImpl implements IDBOpenDBRequestEvents {
_IDBOpenDBRequestEventsImpl(_ptr) : super(_ptr);
- EventListenerList get blocked() => this['blocked'];
+ EventListenerList get blocked => this['blocked'];
- EventListenerList get upgradeNeeded() => this['upgradeneeded'];
+ EventListenerList get upgradeNeeded => this['upgradeneeded'];
}
// 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
@@ -11793,7 +11793,7 @@ class _IDBOpenDBRequestEventsImpl extends _IDBRequestEventsImpl implements IDBOp
class _IDBOpenDBRequestImpl extends _IDBRequestImpl implements IDBOpenDBRequest {
- _IDBOpenDBRequestEventsImpl get on() =>
+ _IDBOpenDBRequestEventsImpl get on =>
new _IDBOpenDBRequestEventsImpl(this);
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "IDBOpenDBRequest_addEventListener_Callback";
@@ -11807,9 +11807,9 @@ class _IDBOpenDBRequestImpl extends _IDBRequestImpl implements IDBOpenDBRequest
class _IDBRequestEventsImpl extends _EventsImpl implements IDBRequestEvents {
_IDBRequestEventsImpl(_ptr) : super(_ptr);
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get success() => this['success'];
+ EventListenerList get success => this['success'];
}
// 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
@@ -11819,7 +11819,7 @@ class _IDBRequestEventsImpl extends _EventsImpl implements IDBRequestEvents {
class _IDBRequestImpl extends _EventTargetImpl implements IDBRequest {
- _IDBRequestEventsImpl get on() =>
+ _IDBRequestEventsImpl get on =>
new _IDBRequestEventsImpl(this);
DOMError get error() native "IDBRequest_error_Getter";
@@ -11847,11 +11847,11 @@ class _IDBRequestImpl extends _EventTargetImpl implements IDBRequest {
class _IDBTransactionEventsImpl extends _EventsImpl implements IDBTransactionEvents {
_IDBTransactionEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get complete() => this['complete'];
+ EventListenerList get complete => this['complete'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
}
// 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
@@ -11861,7 +11861,7 @@ class _IDBTransactionEventsImpl extends _EventsImpl implements IDBTransactionEve
class _IDBTransactionImpl extends _EventTargetImpl implements IDBTransaction {
- _IDBTransactionEventsImpl get on() =>
+ _IDBTransactionEventsImpl get on =>
new _IDBTransactionEventsImpl(this);
IDBDatabase get db() native "IDBTransaction_db_Getter";
@@ -11909,7 +11909,7 @@ class _IDBVersionChangeEventImpl extends _EventImpl implements IDBVersionChangeE
class _IDBVersionChangeRequestEventsImpl extends _IDBRequestEventsImpl implements IDBVersionChangeRequestEvents {
_IDBVersionChangeRequestEventsImpl(_ptr) : super(_ptr);
- EventListenerList get blocked() => this['blocked'];
+ EventListenerList get blocked => this['blocked'];
}
// 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
@@ -11919,7 +11919,7 @@ class _IDBVersionChangeRequestEventsImpl extends _IDBRequestEventsImpl implement
class _IDBVersionChangeRequestImpl extends _IDBRequestImpl implements IDBVersionChangeRequest {
- _IDBVersionChangeRequestEventsImpl get on() =>
+ _IDBVersionChangeRequestEventsImpl get on =>
new _IDBVersionChangeRequestEventsImpl(this);
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "IDBVersionChangeRequest_addEventListener_Callback";
@@ -12281,7 +12281,7 @@ class _Int8ArrayImpl extends _ArrayBufferViewImpl implements Int8Array {
class _JavaScriptAudioNodeEventsImpl extends _EventsImpl implements JavaScriptAudioNodeEvents {
_JavaScriptAudioNodeEventsImpl(_ptr) : super(_ptr);
- EventListenerList get audioProcess() => this['audioprocess'];
+ EventListenerList get audioProcess => this['audioprocess'];
}
// 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
@@ -12291,7 +12291,7 @@ class _JavaScriptAudioNodeEventsImpl extends _EventsImpl implements JavaScriptAu
class _JavaScriptAudioNodeImpl extends _AudioNodeImpl implements JavaScriptAudioNode {
- _JavaScriptAudioNodeEventsImpl get on() =>
+ _JavaScriptAudioNodeEventsImpl get on =>
new _JavaScriptAudioNodeEventsImpl(this);
int get bufferSize() native "JavaScriptAudioNode_bufferSize_Getter";
@@ -12731,7 +12731,7 @@ class _MediaStreamFactoryProvider {
class _MediaStreamEventsImpl extends _EventsImpl implements MediaStreamEvents {
_MediaStreamEventsImpl(_ptr) : super(_ptr);
- EventListenerList get ended() => this['ended'];
+ EventListenerList get ended => this['ended'];
}
// 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
@@ -12741,7 +12741,7 @@ class _MediaStreamEventsImpl extends _EventsImpl implements MediaStreamEvents {
class _MediaStreamImpl extends _EventTargetImpl implements MediaStream {
- _MediaStreamEventsImpl get on() =>
+ _MediaStreamEventsImpl get on =>
new _MediaStreamEventsImpl(this);
MediaStreamTrackList get audioTracks() native "MediaStream_audioTracks_Getter";
@@ -12787,11 +12787,11 @@ class _MediaStreamTrackEventImpl extends _EventImpl implements MediaStreamTrackE
class _MediaStreamTrackEventsImpl extends _EventsImpl implements MediaStreamTrackEvents {
_MediaStreamTrackEventsImpl(_ptr) : super(_ptr);
- EventListenerList get ended() => this['ended'];
+ EventListenerList get ended => this['ended'];
- EventListenerList get mute() => this['mute'];
+ EventListenerList get mute => this['mute'];
- EventListenerList get unmute() => this['unmute'];
+ EventListenerList get unmute => this['unmute'];
}
// 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
@@ -12801,7 +12801,7 @@ class _MediaStreamTrackEventsImpl extends _EventsImpl implements MediaStreamTrac
class _MediaStreamTrackImpl extends _EventTargetImpl implements MediaStreamTrack {
- _MediaStreamTrackEventsImpl get on() =>
+ _MediaStreamTrackEventsImpl get on =>
new _MediaStreamTrackEventsImpl(this);
bool get enabled() native "MediaStreamTrack_enabled_Getter";
@@ -12825,9 +12825,9 @@ class _MediaStreamTrackImpl extends _EventTargetImpl implements MediaStreamTrack
class _MediaStreamTrackListEventsImpl extends _EventsImpl implements MediaStreamTrackListEvents {
_MediaStreamTrackListEventsImpl(_ptr) : super(_ptr);
- EventListenerList get addTrack() => this['addtrack'];
+ EventListenerList get addTrack => this['addtrack'];
- EventListenerList get removeTrack() => this['removetrack'];
+ EventListenerList get removeTrack => this['removetrack'];
}
// 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
@@ -12837,7 +12837,7 @@ class _MediaStreamTrackListEventsImpl extends _EventsImpl implements MediaStream
class _MediaStreamTrackListImpl extends _EventTargetImpl implements MediaStreamTrackList {
- _MediaStreamTrackListEventsImpl get on() =>
+ _MediaStreamTrackListEventsImpl get on =>
new _MediaStreamTrackListEventsImpl(this);
int get length() native "MediaStreamTrackList_length_Getter";
@@ -12918,7 +12918,7 @@ class _MessageEventImpl extends _EventImpl implements MessageEvent {
class _MessagePortEventsImpl extends _EventsImpl implements MessagePortEvents {
_MessagePortEventsImpl(_ptr) : super(_ptr);
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
}
// 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
@@ -12928,7 +12928,7 @@ class _MessagePortEventsImpl extends _EventsImpl implements MessagePortEvents {
class _MessagePortImpl extends _EventTargetImpl implements MessagePort {
- _MessagePortEventsImpl get on() =>
+ _MessagePortEventsImpl get on =>
new _MessagePortEventsImpl(this);
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "MessagePort_addEventListener_Callback";
@@ -13331,7 +13331,7 @@ class _ChildNodeListLazy implements NodeList {
_ChildNodeListLazy(this._this);
- _NodeImpl get first() => _this.$dom_firstChild;
+ _NodeImpl get first => _this.$dom_firstChild;
_NodeImpl last() => _this.$dom_lastChild;
void add(_NodeImpl value) {
@@ -13416,13 +13416,13 @@ class _ChildNodeListLazy implements NodeList {
// TODO(jacobr): benchmark whether this is more efficient or whether caching
// a local copy of $dom_childNodes is more efficient.
- int get length() => _this.$dom_childNodes.length;
+ int get length => _this.$dom_childNodes.length;
_NodeImpl operator[](int index) => _this.$dom_childNodes[index];
}
class _NodeImpl extends _EventTargetImpl implements Node {
- _ChildNodeListLazy get nodes() {
+ _ChildNodeListLazy get nodes {
return new _ChildNodeListLazy(this);
}
@@ -13551,7 +13551,7 @@ class _ListWrapper<E> implements List<E> {
bool isEmpty() => _list.isEmpty();
- int get length() => _list.length;
+ int get length => _list.length;
E operator [](int index) => _list[index];
@@ -13590,7 +13590,7 @@ class _ListWrapper<E> implements List<E> {
void insertRange(int start, int rangeLength, [E initialValue = null]) =>
_list.insertRange(start, rangeLength, initialValue);
- E get first() => _list[0];
+ E get first => _list[0];
}
/**
@@ -13680,7 +13680,7 @@ class _NodeListImpl extends NativeFieldWrapperClass1 implements NodeList {
_Lists.lastIndexOf(this, element, start);
Node last() => this[length - 1];
- Node get first() => this[0];
+ Node get first => this[0];
// FIXME: implement thesee.
void setRange(int start, int rangeLength, List<Node> from, [int startFrom]) {
@@ -13747,15 +13747,15 @@ class _NotificationFactoryProvider {
class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents {
_NotificationEventsImpl(_ptr) : super(_ptr);
- EventListenerList get click() => this['click'];
+ EventListenerList get click => this['click'];
- EventListenerList get close() => this['close'];
+ EventListenerList get close => this['close'];
- EventListenerList get display() => this['display'];
+ EventListenerList get display => this['display'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get show() => this['show'];
+ EventListenerList get show => this['show'];
}
// 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
@@ -13765,7 +13765,7 @@ class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents
class _NotificationImpl extends _EventTargetImpl implements Notification {
- _NotificationEventsImpl get on() =>
+ _NotificationEventsImpl get on =>
new _NotificationEventsImpl(this);
String get dir() native "Notification_dir_Getter";
@@ -13919,15 +13919,15 @@ class _PeerConnection00FactoryProvider {
class _PeerConnection00EventsImpl extends _EventsImpl implements PeerConnection00Events {
_PeerConnection00EventsImpl(_ptr) : super(_ptr);
- EventListenerList get addStream() => this['addstream'];
+ EventListenerList get addStream => this['addstream'];
- EventListenerList get connecting() => this['connecting'];
+ EventListenerList get connecting => this['connecting'];
- EventListenerList get open() => this['open'];
+ EventListenerList get open => this['open'];
- EventListenerList get removeStream() => this['removestream'];
+ EventListenerList get removeStream => this['removestream'];
- EventListenerList get stateChange() => this['statechange'];
+ EventListenerList get stateChange => this['statechange'];
}
// 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
@@ -13937,7 +13937,7 @@ class _PeerConnection00EventsImpl extends _EventsImpl implements PeerConnection0
class _PeerConnection00Impl extends _EventTargetImpl implements PeerConnection00 {
- _PeerConnection00EventsImpl get on() =>
+ _PeerConnection00EventsImpl get on =>
new _PeerConnection00EventsImpl(this);
int get iceState() native "PeerConnection00_iceState_Getter";
@@ -15036,14 +15036,14 @@ class _AttributeClassSet extends _CssClassSet {
}
class _SVGElementImpl extends _ElementImpl implements SVGElement {
- CSSClassSet get classes() {
+ CSSClassSet get classes {
if (_cssClassSet === null) {
_cssClassSet = new _AttributeClassSet(_ptr);
}
return _cssClassSet;
}
- ElementList get elements() => new FilteredElementList(this);
+ ElementList get elements => new FilteredElementList(this);
void set elements(Collection<Element> value) {
final elements = this.elements;
@@ -15051,14 +15051,14 @@ class _SVGElementImpl extends _ElementImpl implements SVGElement {
elements.addAll(value);
}
- String get outerHTML() {
+ String get outerHTML {
final container = new Element.tag("div");
final SVGElement cloned = this.clone(true);
container.elements.add(cloned);
return container.innerHTML;
}
- String get innerHTML() {
+ String get innerHTML {
final container = new Element.tag("div");
final SVGElement cloned = this.clone(true);
container.elements.addAll(cloned.elements);
@@ -15091,85 +15091,85 @@ class _SVGElementImpl extends _ElementImpl implements SVGElement {
class _SVGElementInstanceEventsImpl extends _EventsImpl implements SVGElementInstanceEvents {
_SVGElementInstanceEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get beforeCopy() => this['beforecopy'];
+ EventListenerList get beforeCopy => this['beforecopy'];
- EventListenerList get beforeCut() => this['beforecut'];
+ EventListenerList get beforeCut => this['beforecut'];
- EventListenerList get beforePaste() => this['beforepaste'];
+ EventListenerList get beforePaste => this['beforepaste'];
- EventListenerList get blur() => this['blur'];
+ EventListenerList get blur => this['blur'];
- EventListenerList get change() => this['change'];
+ EventListenerList get change => this['change'];
- EventListenerList get click() => this['click'];
+ EventListenerList get click => this['click'];
- EventListenerList get contextMenu() => this['contextmenu'];
+ EventListenerList get contextMenu => this['contextmenu'];
- EventListenerList get copy() => this['copy'];
+ EventListenerList get copy => this['copy'];
- EventListenerList get cut() => this['cut'];
+ EventListenerList get cut => this['cut'];
- EventListenerList get doubleClick() => this['dblclick'];
+ EventListenerList get doubleClick => this['dblclick'];
- EventListenerList get drag() => this['drag'];
+ EventListenerList get drag => this['drag'];
- EventListenerList get dragEnd() => this['dragend'];
+ EventListenerList get dragEnd => this['dragend'];
- EventListenerList get dragEnter() => this['dragenter'];
+ EventListenerList get dragEnter => this['dragenter'];
- EventListenerList get dragLeave() => this['dragleave'];
+ EventListenerList get dragLeave => this['dragleave'];
- EventListenerList get dragOver() => this['dragover'];
+ EventListenerList get dragOver => this['dragover'];
- EventListenerList get dragStart() => this['dragstart'];
+ EventListenerList get dragStart => this['dragstart'];
- EventListenerList get drop() => this['drop'];
+ EventListenerList get drop => this['drop'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get focus() => this['focus'];
+ EventListenerList get focus => this['focus'];
- EventListenerList get input() => this['input'];
+ EventListenerList get input => this['input'];
- EventListenerList get keyDown() => this['keydown'];
+ EventListenerList get keyDown => this['keydown'];
- EventListenerList get keyPress() => this['keypress'];
+ EventListenerList get keyPress => this['keypress'];
- EventListenerList get keyUp() => this['keyup'];
+ EventListenerList get keyUp => this['keyup'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get mouseDown() => this['mousedown'];
+ EventListenerList get mouseDown => this['mousedown'];
- EventListenerList get mouseMove() => this['mousemove'];
+ EventListenerList get mouseMove => this['mousemove'];
- EventListenerList get mouseOut() => this['mouseout'];
+ EventListenerList get mouseOut => this['mouseout'];
- EventListenerList get mouseOver() => this['mouseover'];
+ EventListenerList get mouseOver => this['mouseover'];
- EventListenerList get mouseUp() => this['mouseup'];
+ EventListenerList get mouseUp => this['mouseup'];
- EventListenerList get mouseWheel() => this['mousewheel'];
+ EventListenerList get mouseWheel => this['mousewheel'];
- EventListenerList get paste() => this['paste'];
+ EventListenerList get paste => this['paste'];
- EventListenerList get reset() => this['reset'];
+ EventListenerList get reset => this['reset'];
- EventListenerList get resize() => this['resize'];
+ EventListenerList get resize => this['resize'];
- EventListenerList get scroll() => this['scroll'];
+ EventListenerList get scroll => this['scroll'];
- EventListenerList get search() => this['search'];
+ EventListenerList get search => this['search'];
- EventListenerList get select() => this['select'];
+ EventListenerList get select => this['select'];
- EventListenerList get selectStart() => this['selectstart'];
+ EventListenerList get selectStart => this['selectstart'];
- EventListenerList get submit() => this['submit'];
+ EventListenerList get submit => this['submit'];
- EventListenerList get unload() => this['unload'];
+ EventListenerList get unload => this['unload'];
}
// 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
@@ -15179,7 +15179,7 @@ class _SVGElementInstanceEventsImpl extends _EventsImpl implements SVGElementIns
class _SVGElementInstanceImpl extends _EventTargetImpl implements SVGElementInstance {
- _SVGElementInstanceEventsImpl get on() =>
+ _SVGElementInstanceEventsImpl get on =>
new _SVGElementInstanceEventsImpl(this);
SVGElementInstanceList get childNodes() native "SVGElementInstance_childNodes_Getter";
@@ -18330,7 +18330,7 @@ class _ShadowRootImpl extends _DocumentFragmentImpl implements ShadowRoot {
class _SharedWorkerContextEventsImpl extends _WorkerContextEventsImpl implements SharedWorkerContextEvents {
_SharedWorkerContextEventsImpl(_ptr) : super(_ptr);
- EventListenerList get connect() => this['connect'];
+ EventListenerList get connect => this['connect'];
}
// 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
@@ -18340,7 +18340,7 @@ class _SharedWorkerContextEventsImpl extends _WorkerContextEventsImpl implements
class _SharedWorkerContextImpl extends _WorkerContextImpl implements SharedWorkerContext {
- _SharedWorkerContextEventsImpl get on() =>
+ _SharedWorkerContextEventsImpl get on =>
new _SharedWorkerContextEventsImpl(this);
String get name() native "SharedWorkerContext_name_Getter";
@@ -18563,29 +18563,29 @@ class _SpeechRecognitionFactoryProvider {
class _SpeechRecognitionEventsImpl extends _EventsImpl implements SpeechRecognitionEvents {
_SpeechRecognitionEventsImpl(_ptr) : super(_ptr);
- EventListenerList get audioEnd() => this['audioend'];
+ EventListenerList get audioEnd => this['audioend'];
- EventListenerList get audioStart() => this['audiostart'];
+ EventListenerList get audioStart => this['audiostart'];
- EventListenerList get end() => this['end'];
+ EventListenerList get end => this['end'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get noMatch() => this['nomatch'];
+ EventListenerList get noMatch => this['nomatch'];
- EventListenerList get result() => this['result'];
+ EventListenerList get result => this['result'];
- EventListenerList get resultDeleted() => this['resultdeleted'];
+ EventListenerList get resultDeleted => this['resultdeleted'];
- EventListenerList get soundEnd() => this['soundend'];
+ EventListenerList get soundEnd => this['soundend'];
- EventListenerList get soundStart() => this['soundstart'];
+ EventListenerList get soundStart => this['soundstart'];
- EventListenerList get speechEnd() => this['speechend'];
+ EventListenerList get speechEnd => this['speechend'];
- EventListenerList get speechStart() => this['speechstart'];
+ EventListenerList get speechStart => this['speechstart'];
- EventListenerList get start() => this['start'];
+ EventListenerList get start => this['start'];
}
// 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
@@ -18595,7 +18595,7 @@ class _SpeechRecognitionEventsImpl extends _EventsImpl implements SpeechRecognit
class _SpeechRecognitionImpl extends _EventTargetImpl implements SpeechRecognition {
- _SpeechRecognitionEventsImpl get on() =>
+ _SpeechRecognitionEventsImpl get on =>
new _SpeechRecognitionEventsImpl(this);
bool get continuous() native "SpeechRecognition_continuous_Getter";
@@ -18727,7 +18727,7 @@ class _StorageImpl extends NativeFieldWrapperClass1 implements Storage {
return values;
}
- int get length() => $dom_length;
+ int get length => $dom_length;
bool isEmpty() => $dom_key(0) == null;
@@ -18941,9 +18941,9 @@ class _TextTrackCueFactoryProvider {
class _TextTrackCueEventsImpl extends _EventsImpl implements TextTrackCueEvents {
_TextTrackCueEventsImpl(_ptr) : super(_ptr);
- EventListenerList get enter() => this['enter'];
+ EventListenerList get enter => this['enter'];
- EventListenerList get exit() => this['exit'];
+ EventListenerList get exit => this['exit'];
}
// 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
@@ -18953,7 +18953,7 @@ class _TextTrackCueEventsImpl extends _EventsImpl implements TextTrackCueEvents
class _TextTrackCueImpl extends _EventTargetImpl implements TextTrackCue {
- _TextTrackCueEventsImpl get on() =>
+ _TextTrackCueEventsImpl get on =>
new _TextTrackCueEventsImpl(this);
String get align() native "TextTrackCue_align_Getter";
@@ -19030,7 +19030,7 @@ class _TextTrackCueListImpl extends NativeFieldWrapperClass1 implements TextTrac
class _TextTrackEventsImpl extends _EventsImpl implements TextTrackEvents {
_TextTrackEventsImpl(_ptr) : super(_ptr);
- EventListenerList get cueChange() => this['cuechange'];
+ EventListenerList get cueChange => this['cuechange'];
}
// 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
@@ -19040,7 +19040,7 @@ class _TextTrackEventsImpl extends _EventsImpl implements TextTrackEvents {
class _TextTrackImpl extends _EventTargetImpl implements TextTrack {
- _TextTrackEventsImpl get on() =>
+ _TextTrackEventsImpl get on =>
new _TextTrackEventsImpl(this);
TextTrackCueList get activeCues() native "TextTrack_activeCues_Getter";
@@ -19072,7 +19072,7 @@ class _TextTrackImpl extends _EventTargetImpl implements TextTrack {
class _TextTrackListEventsImpl extends _EventsImpl implements TextTrackListEvents {
_TextTrackListEventsImpl(_ptr) : super(_ptr);
- EventListenerList get addTrack() => this['addtrack'];
+ EventListenerList get addTrack => this['addtrack'];
}
// 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
@@ -19082,7 +19082,7 @@ class _TextTrackListEventsImpl extends _EventsImpl implements TextTrackListEvent
class _TextTrackListImpl extends _EventTargetImpl implements TextTrackList {
- _TextTrackListEventsImpl get on() =>
+ _TextTrackListEventsImpl get on =>
new _TextTrackListEventsImpl(this);
int get length() native "TextTrackList_length_Getter";
@@ -20613,13 +20613,13 @@ class _WebKitTransitionEventImpl extends _EventImpl implements TransitionEvent {
class _WebSocketEventsImpl extends _EventsImpl implements WebSocketEvents {
_WebSocketEventsImpl(_ptr) : super(_ptr);
- EventListenerList get close() => this['close'];
+ EventListenerList get close => this['close'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
- EventListenerList get open() => this['open'];
+ EventListenerList get open => this['open'];
}
// 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
@@ -20629,7 +20629,7 @@ class _WebSocketEventsImpl extends _EventsImpl implements WebSocketEvents {
class _WebSocketImpl extends _EventTargetImpl implements WebSocket {
- _WebSocketEventsImpl get on() =>
+ _WebSocketEventsImpl get on =>
new _WebSocketEventsImpl(this);
String get URL() native "WebSocket_URL_Getter";
@@ -20698,7 +20698,7 @@ class _WheelEventImpl extends _MouseEventImpl implements WheelEvent {
class _WorkerContextEventsImpl extends _EventsImpl implements WorkerContextEvents {
_WorkerContextEventsImpl(_ptr) : super(_ptr);
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
}
// 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
@@ -20708,7 +20708,7 @@ class _WorkerContextEventsImpl extends _EventsImpl implements WorkerContextEvent
class _WorkerContextImpl extends _EventTargetImpl implements WorkerContext {
- _WorkerContextEventsImpl get on() =>
+ _WorkerContextEventsImpl get on =>
new _WorkerContextEventsImpl(this);
WorkerLocation get location() native "WorkerContext_location_Getter";
@@ -20764,7 +20764,7 @@ class _WorkerFactoryProvider {
class _WorkerEventsImpl extends _AbstractWorkerEventsImpl implements WorkerEvents {
_WorkerEventsImpl(_ptr) : super(_ptr);
- EventListenerList get message() => this['message'];
+ EventListenerList get message => this['message'];
}
// 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
@@ -20774,7 +20774,7 @@ class _WorkerEventsImpl extends _AbstractWorkerEventsImpl implements WorkerEvent
class _WorkerImpl extends _AbstractWorkerImpl implements Worker {
- _WorkerEventsImpl get on() =>
+ _WorkerEventsImpl get on =>
new _WorkerEventsImpl(this);
void postMessage(message, [List messagePorts]) native "Worker_postMessage_Callback";
@@ -20867,19 +20867,19 @@ class _HttpRequestFactoryProvider {
class _HttpRequestEventsImpl extends _EventsImpl implements HttpRequestEvents {
_HttpRequestEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get loadEnd() => this['loadend'];
+ EventListenerList get loadEnd => this['loadend'];
- EventListenerList get loadStart() => this['loadstart'];
+ EventListenerList get loadStart => this['loadstart'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
- EventListenerList get readyStateChange() => this['readystatechange'];
+ EventListenerList get readyStateChange => this['readystatechange'];
}
// 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
@@ -20889,7 +20889,7 @@ class _HttpRequestEventsImpl extends _EventsImpl implements HttpRequestEvents {
class _XMLHttpRequestImpl extends _EventTargetImpl implements HttpRequest {
- _HttpRequestEventsImpl get on() =>
+ _HttpRequestEventsImpl get on =>
new _HttpRequestEventsImpl(this);
int get readyState() native "XMLHttpRequest_readyState_Getter";
@@ -20952,17 +20952,17 @@ class _XMLHttpRequestProgressEventImpl extends _ProgressEventImpl implements Htt
class _HttpRequestUploadEventsImpl extends _EventsImpl implements HttpRequestUploadEvents {
_HttpRequestUploadEventsImpl(_ptr) : super(_ptr);
- EventListenerList get abort() => this['abort'];
+ EventListenerList get abort => this['abort'];
- EventListenerList get error() => this['error'];
+ EventListenerList get error => this['error'];
- EventListenerList get load() => this['load'];
+ EventListenerList get load => this['load'];
- EventListenerList get loadEnd() => this['loadend'];
+ EventListenerList get loadEnd => this['loadend'];
- EventListenerList get loadStart() => this['loadstart'];
+ EventListenerList get loadStart => this['loadstart'];
- EventListenerList get progress() => this['progress'];
+ EventListenerList get progress => this['progress'];
}
// 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
@@ -20972,7 +20972,7 @@ class _HttpRequestUploadEventsImpl extends _EventsImpl implements HttpRequestUpl
class _XMLHttpRequestUploadImpl extends _EventTargetImpl implements HttpRequestUpload {
- _HttpRequestUploadEventsImpl get on() =>
+ _HttpRequestUploadEventsImpl get on =>
new _HttpRequestUploadEventsImpl(this);
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "XMLHttpRequestUpload_addEventListener_Callback";
@@ -21434,7 +21434,7 @@ interface AbstractWorker extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- AbstractWorkerEvents get on();
+ AbstractWorkerEvents get on;
/** @domName AbstractWorker.addEventListener */
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -21448,7 +21448,7 @@ interface AbstractWorker extends EventTarget {
interface AbstractWorkerEvents extends Events {
- EventListenerList get error();
+ EventListenerList get error;
}
// 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
@@ -21871,7 +21871,7 @@ interface AudioContext extends EventTarget default _AudioContextFactoryProvider
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- AudioContextEvents get on();
+ AudioContextEvents get on;
/** @domName AudioContext.activeSourceCount */
final int activeSourceCount;
@@ -21948,7 +21948,7 @@ interface AudioContext extends EventTarget default _AudioContextFactoryProvider
interface AudioContextEvents extends Events {
- EventListenerList get complete();
+ EventListenerList get complete;
}
// 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
@@ -22244,7 +22244,7 @@ interface BatteryManager extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- BatteryManagerEvents get on();
+ BatteryManagerEvents get on;
/** @domName BatteryManager.charging */
final bool charging;
@@ -22270,13 +22270,13 @@ interface BatteryManager extends EventTarget {
interface BatteryManagerEvents extends Events {
- EventListenerList get chargingChange();
+ EventListenerList get chargingChange;
- EventListenerList get chargingTimeChange();
+ EventListenerList get chargingTimeChange;
- EventListenerList get dischargingTimeChange();
+ EventListenerList get dischargingTimeChange;
- EventListenerList get levelChange();
+ EventListenerList get levelChange;
}
// 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
@@ -22367,7 +22367,7 @@ interface BodyElement extends Element default _Elements {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- BodyElementEvents get on();
+ BodyElementEvents get on;
/** @domName HTMLBodyElement.aLink */
String aLink;
@@ -22387,31 +22387,31 @@ interface BodyElement extends Element default _Elements {
interface BodyElementEvents extends ElementEvents {
- EventListenerList get beforeUnload();
+ EventListenerList get beforeUnload;
- EventListenerList get blur();
+ EventListenerList get blur;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get focus();
+ EventListenerList get focus;
- EventListenerList get hashChange();
+ EventListenerList get hashChange;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get message();
+ EventListenerList get message;
- EventListenerList get offline();
+ EventListenerList get offline;
- EventListenerList get online();
+ EventListenerList get online;
- EventListenerList get popState();
+ EventListenerList get popState;
- EventListenerList get resize();
+ EventListenerList get resize;
- EventListenerList get storage();
+ EventListenerList get storage;
- EventListenerList get unload();
+ EventListenerList get unload;
}
// 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
@@ -22900,1843 +22900,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);
@@ -25499,7 +25499,7 @@ interface DOMApplicationCache extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- DOMApplicationCacheEvents get on();
+ DOMApplicationCacheEvents get on;
static const int CHECKING = 2;
@@ -25537,21 +25537,21 @@ interface DOMApplicationCache extends EventTarget {
interface DOMApplicationCacheEvents extends Events {
- EventListenerList get cached();
+ EventListenerList get cached;
- EventListenerList get checking();
+ EventListenerList get checking;
- EventListenerList get downloading();
+ EventListenerList get downloading;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get noUpdate();
+ EventListenerList get noUpdate;
- EventListenerList get obsolete();
+ EventListenerList get obsolete;
- EventListenerList get progress();
+ EventListenerList get progress;
- EventListenerList get updateReady();
+ EventListenerList get updateReady;
}
// 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
@@ -26140,7 +26140,7 @@ interface DedicatedWorkerContext extends WorkerContext {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- DedicatedWorkerContextEvents get on();
+ DedicatedWorkerContextEvents get on;
/** @domName DedicatedWorkerContext.postMessage */
void postMessage(Object message, [List messagePorts]);
@@ -26151,7 +26151,7 @@ interface DedicatedWorkerContext extends WorkerContext {
interface DedicatedWorkerContextEvents extends WorkerContextEvents {
- EventListenerList get message();
+ EventListenerList get message;
}
// 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
@@ -26318,7 +26318,7 @@ interface Document extends HtmlElement {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- DocumentEvents get on();
+ DocumentEvents get on;
/** @domName HTMLDocument.activeElement */
final Element activeElement;
@@ -26474,103 +26474,103 @@ interface Document extends HtmlElement {
interface DocumentEvents extends ElementEvents {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get beforeCopy();
+ EventListenerList get beforeCopy;
- EventListenerList get beforeCut();
+ EventListenerList get beforeCut;
- EventListenerList get beforePaste();
+ EventListenerList get beforePaste;
- EventListenerList get blur();
+ EventListenerList get blur;
- EventListenerList get change();
+ EventListenerList get change;
- EventListenerList get click();
+ EventListenerList get click;
- EventListenerList get contextMenu();
+ EventListenerList get contextMenu;
- EventListenerList get copy();
+ EventListenerList get copy;
- EventListenerList get cut();
+ EventListenerList get cut;
- EventListenerList get doubleClick();
+ EventListenerList get doubleClick;
- EventListenerList get drag();
+ EventListenerList get drag;
- EventListenerList get dragEnd();
+ EventListenerList get dragEnd;
- EventListenerList get dragEnter();
+ EventListenerList get dragEnter;
- EventListenerList get dragLeave();
+ EventListenerList get dragLeave;
- EventListenerList get dragOver();
+ EventListenerList get dragOver;
- EventListenerList get dragStart();
+ EventListenerList get dragStart;
- EventListenerList get drop();
+ EventListenerList get drop;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get focus();
+ EventListenerList get focus;
- EventListenerList get fullscreenChange();
+ EventListenerList get fullscreenChange;
- EventListenerList get fullscreenError();
+ EventListenerList get fullscreenError;
- EventListenerList get input();
+ EventListenerList get input;
- EventListenerList get invalid();
+ EventListenerList get invalid;
- EventListenerList get keyDown();
+ EventListenerList get keyDown;
- EventListenerList get keyPress();
+ EventListenerList get keyPress;
- EventListenerList get keyUp();
+ EventListenerList get keyUp;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get mouseDown();
+ EventListenerList get mouseDown;
- EventListenerList get mouseMove();
+ EventListenerList get mouseMove;
- EventListenerList get mouseOut();
+ EventListenerList get mouseOut;
- EventListenerList get mouseOver();
+ EventListenerList get mouseOver;
- EventListenerList get mouseUp();
+ EventListenerList get mouseUp;
- EventListenerList get mouseWheel();
+ EventListenerList get mouseWheel;
- EventListenerList get paste();
+ EventListenerList get paste;
- EventListenerList get pointerLockChange();
+ EventListenerList get pointerLockChange;
- EventListenerList get pointerLockError();
+ EventListenerList get pointerLockError;
- EventListenerList get readyStateChange();
+ EventListenerList get readyStateChange;
- EventListenerList get reset();
+ EventListenerList get reset;
- EventListenerList get scroll();
+ EventListenerList get scroll;
- EventListenerList get search();
+ EventListenerList get search;
- EventListenerList get select();
+ EventListenerList get select;
- EventListenerList get selectStart();
+ EventListenerList get selectStart;
- EventListenerList get selectionChange();
+ EventListenerList get selectionChange;
- EventListenerList get submit();
+ EventListenerList get submit;
- EventListenerList get touchCancel();
+ EventListenerList get touchCancel;
- EventListenerList get touchEnd();
+ EventListenerList get touchEnd;
- EventListenerList get touchMove();
+ EventListenerList get touchMove;
- EventListenerList get touchStart();
+ EventListenerList get touchStart;
}
// 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
@@ -26595,7 +26595,7 @@ interface DocumentFragment extends Element default _DocumentFragmentFactoryProvi
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- ElementEvents get on();
+ ElementEvents get on;
/** @domName DocumentFragment.querySelector */
Element $dom_querySelector(String selectors);
@@ -26688,7 +26688,7 @@ interface ElementList extends List {
ElementList getRange(int start, int length);
- Element get first();
+ Element get first;
// TODO(jacobr): add insertAt
}
@@ -26706,13 +26706,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 {
@@ -26731,7 +26731,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
@@ -26739,23 +26739,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);
/**
@@ -26774,23 +26774,23 @@ 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;
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- ElementEvents get on();
+ ElementEvents get on;
/** @domName HTMLElement.children */
final HTMLCollection $dom_children;
@@ -26981,101 +26981,101 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
interface ElementEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get beforeCopy();
+ EventListenerList get beforeCopy;
- EventListenerList get beforeCut();
+ EventListenerList get beforeCut;
- EventListenerList get beforePaste();
+ EventListenerList get beforePaste;
- EventListenerList get blur();
+ EventListenerList get blur;
- EventListenerList get change();
+ EventListenerList get change;
- EventListenerList get click();
+ EventListenerList get click;
- EventListenerList get contextMenu();
+ EventListenerList get contextMenu;
- EventListenerList get copy();
+ EventListenerList get copy;
- EventListenerList get cut();
+ EventListenerList get cut;
- EventListenerList get doubleClick();
+ EventListenerList get doubleClick;
- EventListenerList get drag();
+ EventListenerList get drag;
- EventListenerList get dragEnd();
+ EventListenerList get dragEnd;
- EventListenerList get dragEnter();
+ EventListenerList get dragEnter;
- EventListenerList get dragLeave();
+ EventListenerList get dragLeave;
- EventListenerList get dragOver();
+ EventListenerList get dragOver;
- EventListenerList get dragStart();
+ EventListenerList get dragStart;
- EventListenerList get drop();
+ EventListenerList get drop;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get focus();
+ EventListenerList get focus;
- EventListenerList get fullscreenChange();
+ EventListenerList get fullscreenChange;
- EventListenerList get fullscreenError();
+ EventListenerList get fullscreenError;
- EventListenerList get input();
+ EventListenerList get input;
- EventListenerList get invalid();
+ EventListenerList get invalid;
- EventListenerList get keyDown();
+ EventListenerList get keyDown;
- EventListenerList get keyPress();
+ EventListenerList get keyPress;
- EventListenerList get keyUp();
+ EventListenerList get keyUp;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get mouseDown();
+ EventListenerList get mouseDown;
- EventListenerList get mouseMove();
+ EventListenerList get mouseMove;
- EventListenerList get mouseOut();
+ EventListenerList get mouseOut;
- EventListenerList get mouseOver();
+ EventListenerList get mouseOver;
- EventListenerList get mouseUp();
+ EventListenerList get mouseUp;
- EventListenerList get mouseWheel();
+ EventListenerList get mouseWheel;
- EventListenerList get paste();
+ EventListenerList get paste;
- EventListenerList get reset();
+ EventListenerList get reset;
- EventListenerList get scroll();
+ EventListenerList get scroll;
- EventListenerList get search();
+ EventListenerList get search;
- EventListenerList get select();
+ EventListenerList get select;
- EventListenerList get selectStart();
+ EventListenerList get selectStart;
- EventListenerList get submit();
+ EventListenerList get submit;
- EventListenerList get touchCancel();
+ EventListenerList get touchCancel;
- EventListenerList get touchEnd();
+ EventListenerList get touchEnd;
- EventListenerList get touchEnter();
+ EventListenerList get touchEnter;
- EventListenerList get touchLeave();
+ EventListenerList get touchLeave;
- EventListenerList get touchMove();
+ EventListenerList get touchMove;
- EventListenerList get touchStart();
+ EventListenerList get touchStart;
- EventListenerList get transitionEnd();
+ EventListenerList get transitionEnd;
}
// 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
@@ -27475,7 +27475,7 @@ interface EventSource extends EventTarget default _EventSourceFactoryProvider {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- EventSourceEvents get on();
+ EventSourceEvents get on;
static const int CLOSED = 2;
@@ -27507,11 +27507,11 @@ interface EventSource extends EventTarget default _EventSourceFactoryProvider {
interface EventSourceEvents extends Events {
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get message();
+ EventListenerList get message;
- EventListenerList get open();
+ EventListenerList get open;
}
// 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
@@ -27753,7 +27753,7 @@ interface FileReader extends EventTarget default _FileReaderFactoryProvider {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- FileReaderEvents get on();
+ FileReaderEvents get on;
static const int DONE = 2;
@@ -27797,17 +27797,17 @@ interface FileReader extends EventTarget default _FileReaderFactoryProvider {
interface FileReaderEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get loadEnd();
+ EventListenerList get loadEnd;
- EventListenerList get loadStart();
+ EventListenerList get loadStart;
- EventListenerList get progress();
+ EventListenerList get progress;
}
// 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
@@ -27851,7 +27851,7 @@ interface FileWriter extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- FileWriterEvents get on();
+ FileWriterEvents get on;
static const int DONE = 2;
@@ -27895,17 +27895,17 @@ interface FileWriter extends EventTarget {
interface FileWriterEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get progress();
+ EventListenerList get progress;
- EventListenerList get write();
+ EventListenerList get write;
- EventListenerList get writeEnd();
+ EventListenerList get writeEnd;
- EventListenerList get writeStart();
+ EventListenerList get writeStart;
}
// 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
@@ -28135,7 +28135,7 @@ interface FrameSetElement extends Element {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- FrameSetElementEvents get on();
+ FrameSetElementEvents get on;
/** @domName HTMLFrameSetElement.cols */
String cols;
@@ -28146,31 +28146,31 @@ interface FrameSetElement extends Element {
interface FrameSetElementEvents extends ElementEvents {
- EventListenerList get beforeUnload();
+ EventListenerList get beforeUnload;
- EventListenerList get blur();
+ EventListenerList get blur;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get focus();
+ EventListenerList get focus;
- EventListenerList get hashChange();
+ EventListenerList get hashChange;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get message();
+ EventListenerList get message;
- EventListenerList get offline();
+ EventListenerList get offline;
- EventListenerList get online();
+ EventListenerList get online;
- EventListenerList get popState();
+ EventListenerList get popState;
- EventListenerList get resize();
+ EventListenerList get resize;
- EventListenerList get storage();
+ EventListenerList get storage;
- EventListenerList get unload();
+ EventListenerList get unload;
}
// 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
@@ -28438,7 +28438,7 @@ interface HttpRequest extends EventTarget default _HttpRequestFactoryProvider {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- HttpRequestEvents get on();
+ HttpRequestEvents get on;
static const int DONE = 4;
@@ -28510,19 +28510,19 @@ interface HttpRequest extends EventTarget default _HttpRequestFactoryProvider {
interface HttpRequestEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get loadEnd();
+ EventListenerList get loadEnd;
- EventListenerList get loadStart();
+ EventListenerList get loadStart;
- EventListenerList get progress();
+ EventListenerList get progress;
- EventListenerList get readyStateChange();
+ EventListenerList get readyStateChange;
}
// 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
@@ -28576,7 +28576,7 @@ interface HttpRequestUpload extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- HttpRequestUploadEvents get on();
+ HttpRequestUploadEvents get on;
/** @domName XMLHttpRequestUpload.addEventListener */
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -28590,17 +28590,17 @@ interface HttpRequestUpload extends EventTarget {
interface HttpRequestUploadEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get loadEnd();
+ EventListenerList get loadEnd;
- EventListenerList get loadStart();
+ EventListenerList get loadStart;
- EventListenerList get progress();
+ EventListenerList get progress;
}
// 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
@@ -28676,7 +28676,7 @@ interface IDBDatabase extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- IDBDatabaseEvents get on();
+ IDBDatabaseEvents get on;
/** @domName IDBDatabase.name */
final String name;
@@ -28714,11 +28714,11 @@ interface IDBDatabase extends EventTarget {
interface IDBDatabaseEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get versionChange();
+ EventListenerList get versionChange;
}
// 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
@@ -28945,14 +28945,14 @@ interface IDBOpenDBRequest extends IDBRequest, EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- IDBOpenDBRequestEvents get on();
+ IDBOpenDBRequestEvents get on;
}
interface IDBOpenDBRequestEvents extends IDBRequestEvents {
- EventListenerList get blocked();
+ EventListenerList get blocked;
- EventListenerList get upgradeNeeded();
+ EventListenerList get upgradeNeeded;
}
// 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
@@ -28966,7 +28966,7 @@ interface IDBRequest extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- IDBRequestEvents get on();
+ IDBRequestEvents get on;
/** @domName IDBRequest.error */
final DOMError error;
@@ -29001,9 +29001,9 @@ interface IDBRequest extends EventTarget {
interface IDBRequestEvents extends Events {
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get success();
+ EventListenerList get success;
}
// 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
@@ -29017,7 +29017,7 @@ interface IDBTransaction extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- IDBTransactionEvents get on();
+ IDBTransactionEvents get on;
static const int READ_ONLY = 0;
@@ -29052,11 +29052,11 @@ interface IDBTransaction extends EventTarget {
interface IDBTransactionEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get complete();
+ EventListenerList get complete;
- EventListenerList get error();
+ EventListenerList get error;
}
// 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
@@ -29097,12 +29097,12 @@ interface IDBVersionChangeRequest extends IDBRequest, EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- IDBVersionChangeRequestEvents get on();
+ IDBVersionChangeRequestEvents get on;
}
interface IDBVersionChangeRequestEvents extends IDBRequestEvents {
- EventListenerList get blocked();
+ EventListenerList get blocked;
}
// 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
@@ -29281,7 +29281,7 @@ interface InputElement extends Element default _Elements {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- InputElementEvents get on();
+ InputElementEvents get on;
/** @domName HTMLInputElement.accept */
String accept;
@@ -29451,7 +29451,7 @@ interface InputElement extends Element default _Elements {
interface InputElementEvents extends ElementEvents {
- EventListenerList get speechChange();
+ EventListenerList get speechChange;
}
// 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
@@ -29543,7 +29543,7 @@ interface JavaScriptAudioNode extends AudioNode, EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- JavaScriptAudioNodeEvents get on();
+ JavaScriptAudioNodeEvents get on;
/** @domName JavaScriptAudioNode.bufferSize */
final int bufferSize;
@@ -29551,7 +29551,7 @@ interface JavaScriptAudioNode extends AudioNode, EventTarget {
interface JavaScriptAudioNodeEvents extends Events {
- EventListenerList get audioProcess();
+ EventListenerList get audioProcess;
}
// 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
@@ -29982,7 +29982,7 @@ interface MediaElement extends Element {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- MediaElementEvents get on();
+ MediaElementEvents get on;
static const int HAVE_CURRENT_DATA = 2;
@@ -30125,55 +30125,55 @@ interface MediaElement extends Element {
interface MediaElementEvents extends ElementEvents {
- EventListenerList get canPlay();
+ EventListenerList get canPlay;
- EventListenerList get canPlayThrough();
+ EventListenerList get canPlayThrough;
- EventListenerList get durationChange();
+ EventListenerList get durationChange;
- EventListenerList get emptied();
+ EventListenerList get emptied;
- EventListenerList get ended();
+ EventListenerList get ended;
- EventListenerList get keyAdded();
+ EventListenerList get keyAdded;
- EventListenerList get keyError();
+ EventListenerList get keyError;
- EventListenerList get keyMessage();
+ EventListenerList get keyMessage;
- EventListenerList get loadStart();
+ EventListenerList get loadStart;
- EventListenerList get loadedData();
+ EventListenerList get loadedData;
- EventListenerList get loadedMetadata();
+ EventListenerList get loadedMetadata;
- EventListenerList get needKey();
+ EventListenerList get needKey;
- EventListenerList get pause();
+ EventListenerList get pause;
- EventListenerList get play();
+ EventListenerList get play;
- EventListenerList get playing();
+ EventListenerList get playing;
- EventListenerList get progress();
+ EventListenerList get progress;
- EventListenerList get rateChange();
+ EventListenerList get rateChange;
- EventListenerList get seeked();
+ EventListenerList get seeked;
- EventListenerList get seeking();
+ EventListenerList get seeking;
- EventListenerList get show();
+ EventListenerList get show;
- EventListenerList get stalled();
+ EventListenerList get stalled;
- EventListenerList get suspend();
+ EventListenerList get suspend;
- EventListenerList get timeUpdate();
+ EventListenerList get timeUpdate;
- EventListenerList get volumeChange();
+ EventListenerList get volumeChange;
- EventListenerList get waiting();
+ EventListenerList get waiting;
}
// 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
@@ -30372,7 +30372,7 @@ interface MediaStream extends EventTarget default _MediaStreamFactoryProvider {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- MediaStreamEvents get on();
+ MediaStreamEvents get on;
static const int ENDED = 2;
@@ -30402,7 +30402,7 @@ interface MediaStream extends EventTarget default _MediaStreamFactoryProvider {
interface MediaStreamEvents extends Events {
- EventListenerList get ended();
+ EventListenerList get ended;
}
// 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
@@ -30455,7 +30455,7 @@ interface MediaStreamTrack extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- MediaStreamTrackEvents get on();
+ MediaStreamTrackEvents get on;
static const int ENDED = 2;
@@ -30487,11 +30487,11 @@ interface MediaStreamTrack extends EventTarget {
interface MediaStreamTrackEvents extends Events {
- EventListenerList get ended();
+ EventListenerList get ended;
- EventListenerList get mute();
+ EventListenerList get mute;
- EventListenerList get unmute();
+ EventListenerList get unmute;
}
// 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
@@ -30517,7 +30517,7 @@ interface MediaStreamTrackList extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- MediaStreamTrackListEvents get on();
+ MediaStreamTrackListEvents get on;
/** @domName MediaStreamTrackList.length */
final int length;
@@ -30543,9 +30543,9 @@ interface MediaStreamTrackList extends EventTarget {
interface MediaStreamTrackListEvents extends Events {
- EventListenerList get addTrack();
+ EventListenerList get addTrack;
- EventListenerList get removeTrack();
+ EventListenerList get removeTrack;
}
// 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
@@ -30638,7 +30638,7 @@ interface MessagePort extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- MessagePortEvents get on();
+ MessagePortEvents get on;
/** @domName MessagePort.addEventListener */
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -30664,7 +30664,7 @@ interface MessagePort extends EventTarget {
interface MessagePortEvents extends Events {
- EventListenerList get message();
+ EventListenerList get message;
}
// 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
@@ -31072,7 +31072,7 @@ typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream);
/// @domName Node
interface Node extends EventTarget {
- NodeList get nodes();
+ NodeList get nodes;
void set nodes(Collection<Node> value);
@@ -31279,7 +31279,7 @@ interface NodeList extends List<Node> {
NodeList getRange(int start, int length);
- Node get first();
+ Node get first;
/** @domName NodeList.length */
@@ -31315,7 +31315,7 @@ interface Notification extends EventTarget default _NotificationFactoryProvider
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- NotificationEvents get on();
+ NotificationEvents get on;
/** @domName Notification.dir */
String dir;
@@ -31350,15 +31350,15 @@ interface Notification extends EventTarget default _NotificationFactoryProvider
interface NotificationEvents extends Events {
- EventListenerList get click();
+ EventListenerList get click;
- EventListenerList get close();
+ EventListenerList get close;
- EventListenerList get display();
+ EventListenerList get display;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get show();
+ EventListenerList get show;
}
// 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
@@ -31792,7 +31792,7 @@ interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- PeerConnection00Events get on();
+ PeerConnection00Events get on;
static const int ACTIVE = 2;
@@ -31879,15 +31879,15 @@ interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP
interface PeerConnection00Events extends Events {
- EventListenerList get addStream();
+ EventListenerList get addStream;
- EventListenerList get connecting();
+ EventListenerList get connecting;
- EventListenerList get open();
+ EventListenerList get open;
- EventListenerList get removeStream();
+ EventListenerList get removeStream;
- EventListenerList get stateChange();
+ EventListenerList get stateChange;
}
// 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
@@ -33074,7 +33074,7 @@ interface SVGElementInstance extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- SVGElementInstanceEvents get on();
+ SVGElementInstanceEvents get on;
/** @domName SVGElementInstance.childNodes */
final SVGElementInstanceList childNodes;
@@ -33103,85 +33103,85 @@ interface SVGElementInstance extends EventTarget {
interface SVGElementInstanceEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get beforeCopy();
+ EventListenerList get beforeCopy;
- EventListenerList get beforeCut();
+ EventListenerList get beforeCut;
- EventListenerList get beforePaste();
+ EventListenerList get beforePaste;
- EventListenerList get blur();
+ EventListenerList get blur;
- EventListenerList get change();
+ EventListenerList get change;
- EventListenerList get click();
+ EventListenerList get click;
- EventListenerList get contextMenu();
+ EventListenerList get contextMenu;
- EventListenerList get copy();
+ EventListenerList get copy;
- EventListenerList get cut();
+ EventListenerList get cut;
- EventListenerList get doubleClick();
+ EventListenerList get doubleClick;
- EventListenerList get drag();
+ EventListenerList get drag;
- EventListenerList get dragEnd();
+ EventListenerList get dragEnd;
- EventListenerList get dragEnter();
+ EventListenerList get dragEnter;
- EventListenerList get dragLeave();
+ EventListenerList get dragLeave;
- EventListenerList get dragOver();
+ EventListenerList get dragOver;
- EventListenerList get dragStart();
+ EventListenerList get dragStart;
- EventListenerList get drop();
+ EventListenerList get drop;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get focus();
+ EventListenerList get focus;
- EventListenerList get input();
+ EventListenerList get input;
- EventListenerList get keyDown();
+ EventListenerList get keyDown;
- EventListenerList get keyPress();
+ EventListenerList get keyPress;
- EventListenerList get keyUp();
+ EventListenerList get keyUp;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get mouseDown();
+ EventListenerList get mouseDown;
- EventListenerList get mouseMove();
+ EventListenerList get mouseMove;
- EventListenerList get mouseOut();
+ EventListenerList get mouseOut;
- EventListenerList get mouseOver();
+ EventListenerList get mouseOver;
- EventListenerList get mouseUp();
+ EventListenerList get mouseUp;
- EventListenerList get mouseWheel();
+ EventListenerList get mouseWheel;
- EventListenerList get paste();
+ EventListenerList get paste;
- EventListenerList get reset();
+ EventListenerList get reset;
- EventListenerList get resize();
+ EventListenerList get resize;
- EventListenerList get scroll();
+ EventListenerList get scroll;
- EventListenerList get search();
+ EventListenerList get search;
- EventListenerList get select();
+ EventListenerList get select;
- EventListenerList get selectStart();
+ EventListenerList get selectStart;
- EventListenerList get submit();
+ EventListenerList get submit;
- EventListenerList get unload();
+ EventListenerList get unload;
}
// 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
@@ -36180,7 +36180,7 @@ interface SharedWorkerContext extends WorkerContext {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- SharedWorkerContextEvents get on();
+ SharedWorkerContextEvents get on;
/** @domName SharedWorkerContext.name */
final String name;
@@ -36188,7 +36188,7 @@ interface SharedWorkerContext extends WorkerContext {
interface SharedWorkerContextEvents extends WorkerContextEvents {
- EventListenerList get connect();
+ EventListenerList get connect;
}
// 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
@@ -36362,7 +36362,7 @@ interface SpeechRecognition extends EventTarget default _SpeechRecognitionFactor
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- SpeechRecognitionEvents get on();
+ SpeechRecognitionEvents get on;
/** @domName SpeechRecognition.continuous */
bool continuous;
@@ -36397,29 +36397,29 @@ interface SpeechRecognition extends EventTarget default _SpeechRecognitionFactor
interface SpeechRecognitionEvents extends Events {
- EventListenerList get audioEnd();
+ EventListenerList get audioEnd;
- EventListenerList get audioStart();
+ EventListenerList get audioStart;
- EventListenerList get end();
+ EventListenerList get end;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get noMatch();
+ EventListenerList get noMatch;
- EventListenerList get result();
+ EventListenerList get result;
- EventListenerList get resultDeleted();
+ EventListenerList get resultDeleted;
- EventListenerList get soundEnd();
+ EventListenerList get soundEnd;
- EventListenerList get soundStart();
+ EventListenerList get soundStart;
- EventListenerList get speechEnd();
+ EventListenerList get speechEnd;
- EventListenerList get speechStart();
+ EventListenerList get speechStart;
- EventListenerList get start();
+ EventListenerList get start;
}
// 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
@@ -37107,7 +37107,7 @@ interface TextTrack extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- TextTrackEvents get on();
+ TextTrackEvents get on;
static const int DISABLED = 0;
@@ -37151,7 +37151,7 @@ interface TextTrack extends EventTarget {
interface TextTrackEvents extends Events {
- EventListenerList get cueChange();
+ EventListenerList get cueChange;
}
// 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
@@ -37167,7 +37167,7 @@ interface TextTrackCue extends EventTarget default _TextTrackCueFactoryProvider
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- TextTrackCueEvents get on();
+ TextTrackCueEvents get on;
/** @domName TextTrackCue.align */
String align;
@@ -37220,9 +37220,9 @@ interface TextTrackCue extends EventTarget default _TextTrackCueFactoryProvider
interface TextTrackCueEvents extends Events {
- EventListenerList get enter();
+ EventListenerList get enter;
- EventListenerList get exit();
+ EventListenerList get exit;
}
// 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
@@ -37254,7 +37254,7 @@ interface TextTrackList extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- TextTrackListEvents get on();
+ TextTrackListEvents get on;
/** @domName TextTrackList.length */
final int length;
@@ -37274,7 +37274,7 @@ interface TextTrackList extends EventTarget {
interface TextTrackListEvents extends Events {
- EventListenerList get addTrack();
+ EventListenerList get addTrack;
}
// 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
@@ -39115,7 +39115,7 @@ interface WebSocket extends EventTarget default _WebSocketFactoryProvider {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- WebSocketEvents get on();
+ WebSocketEvents get on;
static const int CLOSED = 3;
@@ -39164,13 +39164,13 @@ interface WebSocket extends EventTarget default _WebSocketFactoryProvider {
interface WebSocketEvents extends Events {
- EventListenerList get close();
+ EventListenerList get close;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get message();
+ EventListenerList get message;
- EventListenerList get open();
+ EventListenerList get open;
}
// 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
@@ -39231,7 +39231,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
@@ -39247,7 +39247,7 @@ interface Window extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- WindowEvents get on();
+ WindowEvents get on;
static const int PERSISTENT = 1;
@@ -39536,153 +39536,153 @@ interface Window extends EventTarget {
interface WindowEvents extends Events {
- EventListenerList get abort();
+ EventListenerList get abort;
- EventListenerList get animationEnd();
+ EventListenerList get animationEnd;
- EventListenerList get animationIteration();
+ EventListenerList get animationIteration;
- EventListenerList get animationStart();
+ EventListenerList get animationStart;
- EventListenerList get beforeUnload();
+ EventListenerList get beforeUnload;
- EventListenerList get blur();
+ EventListenerList get blur;
- EventListenerList get canPlay();
+ EventListenerList get canPlay;
- EventListenerList get canPlayThrough();
+ EventListenerList get canPlayThrough;
- EventListenerList get change();
+ EventListenerList get change;
- EventListenerList get click();
+ EventListenerList get click;
- EventListenerList get contentLoaded();
+ EventListenerList get contentLoaded;
- EventListenerList get contextMenu();
+ EventListenerList get contextMenu;
- EventListenerList get deviceMotion();
+ EventListenerList get deviceMotion;
- EventListenerList get deviceOrientation();
+ EventListenerList get deviceOrientation;
- EventListenerList get doubleClick();
+ EventListenerList get doubleClick;
- EventListenerList get drag();
+ EventListenerList get drag;
- EventListenerList get dragEnd();
+ EventListenerList get dragEnd;
- EventListenerList get dragEnter();
+ EventListenerList get dragEnter;
- EventListenerList get dragLeave();
+ EventListenerList get dragLeave;
- EventListenerList get dragOver();
+ EventListenerList get dragOver;
- EventListenerList get dragStart();
+ EventListenerList get dragStart;
- EventListenerList get drop();
+ EventListenerList get drop;
- EventListenerList get durationChange();
+ EventListenerList get durationChange;
- EventListenerList get emptied();
+ EventListenerList get emptied;
- EventListenerList get ended();
+ EventListenerList get ended;
- EventListenerList get error();
+ EventListenerList get error;
- EventListenerList get focus();
+ EventListenerList get focus;
- EventListenerList get hashChange();
+ EventListenerList get hashChange;
- EventListenerList get input();
+ EventListenerList get input;
- EventListenerList get invalid();
+ EventListenerList get invalid;
- EventListenerList get keyDown();
+ EventListenerList get keyDown;
- EventListenerList get keyPress();
+ EventListenerList get keyPress;
- EventListenerList get keyUp();
+ EventListenerList get keyUp;
- EventListenerList get load();
+ EventListenerList get load;
- EventListenerList get loadStart();
+ EventListenerList get loadStart;
- EventListenerList get loadedData();
+ EventListenerList get loadedData;
- EventListenerList get loadedMetadata();
+ EventListenerList get loadedMetadata;
- EventListenerList get message();
+ EventListenerList get message;
- EventListenerList get mouseDown();
+ EventListenerList get mouseDown;
- EventListenerList get mouseMove();
+ EventListenerList get mouseMove;
- EventListenerList get mouseOut();
+ EventListenerList get mouseOut;
- EventListenerList get mouseOver();
+ EventListenerList get mouseOver;
- EventListenerList get mouseUp();
+ EventListenerList get mouseUp;
- EventListenerList get mouseWheel();
+ EventListenerList get mouseWheel;
- EventListenerList get offline();
+ EventListenerList get offline;
- EventListenerList get online();
+ EventListenerList get online;
- EventListenerList get pageHide();
+ EventListenerList get pageHide;
- EventListenerList get pageShow();
+ EventListenerList get pageShow;
- EventListenerList get pause();
+ EventListenerList get pause;
- EventListenerList get play();
+ EventListenerList get play;
- EventListenerList get playing();
+ EventListenerList get playing;
- EventListenerList get popState();
+ EventListenerList get popState;
- EventListenerList get progress();
+ EventListenerList get progress;
- EventListenerList get rateChange();
+ EventListenerList get rateChange;
- EventListenerList get reset();
+ EventListenerList get reset;
- EventListenerList get resize();
+ EventListenerList get resize;
- EventListenerList get scroll();
+ EventListenerList get scroll;
- EventListenerList get search();
+ EventListenerList get search;
- EventListenerList get seeked();
+ EventListenerList get seeked;
- EventListenerList get seeking();
+ EventListenerList get seeking;
- EventListenerList get select();
+ EventListenerList get select;
- EventListenerList get stalled();
+ EventListenerList get stalled;
- EventListenerList get storage();
+ EventListenerList get storage;
- EventListenerList get submit();
+ EventListenerList get submit;
- EventListenerList get suspend();
+ EventListenerList get suspend;
- EventListenerList get timeUpdate();
+ EventListenerList get timeUpdate;
- EventListenerList get touchCancel();
+ EventListenerList get touchCancel;
- EventListenerList get touchEnd();
+ EventListenerList get touchEnd;
- EventListenerList get touchMove();
+ EventListenerList get touchMove;
- EventListenerList get touchStart();
+ EventListenerList get touchStart;
- EventListenerList get transitionEnd();
+ EventListenerList get transitionEnd;
- EventListenerList get unload();
+ EventListenerList get unload;
- EventListenerList get volumeChange();
+ EventListenerList get volumeChange;
- EventListenerList get waiting();
+ EventListenerList get waiting;
}
// 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
@@ -39698,7 +39698,7 @@ interface Worker extends AbstractWorker default _WorkerFactoryProvider {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- WorkerEvents get on();
+ WorkerEvents get on;
/** @domName Worker.postMessage */
void postMessage(/*SerializedScriptValue*/ message, [List messagePorts]);
@@ -39712,7 +39712,7 @@ interface Worker extends AbstractWorker default _WorkerFactoryProvider {
interface WorkerEvents extends AbstractWorkerEvents {
- EventListenerList get message();
+ EventListenerList get message;
}
// 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
@@ -39726,7 +39726,7 @@ interface WorkerContext extends EventTarget {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
*/
- WorkerContextEvents get on();
+ WorkerContextEvents get on;
static const int PERSISTENT = 1;
@@ -39795,7 +39795,7 @@ interface WorkerContext extends EventTarget {
interface WorkerContextEvents extends Events {
- EventListenerList get error();
+ EventListenerList get error;
}
// 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
@@ -40930,22 +40930,22 @@ class _Device {
* the user agent.
* Returns the user agent.
*/
- static String get userAgent() => window.navigator.userAgent;
+ static String get userAgent => window.navigator.userAgent;
/**
* Determines if the current device is running Opera.
*/
- static bool get isOpera() => userAgent.contains("Opera", 0);
+ static bool get isOpera => userAgent.contains("Opera", 0);
/**
* Determines if the current device is running Internet Explorer.
*/
- static bool get isIE() => !isOpera && userAgent.contains("MSIE", 0);
+ static bool get isIE => !isOpera && userAgent.contains("MSIE", 0);
/**
* Determines if the current device is running Firefox.
*/
- static bool get isFirefox() => userAgent.contains("Firefox", 0);
+ static bool get isFirefox => userAgent.contains("Firefox", 0);
}
// 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
@@ -41610,7 +41610,7 @@ spawnDomFunction(Function topLevelFunction) => _Utils.spawnDomFunctionImpl(topLe
var _testRunner;
-TestRunner get testRunner() {
+TestRunner get testRunner {
if (_testRunner === null)
_testRunner = new TestRunner._(_NPObject.retrieve("testRunner"));
return _testRunner;
@@ -41692,7 +41692,7 @@ class _DOMWindowCrossFrameImpl extends NativeFieldWrapperClass1 implements Windo
void postMessage(/*SerializedScriptValue*/ message, String targetOrigin, [List messagePorts]) native "DOMWindow_postMessage_Callback";
// Implementation support.
- String get typeName() => "DOMWindow";
+ String get typeName => "DOMWindow";
}
class _HistoryCrossFrameImpl extends NativeFieldWrapperClass1 implements History {
@@ -41704,7 +41704,7 @@ class _HistoryCrossFrameImpl extends NativeFieldWrapperClass1 implements History
void go(int distance) native "History_go_Callback";
// Implementation support.
- String get typeName() => "History";
+ String get typeName => "History";
}
class _LocationCrossFrameImpl extends NativeFieldWrapperClass1 implements Location {
@@ -41714,7 +41714,7 @@ class _LocationCrossFrameImpl extends NativeFieldWrapperClass1 implements Locati
void set href(String) native "Location_href_Setter";
// Implementation support.
- String get typeName() => "Location";
+ String get typeName => "Location";
}
class _DOMStringMapImpl extends NativeFieldWrapperClass1 implements Map<String, String> {
@@ -41730,7 +41730,7 @@ class _DOMStringMapImpl extends NativeFieldWrapperClass1 implements Map<String,
void forEach(void f(String key, String value)) => Maps.forEach(this, f);
Collection<String> getKeys() native "DOMStringMap_getKeys_Callback";
Collection<String> getValues() => Maps.getValues(this);
- int get length() => Maps.length(this);
+ int get length => Maps.length(this);
bool isEmpty() => Maps.isEmpty(this);
}
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/src/AnimationEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698