| Index: lib/html/dart2js/html_dart2js.dart
|
| diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
|
| index b8f27149066bd888c0672f70e55ab69ee7fbd52b..585cc42eabc087986c6a7f92ef09f94fb82904c9 100644
|
| --- a/lib/html/dart2js/html_dart2js.dart
|
| +++ b/lib/html/dart2js/html_dart2js.dart
|
| @@ -15,12 +15,12 @@
|
|
|
|
|
|
|
| -Window get window native "return window;";
|
| -_WindowImpl get _window native "return window;";
|
| +Window get window() native "return window;";
|
| +_WindowImpl get _window() native "return window;";
|
|
|
| -Document get document native "return document;";
|
| +Document get document() native "return document;";
|
|
|
| -_DocumentImpl get _document native "return document;";
|
| +_DocumentImpl get _document() native "return document;";
|
|
|
| Element query(String selector) => _document.query(selector);
|
| ElementList queryAll(String selector) => _document.queryAll(selector);
|
| @@ -55,7 +55,7 @@ spawnDomFunction(f) => spawnFunction(f);
|
|
|
| class _AbstractWorkerImpl extends _EventTargetImpl implements AbstractWorker native "*AbstractWorker" {
|
|
|
| - _AbstractWorkerEventsImpl get on =>
|
| + _AbstractWorkerEventsImpl get on() =>
|
| new _AbstractWorkerEventsImpl(this);
|
|
|
| void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "addEventListener";
|
| @@ -68,7 +68,7 @@ class _AbstractWorkerImpl extends _EventTargetImpl implements AbstractWorker nat
|
| class _AbstractWorkerEventsImpl extends _EventsImpl implements AbstractWorkerEvents {
|
| _AbstractWorkerEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get error => this['error'];
|
| + EventListenerList get error() => this['error'];
|
| }
|
|
|
| class _AnchorElementImpl extends _ElementImpl implements AnchorElement native "*HTMLAnchorElement" {
|
| @@ -304,7 +304,7 @@ class _AudioChannelSplitterImpl extends _AudioNodeImpl implements AudioChannelSp
|
|
|
| class _AudioContextImpl extends _EventTargetImpl implements AudioContext native "*AudioContext" {
|
|
|
| - _AudioContextEventsImpl get on =>
|
| + _AudioContextEventsImpl get on() =>
|
| new _AudioContextEventsImpl(this);
|
|
|
| final int activeSourceCount;
|
| @@ -359,7 +359,7 @@ class _AudioContextImpl extends _EventTargetImpl implements AudioContext native
|
| class _AudioContextEventsImpl extends _EventsImpl implements AudioContextEvents {
|
| _AudioContextEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get complete => this['complete'];
|
| + EventListenerList get complete() => this['complete'];
|
| }
|
|
|
| class _AudioDestinationNodeImpl extends _AudioNodeImpl implements AudioDestinationNode native "*AudioDestinationNode" {
|
| @@ -510,7 +510,7 @@ class _BaseFontElementImpl extends _ElementImpl implements BaseFontElement nativ
|
|
|
| class _BatteryManagerImpl extends _EventTargetImpl implements BatteryManager native "*BatteryManager" {
|
|
|
| - _BatteryManagerEventsImpl get on =>
|
| + _BatteryManagerEventsImpl get on() =>
|
| new _BatteryManagerEventsImpl(this);
|
|
|
| final bool charging;
|
| @@ -531,13 +531,13 @@ class _BatteryManagerImpl extends _EventTargetImpl implements BatteryManager nat
|
| 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'];
|
| }
|
|
|
| class _BeforeLoadEventImpl extends _EventImpl implements BeforeLoadEvent native "*BeforeLoadEvent" {
|
| @@ -587,7 +587,7 @@ class _BlobImpl implements Blob native "*Blob" {
|
|
|
| class _BodyElementImpl extends _ElementImpl implements BodyElement native "*HTMLBodyElement" {
|
|
|
| - _BodyElementEventsImpl get on =>
|
| + _BodyElementEventsImpl get on() =>
|
| new _BodyElementEventsImpl(this);
|
|
|
| String aLink;
|
| @@ -604,31 +604,31 @@ class _BodyElementImpl extends _ElementImpl implements BodyElement native "*HTML
|
| 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'];
|
| }
|
|
|
| class _ButtonElementImpl extends _ElementImpl implements ButtonElement native "*HTMLButtonElement" {
|
| @@ -913,7 +913,7 @@ class _CSSRuleListImpl implements CSSRuleList native "*CSSRuleList" {
|
|
|
| String _cachedBrowserPrefix;
|
|
|
| -String get _browserPrefix {
|
| +String get _browserPrefix() {
|
| if (_cachedBrowserPrefix === null) {
|
| if (_Device.isFirefox) {
|
| _cachedBrowserPrefix = '-moz-';
|
| @@ -956,7 +956,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
|
|
| // 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" */
|
| @@ -965,7 +965,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "animation-delay" */
|
| - String get animationDelay =>
|
| + String get animationDelay() =>
|
| getPropertyValue('${_browserPrefix}animation-delay');
|
|
|
| /** Sets the value of "animation-delay" */
|
| @@ -974,7 +974,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "animation-direction" */
|
| - String get animationDirection =>
|
| + String get animationDirection() =>
|
| getPropertyValue('${_browserPrefix}animation-direction');
|
|
|
| /** Sets the value of "animation-direction" */
|
| @@ -983,7 +983,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "animation-duration" */
|
| - String get animationDuration =>
|
| + String get animationDuration() =>
|
| getPropertyValue('${_browserPrefix}animation-duration');
|
|
|
| /** Sets the value of "animation-duration" */
|
| @@ -992,7 +992,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1001,7 +1001,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1010,7 +1010,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "animation-name" */
|
| - String get animationName =>
|
| + String get animationName() =>
|
| getPropertyValue('${_browserPrefix}animation-name');
|
|
|
| /** Sets the value of "animation-name" */
|
| @@ -1019,7 +1019,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1028,7 +1028,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1037,7 +1037,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "appearance" */
|
| - String get appearance =>
|
| + String get appearance() =>
|
| getPropertyValue('${_browserPrefix}appearance');
|
|
|
| /** Sets the value of "appearance" */
|
| @@ -1046,7 +1046,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "backface-visibility" */
|
| - String get backfaceVisibility =>
|
| + String get backfaceVisibility() =>
|
| getPropertyValue('${_browserPrefix}backface-visibility');
|
|
|
| /** Sets the value of "backface-visibility" */
|
| @@ -1055,7 +1055,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background" */
|
| - String get background =>
|
| + String get background() =>
|
| getPropertyValue('background');
|
|
|
| /** Sets the value of "background" */
|
| @@ -1064,7 +1064,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-attachment" */
|
| - String get backgroundAttachment =>
|
| + String get backgroundAttachment() =>
|
| getPropertyValue('background-attachment');
|
|
|
| /** Sets the value of "background-attachment" */
|
| @@ -1073,7 +1073,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-clip" */
|
| - String get backgroundClip =>
|
| + String get backgroundClip() =>
|
| getPropertyValue('background-clip');
|
|
|
| /** Sets the value of "background-clip" */
|
| @@ -1082,7 +1082,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-color" */
|
| - String get backgroundColor =>
|
| + String get backgroundColor() =>
|
| getPropertyValue('background-color');
|
|
|
| /** Sets the value of "background-color" */
|
| @@ -1091,7 +1091,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-composite" */
|
| - String get backgroundComposite =>
|
| + String get backgroundComposite() =>
|
| getPropertyValue('${_browserPrefix}background-composite');
|
|
|
| /** Sets the value of "background-composite" */
|
| @@ -1100,7 +1100,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-image" */
|
| - String get backgroundImage =>
|
| + String get backgroundImage() =>
|
| getPropertyValue('background-image');
|
|
|
| /** Sets the value of "background-image" */
|
| @@ -1109,7 +1109,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-origin" */
|
| - String get backgroundOrigin =>
|
| + String get backgroundOrigin() =>
|
| getPropertyValue('background-origin');
|
|
|
| /** Sets the value of "background-origin" */
|
| @@ -1118,7 +1118,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-position" */
|
| - String get backgroundPosition =>
|
| + String get backgroundPosition() =>
|
| getPropertyValue('background-position');
|
|
|
| /** Sets the value of "background-position" */
|
| @@ -1127,7 +1127,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-position-x" */
|
| - String get backgroundPositionX =>
|
| + String get backgroundPositionX() =>
|
| getPropertyValue('background-position-x');
|
|
|
| /** Sets the value of "background-position-x" */
|
| @@ -1136,7 +1136,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-position-y" */
|
| - String get backgroundPositionY =>
|
| + String get backgroundPositionY() =>
|
| getPropertyValue('background-position-y');
|
|
|
| /** Sets the value of "background-position-y" */
|
| @@ -1145,7 +1145,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-repeat" */
|
| - String get backgroundRepeat =>
|
| + String get backgroundRepeat() =>
|
| getPropertyValue('background-repeat');
|
|
|
| /** Sets the value of "background-repeat" */
|
| @@ -1154,7 +1154,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-repeat-x" */
|
| - String get backgroundRepeatX =>
|
| + String get backgroundRepeatX() =>
|
| getPropertyValue('background-repeat-x');
|
|
|
| /** Sets the value of "background-repeat-x" */
|
| @@ -1163,7 +1163,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-repeat-y" */
|
| - String get backgroundRepeatY =>
|
| + String get backgroundRepeatY() =>
|
| getPropertyValue('background-repeat-y');
|
|
|
| /** Sets the value of "background-repeat-y" */
|
| @@ -1172,7 +1172,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "background-size" */
|
| - String get backgroundSize =>
|
| + String get backgroundSize() =>
|
| getPropertyValue('background-size');
|
|
|
| /** Sets the value of "background-size" */
|
| @@ -1181,7 +1181,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border" */
|
| - String get border =>
|
| + String get border() =>
|
| getPropertyValue('border');
|
|
|
| /** Sets the value of "border" */
|
| @@ -1190,7 +1190,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-after" */
|
| - String get borderAfter =>
|
| + String get borderAfter() =>
|
| getPropertyValue('${_browserPrefix}border-after');
|
|
|
| /** Sets the value of "border-after" */
|
| @@ -1199,7 +1199,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1208,7 +1208,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1217,7 +1217,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1226,7 +1226,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-before" */
|
| - String get borderBefore =>
|
| + String get borderBefore() =>
|
| getPropertyValue('${_browserPrefix}border-before');
|
|
|
| /** Sets the value of "border-before" */
|
| @@ -1235,7 +1235,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1244,7 +1244,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1253,7 +1253,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1262,7 +1262,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-bottom" */
|
| - String get borderBottom =>
|
| + String get borderBottom() =>
|
| getPropertyValue('border-bottom');
|
|
|
| /** Sets the value of "border-bottom" */
|
| @@ -1271,7 +1271,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-bottom-color" */
|
| - String get borderBottomColor =>
|
| + String get borderBottomColor() =>
|
| getPropertyValue('border-bottom-color');
|
|
|
| /** Sets the value of "border-bottom-color" */
|
| @@ -1280,7 +1280,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1289,7 +1289,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1298,7 +1298,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-bottom-style" */
|
| - String get borderBottomStyle =>
|
| + String get borderBottomStyle() =>
|
| getPropertyValue('border-bottom-style');
|
|
|
| /** Sets the value of "border-bottom-style" */
|
| @@ -1307,7 +1307,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-bottom-width" */
|
| - String get borderBottomWidth =>
|
| + String get borderBottomWidth() =>
|
| getPropertyValue('border-bottom-width');
|
|
|
| /** Sets the value of "border-bottom-width" */
|
| @@ -1316,7 +1316,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-collapse" */
|
| - String get borderCollapse =>
|
| + String get borderCollapse() =>
|
| getPropertyValue('border-collapse');
|
|
|
| /** Sets the value of "border-collapse" */
|
| @@ -1325,7 +1325,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-color" */
|
| - String get borderColor =>
|
| + String get borderColor() =>
|
| getPropertyValue('border-color');
|
|
|
| /** Sets the value of "border-color" */
|
| @@ -1334,7 +1334,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-end" */
|
| - String get borderEnd =>
|
| + String get borderEnd() =>
|
| getPropertyValue('${_browserPrefix}border-end');
|
|
|
| /** Sets the value of "border-end" */
|
| @@ -1343,7 +1343,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1352,7 +1352,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1361,7 +1361,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1370,7 +1370,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-fit" */
|
| - String get borderFit =>
|
| + String get borderFit() =>
|
| getPropertyValue('${_browserPrefix}border-fit');
|
|
|
| /** Sets the value of "border-fit" */
|
| @@ -1379,7 +1379,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1388,7 +1388,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-image" */
|
| - String get borderImage =>
|
| + String get borderImage() =>
|
| getPropertyValue('border-image');
|
|
|
| /** Sets the value of "border-image" */
|
| @@ -1397,7 +1397,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-image-outset" */
|
| - String get borderImageOutset =>
|
| + String get borderImageOutset() =>
|
| getPropertyValue('border-image-outset');
|
|
|
| /** Sets the value of "border-image-outset" */
|
| @@ -1406,7 +1406,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-image-repeat" */
|
| - String get borderImageRepeat =>
|
| + String get borderImageRepeat() =>
|
| getPropertyValue('border-image-repeat');
|
|
|
| /** Sets the value of "border-image-repeat" */
|
| @@ -1415,7 +1415,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-image-slice" */
|
| - String get borderImageSlice =>
|
| + String get borderImageSlice() =>
|
| getPropertyValue('border-image-slice');
|
|
|
| /** Sets the value of "border-image-slice" */
|
| @@ -1424,7 +1424,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-image-source" */
|
| - String get borderImageSource =>
|
| + String get borderImageSource() =>
|
| getPropertyValue('border-image-source');
|
|
|
| /** Sets the value of "border-image-source" */
|
| @@ -1433,7 +1433,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-image-width" */
|
| - String get borderImageWidth =>
|
| + String get borderImageWidth() =>
|
| getPropertyValue('border-image-width');
|
|
|
| /** Sets the value of "border-image-width" */
|
| @@ -1442,7 +1442,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-left" */
|
| - String get borderLeft =>
|
| + String get borderLeft() =>
|
| getPropertyValue('border-left');
|
|
|
| /** Sets the value of "border-left" */
|
| @@ -1451,7 +1451,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-left-color" */
|
| - String get borderLeftColor =>
|
| + String get borderLeftColor() =>
|
| getPropertyValue('border-left-color');
|
|
|
| /** Sets the value of "border-left-color" */
|
| @@ -1460,7 +1460,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-left-style" */
|
| - String get borderLeftStyle =>
|
| + String get borderLeftStyle() =>
|
| getPropertyValue('border-left-style');
|
|
|
| /** Sets the value of "border-left-style" */
|
| @@ -1469,7 +1469,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-left-width" */
|
| - String get borderLeftWidth =>
|
| + String get borderLeftWidth() =>
|
| getPropertyValue('border-left-width');
|
|
|
| /** Sets the value of "border-left-width" */
|
| @@ -1478,7 +1478,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-radius" */
|
| - String get borderRadius =>
|
| + String get borderRadius() =>
|
| getPropertyValue('border-radius');
|
|
|
| /** Sets the value of "border-radius" */
|
| @@ -1487,7 +1487,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-right" */
|
| - String get borderRight =>
|
| + String get borderRight() =>
|
| getPropertyValue('border-right');
|
|
|
| /** Sets the value of "border-right" */
|
| @@ -1496,7 +1496,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-right-color" */
|
| - String get borderRightColor =>
|
| + String get borderRightColor() =>
|
| getPropertyValue('border-right-color');
|
|
|
| /** Sets the value of "border-right-color" */
|
| @@ -1505,7 +1505,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-right-style" */
|
| - String get borderRightStyle =>
|
| + String get borderRightStyle() =>
|
| getPropertyValue('border-right-style');
|
|
|
| /** Sets the value of "border-right-style" */
|
| @@ -1514,7 +1514,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-right-width" */
|
| - String get borderRightWidth =>
|
| + String get borderRightWidth() =>
|
| getPropertyValue('border-right-width');
|
|
|
| /** Sets the value of "border-right-width" */
|
| @@ -1523,7 +1523,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-spacing" */
|
| - String get borderSpacing =>
|
| + String get borderSpacing() =>
|
| getPropertyValue('border-spacing');
|
|
|
| /** Sets the value of "border-spacing" */
|
| @@ -1532,7 +1532,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-start" */
|
| - String get borderStart =>
|
| + String get borderStart() =>
|
| getPropertyValue('${_browserPrefix}border-start');
|
|
|
| /** Sets the value of "border-start" */
|
| @@ -1541,7 +1541,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1550,7 +1550,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1559,7 +1559,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1568,7 +1568,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-style" */
|
| - String get borderStyle =>
|
| + String get borderStyle() =>
|
| getPropertyValue('border-style');
|
|
|
| /** Sets the value of "border-style" */
|
| @@ -1577,7 +1577,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-top" */
|
| - String get borderTop =>
|
| + String get borderTop() =>
|
| getPropertyValue('border-top');
|
|
|
| /** Sets the value of "border-top" */
|
| @@ -1586,7 +1586,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-top-color" */
|
| - String get borderTopColor =>
|
| + String get borderTopColor() =>
|
| getPropertyValue('border-top-color');
|
|
|
| /** Sets the value of "border-top-color" */
|
| @@ -1595,7 +1595,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1604,7 +1604,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1613,7 +1613,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-top-style" */
|
| - String get borderTopStyle =>
|
| + String get borderTopStyle() =>
|
| getPropertyValue('border-top-style');
|
|
|
| /** Sets the value of "border-top-style" */
|
| @@ -1622,7 +1622,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-top-width" */
|
| - String get borderTopWidth =>
|
| + String get borderTopWidth() =>
|
| getPropertyValue('border-top-width');
|
|
|
| /** Sets the value of "border-top-width" */
|
| @@ -1631,7 +1631,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1640,7 +1640,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "border-width" */
|
| - String get borderWidth =>
|
| + String get borderWidth() =>
|
| getPropertyValue('border-width');
|
|
|
| /** Sets the value of "border-width" */
|
| @@ -1649,7 +1649,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "bottom" */
|
| - String get bottom =>
|
| + String get bottom() =>
|
| getPropertyValue('bottom');
|
|
|
| /** Sets the value of "bottom" */
|
| @@ -1658,7 +1658,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-align" */
|
| - String get boxAlign =>
|
| + String get boxAlign() =>
|
| getPropertyValue('${_browserPrefix}box-align');
|
|
|
| /** Sets the value of "box-align" */
|
| @@ -1667,7 +1667,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-direction" */
|
| - String get boxDirection =>
|
| + String get boxDirection() =>
|
| getPropertyValue('${_browserPrefix}box-direction');
|
|
|
| /** Sets the value of "box-direction" */
|
| @@ -1676,7 +1676,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-flex" */
|
| - String get boxFlex =>
|
| + String get boxFlex() =>
|
| getPropertyValue('${_browserPrefix}box-flex');
|
|
|
| /** Sets the value of "box-flex" */
|
| @@ -1685,7 +1685,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1694,7 +1694,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-lines" */
|
| - String get boxLines =>
|
| + String get boxLines() =>
|
| getPropertyValue('${_browserPrefix}box-lines');
|
|
|
| /** Sets the value of "box-lines" */
|
| @@ -1703,7 +1703,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1712,7 +1712,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-orient" */
|
| - String get boxOrient =>
|
| + String get boxOrient() =>
|
| getPropertyValue('${_browserPrefix}box-orient');
|
|
|
| /** Sets the value of "box-orient" */
|
| @@ -1721,7 +1721,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-pack" */
|
| - String get boxPack =>
|
| + String get boxPack() =>
|
| getPropertyValue('${_browserPrefix}box-pack');
|
|
|
| /** Sets the value of "box-pack" */
|
| @@ -1730,7 +1730,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-reflect" */
|
| - String get boxReflect =>
|
| + String get boxReflect() =>
|
| getPropertyValue('${_browserPrefix}box-reflect');
|
|
|
| /** Sets the value of "box-reflect" */
|
| @@ -1739,7 +1739,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-shadow" */
|
| - String get boxShadow =>
|
| + String get boxShadow() =>
|
| getPropertyValue('box-shadow');
|
|
|
| /** Sets the value of "box-shadow" */
|
| @@ -1748,7 +1748,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "box-sizing" */
|
| - String get boxSizing =>
|
| + String get boxSizing() =>
|
| getPropertyValue('box-sizing');
|
|
|
| /** Sets the value of "box-sizing" */
|
| @@ -1757,7 +1757,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "caption-side" */
|
| - String get captionSide =>
|
| + String get captionSide() =>
|
| getPropertyValue('caption-side');
|
|
|
| /** Sets the value of "caption-side" */
|
| @@ -1766,7 +1766,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "clear" */
|
| - String get clear =>
|
| + String get clear() =>
|
| getPropertyValue('clear');
|
|
|
| /** Sets the value of "clear" */
|
| @@ -1775,7 +1775,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "clip" */
|
| - String get clip =>
|
| + String get clip() =>
|
| getPropertyValue('clip');
|
|
|
| /** Sets the value of "clip" */
|
| @@ -1784,7 +1784,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "color" */
|
| - String get color =>
|
| + String get color() =>
|
| getPropertyValue('color');
|
|
|
| /** Sets the value of "color" */
|
| @@ -1793,7 +1793,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "color-correction" */
|
| - String get colorCorrection =>
|
| + String get colorCorrection() =>
|
| getPropertyValue('${_browserPrefix}color-correction');
|
|
|
| /** Sets the value of "color-correction" */
|
| @@ -1802,7 +1802,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1811,7 +1811,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1820,7 +1820,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1829,7 +1829,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "column-count" */
|
| - String get columnCount =>
|
| + String get columnCount() =>
|
| getPropertyValue('${_browserPrefix}column-count');
|
|
|
| /** Sets the value of "column-count" */
|
| @@ -1838,7 +1838,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "column-gap" */
|
| - String get columnGap =>
|
| + String get columnGap() =>
|
| getPropertyValue('${_browserPrefix}column-gap');
|
|
|
| /** Sets the value of "column-gap" */
|
| @@ -1847,7 +1847,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "column-rule" */
|
| - String get columnRule =>
|
| + String get columnRule() =>
|
| getPropertyValue('${_browserPrefix}column-rule');
|
|
|
| /** Sets the value of "column-rule" */
|
| @@ -1856,7 +1856,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1865,7 +1865,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1874,7 +1874,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -1883,7 +1883,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "column-span" */
|
| - String get columnSpan =>
|
| + String get columnSpan() =>
|
| getPropertyValue('${_browserPrefix}column-span');
|
|
|
| /** Sets the value of "column-span" */
|
| @@ -1892,7 +1892,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "column-width" */
|
| - String get columnWidth =>
|
| + String get columnWidth() =>
|
| getPropertyValue('${_browserPrefix}column-width');
|
|
|
| /** Sets the value of "column-width" */
|
| @@ -1901,7 +1901,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "columns" */
|
| - String get columns =>
|
| + String get columns() =>
|
| getPropertyValue('${_browserPrefix}columns');
|
|
|
| /** Sets the value of "columns" */
|
| @@ -1910,7 +1910,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "content" */
|
| - String get content =>
|
| + String get content() =>
|
| getPropertyValue('content');
|
|
|
| /** Sets the value of "content" */
|
| @@ -1919,7 +1919,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "counter-increment" */
|
| - String get counterIncrement =>
|
| + String get counterIncrement() =>
|
| getPropertyValue('counter-increment');
|
|
|
| /** Sets the value of "counter-increment" */
|
| @@ -1928,7 +1928,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "counter-reset" */
|
| - String get counterReset =>
|
| + String get counterReset() =>
|
| getPropertyValue('counter-reset');
|
|
|
| /** Sets the value of "counter-reset" */
|
| @@ -1937,7 +1937,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "cursor" */
|
| - String get cursor =>
|
| + String get cursor() =>
|
| getPropertyValue('cursor');
|
|
|
| /** Sets the value of "cursor" */
|
| @@ -1946,7 +1946,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "direction" */
|
| - String get direction =>
|
| + String get direction() =>
|
| getPropertyValue('direction');
|
|
|
| /** Sets the value of "direction" */
|
| @@ -1955,7 +1955,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "display" */
|
| - String get display =>
|
| + String get display() =>
|
| getPropertyValue('display');
|
|
|
| /** Sets the value of "display" */
|
| @@ -1964,7 +1964,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "empty-cells" */
|
| - String get emptyCells =>
|
| + String get emptyCells() =>
|
| getPropertyValue('empty-cells');
|
|
|
| /** Sets the value of "empty-cells" */
|
| @@ -1973,7 +1973,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "filter" */
|
| - String get filter =>
|
| + String get filter() =>
|
| getPropertyValue('${_browserPrefix}filter');
|
|
|
| /** Sets the value of "filter" */
|
| @@ -1982,7 +1982,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "flex-align" */
|
| - String get flexAlign =>
|
| + String get flexAlign() =>
|
| getPropertyValue('${_browserPrefix}flex-align');
|
|
|
| /** Sets the value of "flex-align" */
|
| @@ -1991,7 +1991,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "flex-flow" */
|
| - String get flexFlow =>
|
| + String get flexFlow() =>
|
| getPropertyValue('${_browserPrefix}flex-flow');
|
|
|
| /** Sets the value of "flex-flow" */
|
| @@ -2000,7 +2000,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "flex-order" */
|
| - String get flexOrder =>
|
| + String get flexOrder() =>
|
| getPropertyValue('${_browserPrefix}flex-order');
|
|
|
| /** Sets the value of "flex-order" */
|
| @@ -2009,7 +2009,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "flex-pack" */
|
| - String get flexPack =>
|
| + String get flexPack() =>
|
| getPropertyValue('${_browserPrefix}flex-pack');
|
|
|
| /** Sets the value of "flex-pack" */
|
| @@ -2018,7 +2018,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "float" */
|
| - String get float =>
|
| + String get float() =>
|
| getPropertyValue('float');
|
|
|
| /** Sets the value of "float" */
|
| @@ -2027,7 +2027,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "flow-from" */
|
| - String get flowFrom =>
|
| + String get flowFrom() =>
|
| getPropertyValue('${_browserPrefix}flow-from');
|
|
|
| /** Sets the value of "flow-from" */
|
| @@ -2036,7 +2036,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "flow-into" */
|
| - String get flowInto =>
|
| + String get flowInto() =>
|
| getPropertyValue('${_browserPrefix}flow-into');
|
|
|
| /** Sets the value of "flow-into" */
|
| @@ -2045,7 +2045,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font" */
|
| - String get font =>
|
| + String get font() =>
|
| getPropertyValue('font');
|
|
|
| /** Sets the value of "font" */
|
| @@ -2054,7 +2054,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-family" */
|
| - String get fontFamily =>
|
| + String get fontFamily() =>
|
| getPropertyValue('font-family');
|
|
|
| /** Sets the value of "font-family" */
|
| @@ -2063,7 +2063,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2072,7 +2072,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-size" */
|
| - String get fontSize =>
|
| + String get fontSize() =>
|
| getPropertyValue('font-size');
|
|
|
| /** Sets the value of "font-size" */
|
| @@ -2081,7 +2081,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2090,7 +2090,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-smoothing" */
|
| - String get fontSmoothing =>
|
| + String get fontSmoothing() =>
|
| getPropertyValue('${_browserPrefix}font-smoothing');
|
|
|
| /** Sets the value of "font-smoothing" */
|
| @@ -2099,7 +2099,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-stretch" */
|
| - String get fontStretch =>
|
| + String get fontStretch() =>
|
| getPropertyValue('font-stretch');
|
|
|
| /** Sets the value of "font-stretch" */
|
| @@ -2108,7 +2108,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-style" */
|
| - String get fontStyle =>
|
| + String get fontStyle() =>
|
| getPropertyValue('font-style');
|
|
|
| /** Sets the value of "font-style" */
|
| @@ -2117,7 +2117,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-variant" */
|
| - String get fontVariant =>
|
| + String get fontVariant() =>
|
| getPropertyValue('font-variant');
|
|
|
| /** Sets the value of "font-variant" */
|
| @@ -2126,7 +2126,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "font-weight" */
|
| - String get fontWeight =>
|
| + String get fontWeight() =>
|
| getPropertyValue('font-weight');
|
|
|
| /** Sets the value of "font-weight" */
|
| @@ -2135,7 +2135,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "height" */
|
| - String get height =>
|
| + String get height() =>
|
| getPropertyValue('height');
|
|
|
| /** Sets the value of "height" */
|
| @@ -2144,7 +2144,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "highlight" */
|
| - String get highlight =>
|
| + String get highlight() =>
|
| getPropertyValue('${_browserPrefix}highlight');
|
|
|
| /** Sets the value of "highlight" */
|
| @@ -2153,7 +2153,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "hyphenate-character" */
|
| - String get hyphenateCharacter =>
|
| + String get hyphenateCharacter() =>
|
| getPropertyValue('${_browserPrefix}hyphenate-character');
|
|
|
| /** Sets the value of "hyphenate-character" */
|
| @@ -2162,7 +2162,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2171,7 +2171,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2180,7 +2180,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2189,7 +2189,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "hyphens" */
|
| - String get hyphens =>
|
| + String get hyphens() =>
|
| getPropertyValue('${_browserPrefix}hyphens');
|
|
|
| /** Sets the value of "hyphens" */
|
| @@ -2198,7 +2198,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "image-rendering" */
|
| - String get imageRendering =>
|
| + String get imageRendering() =>
|
| getPropertyValue('image-rendering');
|
|
|
| /** Sets the value of "image-rendering" */
|
| @@ -2207,7 +2207,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "left" */
|
| - String get left =>
|
| + String get left() =>
|
| getPropertyValue('left');
|
|
|
| /** Sets the value of "left" */
|
| @@ -2216,7 +2216,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "letter-spacing" */
|
| - String get letterSpacing =>
|
| + String get letterSpacing() =>
|
| getPropertyValue('letter-spacing');
|
|
|
| /** Sets the value of "letter-spacing" */
|
| @@ -2225,7 +2225,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2234,7 +2234,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "line-break" */
|
| - String get lineBreak =>
|
| + String get lineBreak() =>
|
| getPropertyValue('${_browserPrefix}line-break');
|
|
|
| /** Sets the value of "line-break" */
|
| @@ -2243,7 +2243,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "line-clamp" */
|
| - String get lineClamp =>
|
| + String get lineClamp() =>
|
| getPropertyValue('${_browserPrefix}line-clamp');
|
|
|
| /** Sets the value of "line-clamp" */
|
| @@ -2252,7 +2252,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "line-height" */
|
| - String get lineHeight =>
|
| + String get lineHeight() =>
|
| getPropertyValue('line-height');
|
|
|
| /** Sets the value of "line-height" */
|
| @@ -2261,7 +2261,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "list-style" */
|
| - String get listStyle =>
|
| + String get listStyle() =>
|
| getPropertyValue('list-style');
|
|
|
| /** Sets the value of "list-style" */
|
| @@ -2270,7 +2270,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "list-style-image" */
|
| - String get listStyleImage =>
|
| + String get listStyleImage() =>
|
| getPropertyValue('list-style-image');
|
|
|
| /** Sets the value of "list-style-image" */
|
| @@ -2279,7 +2279,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "list-style-position" */
|
| - String get listStylePosition =>
|
| + String get listStylePosition() =>
|
| getPropertyValue('list-style-position');
|
|
|
| /** Sets the value of "list-style-position" */
|
| @@ -2288,7 +2288,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "list-style-type" */
|
| - String get listStyleType =>
|
| + String get listStyleType() =>
|
| getPropertyValue('list-style-type');
|
|
|
| /** Sets the value of "list-style-type" */
|
| @@ -2297,7 +2297,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "locale" */
|
| - String get locale =>
|
| + String get locale() =>
|
| getPropertyValue('${_browserPrefix}locale');
|
|
|
| /** Sets the value of "locale" */
|
| @@ -2306,7 +2306,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "logical-height" */
|
| - String get logicalHeight =>
|
| + String get logicalHeight() =>
|
| getPropertyValue('${_browserPrefix}logical-height');
|
|
|
| /** Sets the value of "logical-height" */
|
| @@ -2315,7 +2315,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "logical-width" */
|
| - String get logicalWidth =>
|
| + String get logicalWidth() =>
|
| getPropertyValue('${_browserPrefix}logical-width');
|
|
|
| /** Sets the value of "logical-width" */
|
| @@ -2324,7 +2324,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin" */
|
| - String get margin =>
|
| + String get margin() =>
|
| getPropertyValue('margin');
|
|
|
| /** Sets the value of "margin" */
|
| @@ -2333,7 +2333,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-after" */
|
| - String get marginAfter =>
|
| + String get marginAfter() =>
|
| getPropertyValue('${_browserPrefix}margin-after');
|
|
|
| /** Sets the value of "margin-after" */
|
| @@ -2342,7 +2342,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2351,7 +2351,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-before" */
|
| - String get marginBefore =>
|
| + String get marginBefore() =>
|
| getPropertyValue('${_browserPrefix}margin-before');
|
|
|
| /** Sets the value of "margin-before" */
|
| @@ -2360,7 +2360,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2369,7 +2369,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-bottom" */
|
| - String get marginBottom =>
|
| + String get marginBottom() =>
|
| getPropertyValue('margin-bottom');
|
|
|
| /** Sets the value of "margin-bottom" */
|
| @@ -2378,7 +2378,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2387,7 +2387,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-collapse" */
|
| - String get marginCollapse =>
|
| + String get marginCollapse() =>
|
| getPropertyValue('${_browserPrefix}margin-collapse');
|
|
|
| /** Sets the value of "margin-collapse" */
|
| @@ -2396,7 +2396,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-end" */
|
| - String get marginEnd =>
|
| + String get marginEnd() =>
|
| getPropertyValue('${_browserPrefix}margin-end');
|
|
|
| /** Sets the value of "margin-end" */
|
| @@ -2405,7 +2405,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-left" */
|
| - String get marginLeft =>
|
| + String get marginLeft() =>
|
| getPropertyValue('margin-left');
|
|
|
| /** Sets the value of "margin-left" */
|
| @@ -2414,7 +2414,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-right" */
|
| - String get marginRight =>
|
| + String get marginRight() =>
|
| getPropertyValue('margin-right');
|
|
|
| /** Sets the value of "margin-right" */
|
| @@ -2423,7 +2423,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-start" */
|
| - String get marginStart =>
|
| + String get marginStart() =>
|
| getPropertyValue('${_browserPrefix}margin-start');
|
|
|
| /** Sets the value of "margin-start" */
|
| @@ -2432,7 +2432,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "margin-top" */
|
| - String get marginTop =>
|
| + String get marginTop() =>
|
| getPropertyValue('margin-top');
|
|
|
| /** Sets the value of "margin-top" */
|
| @@ -2441,7 +2441,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2450,7 +2450,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "marquee" */
|
| - String get marquee =>
|
| + String get marquee() =>
|
| getPropertyValue('${_browserPrefix}marquee');
|
|
|
| /** Sets the value of "marquee" */
|
| @@ -2459,7 +2459,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "marquee-direction" */
|
| - String get marqueeDirection =>
|
| + String get marqueeDirection() =>
|
| getPropertyValue('${_browserPrefix}marquee-direction');
|
|
|
| /** Sets the value of "marquee-direction" */
|
| @@ -2468,7 +2468,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "marquee-increment" */
|
| - String get marqueeIncrement =>
|
| + String get marqueeIncrement() =>
|
| getPropertyValue('${_browserPrefix}marquee-increment');
|
|
|
| /** Sets the value of "marquee-increment" */
|
| @@ -2477,7 +2477,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "marquee-repetition" */
|
| - String get marqueeRepetition =>
|
| + String get marqueeRepetition() =>
|
| getPropertyValue('${_browserPrefix}marquee-repetition');
|
|
|
| /** Sets the value of "marquee-repetition" */
|
| @@ -2486,7 +2486,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "marquee-speed" */
|
| - String get marqueeSpeed =>
|
| + String get marqueeSpeed() =>
|
| getPropertyValue('${_browserPrefix}marquee-speed');
|
|
|
| /** Sets the value of "marquee-speed" */
|
| @@ -2495,7 +2495,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "marquee-style" */
|
| - String get marqueeStyle =>
|
| + String get marqueeStyle() =>
|
| getPropertyValue('${_browserPrefix}marquee-style');
|
|
|
| /** Sets the value of "marquee-style" */
|
| @@ -2504,7 +2504,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask" */
|
| - String get mask =>
|
| + String get mask() =>
|
| getPropertyValue('${_browserPrefix}mask');
|
|
|
| /** Sets the value of "mask" */
|
| @@ -2513,7 +2513,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-attachment" */
|
| - String get maskAttachment =>
|
| + String get maskAttachment() =>
|
| getPropertyValue('${_browserPrefix}mask-attachment');
|
|
|
| /** Sets the value of "mask-attachment" */
|
| @@ -2522,7 +2522,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2531,7 +2531,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2540,7 +2540,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2549,7 +2549,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2558,7 +2558,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2567,7 +2567,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2576,7 +2576,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-clip" */
|
| - String get maskClip =>
|
| + String get maskClip() =>
|
| getPropertyValue('${_browserPrefix}mask-clip');
|
|
|
| /** Sets the value of "mask-clip" */
|
| @@ -2585,7 +2585,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-composite" */
|
| - String get maskComposite =>
|
| + String get maskComposite() =>
|
| getPropertyValue('${_browserPrefix}mask-composite');
|
|
|
| /** Sets the value of "mask-composite" */
|
| @@ -2594,7 +2594,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-image" */
|
| - String get maskImage =>
|
| + String get maskImage() =>
|
| getPropertyValue('${_browserPrefix}mask-image');
|
|
|
| /** Sets the value of "mask-image" */
|
| @@ -2603,7 +2603,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-origin" */
|
| - String get maskOrigin =>
|
| + String get maskOrigin() =>
|
| getPropertyValue('${_browserPrefix}mask-origin');
|
|
|
| /** Sets the value of "mask-origin" */
|
| @@ -2612,7 +2612,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-position" */
|
| - String get maskPosition =>
|
| + String get maskPosition() =>
|
| getPropertyValue('${_browserPrefix}mask-position');
|
|
|
| /** Sets the value of "mask-position" */
|
| @@ -2621,7 +2621,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2630,7 +2630,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2639,7 +2639,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-repeat" */
|
| - String get maskRepeat =>
|
| + String get maskRepeat() =>
|
| getPropertyValue('${_browserPrefix}mask-repeat');
|
|
|
| /** Sets the value of "mask-repeat" */
|
| @@ -2648,7 +2648,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2657,7 +2657,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2666,7 +2666,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "mask-size" */
|
| - String get maskSize =>
|
| + String get maskSize() =>
|
| getPropertyValue('${_browserPrefix}mask-size');
|
|
|
| /** Sets the value of "mask-size" */
|
| @@ -2675,7 +2675,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2684,7 +2684,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "max-height" */
|
| - String get maxHeight =>
|
| + String get maxHeight() =>
|
| getPropertyValue('max-height');
|
|
|
| /** Sets the value of "max-height" */
|
| @@ -2693,7 +2693,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2702,7 +2702,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2711,7 +2711,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "max-width" */
|
| - String get maxWidth =>
|
| + String get maxWidth() =>
|
| getPropertyValue('max-width');
|
|
|
| /** Sets the value of "max-width" */
|
| @@ -2720,7 +2720,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "min-height" */
|
| - String get minHeight =>
|
| + String get minHeight() =>
|
| getPropertyValue('min-height');
|
|
|
| /** Sets the value of "min-height" */
|
| @@ -2729,7 +2729,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2738,7 +2738,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2747,7 +2747,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "min-width" */
|
| - String get minWidth =>
|
| + String get minWidth() =>
|
| getPropertyValue('min-width');
|
|
|
| /** Sets the value of "min-width" */
|
| @@ -2756,7 +2756,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "nbsp-mode" */
|
| - String get nbspMode =>
|
| + String get nbspMode() =>
|
| getPropertyValue('${_browserPrefix}nbsp-mode');
|
|
|
| /** Sets the value of "nbsp-mode" */
|
| @@ -2765,7 +2765,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "opacity" */
|
| - String get opacity =>
|
| + String get opacity() =>
|
| getPropertyValue('opacity');
|
|
|
| /** Sets the value of "opacity" */
|
| @@ -2774,7 +2774,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "orphans" */
|
| - String get orphans =>
|
| + String get orphans() =>
|
| getPropertyValue('orphans');
|
|
|
| /** Sets the value of "orphans" */
|
| @@ -2783,7 +2783,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "outline" */
|
| - String get outline =>
|
| + String get outline() =>
|
| getPropertyValue('outline');
|
|
|
| /** Sets the value of "outline" */
|
| @@ -2792,7 +2792,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "outline-color" */
|
| - String get outlineColor =>
|
| + String get outlineColor() =>
|
| getPropertyValue('outline-color');
|
|
|
| /** Sets the value of "outline-color" */
|
| @@ -2801,7 +2801,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "outline-offset" */
|
| - String get outlineOffset =>
|
| + String get outlineOffset() =>
|
| getPropertyValue('outline-offset');
|
|
|
| /** Sets the value of "outline-offset" */
|
| @@ -2810,7 +2810,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "outline-style" */
|
| - String get outlineStyle =>
|
| + String get outlineStyle() =>
|
| getPropertyValue('outline-style');
|
|
|
| /** Sets the value of "outline-style" */
|
| @@ -2819,7 +2819,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "outline-width" */
|
| - String get outlineWidth =>
|
| + String get outlineWidth() =>
|
| getPropertyValue('outline-width');
|
|
|
| /** Sets the value of "outline-width" */
|
| @@ -2828,7 +2828,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "overflow" */
|
| - String get overflow =>
|
| + String get overflow() =>
|
| getPropertyValue('overflow');
|
|
|
| /** Sets the value of "overflow" */
|
| @@ -2837,7 +2837,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "overflow-x" */
|
| - String get overflowX =>
|
| + String get overflowX() =>
|
| getPropertyValue('overflow-x');
|
|
|
| /** Sets the value of "overflow-x" */
|
| @@ -2846,7 +2846,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "overflow-y" */
|
| - String get overflowY =>
|
| + String get overflowY() =>
|
| getPropertyValue('overflow-y');
|
|
|
| /** Sets the value of "overflow-y" */
|
| @@ -2855,7 +2855,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding" */
|
| - String get padding =>
|
| + String get padding() =>
|
| getPropertyValue('padding');
|
|
|
| /** Sets the value of "padding" */
|
| @@ -2864,7 +2864,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-after" */
|
| - String get paddingAfter =>
|
| + String get paddingAfter() =>
|
| getPropertyValue('${_browserPrefix}padding-after');
|
|
|
| /** Sets the value of "padding-after" */
|
| @@ -2873,7 +2873,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-before" */
|
| - String get paddingBefore =>
|
| + String get paddingBefore() =>
|
| getPropertyValue('${_browserPrefix}padding-before');
|
|
|
| /** Sets the value of "padding-before" */
|
| @@ -2882,7 +2882,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-bottom" */
|
| - String get paddingBottom =>
|
| + String get paddingBottom() =>
|
| getPropertyValue('padding-bottom');
|
|
|
| /** Sets the value of "padding-bottom" */
|
| @@ -2891,7 +2891,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-end" */
|
| - String get paddingEnd =>
|
| + String get paddingEnd() =>
|
| getPropertyValue('${_browserPrefix}padding-end');
|
|
|
| /** Sets the value of "padding-end" */
|
| @@ -2900,7 +2900,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-left" */
|
| - String get paddingLeft =>
|
| + String get paddingLeft() =>
|
| getPropertyValue('padding-left');
|
|
|
| /** Sets the value of "padding-left" */
|
| @@ -2909,7 +2909,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-right" */
|
| - String get paddingRight =>
|
| + String get paddingRight() =>
|
| getPropertyValue('padding-right');
|
|
|
| /** Sets the value of "padding-right" */
|
| @@ -2918,7 +2918,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-start" */
|
| - String get paddingStart =>
|
| + String get paddingStart() =>
|
| getPropertyValue('${_browserPrefix}padding-start');
|
|
|
| /** Sets the value of "padding-start" */
|
| @@ -2927,7 +2927,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "padding-top" */
|
| - String get paddingTop =>
|
| + String get paddingTop() =>
|
| getPropertyValue('padding-top');
|
|
|
| /** Sets the value of "padding-top" */
|
| @@ -2936,7 +2936,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "page" */
|
| - String get page =>
|
| + String get page() =>
|
| getPropertyValue('page');
|
|
|
| /** Sets the value of "page" */
|
| @@ -2945,7 +2945,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "page-break-after" */
|
| - String get pageBreakAfter =>
|
| + String get pageBreakAfter() =>
|
| getPropertyValue('page-break-after');
|
|
|
| /** Sets the value of "page-break-after" */
|
| @@ -2954,7 +2954,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "page-break-before" */
|
| - String get pageBreakBefore =>
|
| + String get pageBreakBefore() =>
|
| getPropertyValue('page-break-before');
|
|
|
| /** Sets the value of "page-break-before" */
|
| @@ -2963,7 +2963,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "page-break-inside" */
|
| - String get pageBreakInside =>
|
| + String get pageBreakInside() =>
|
| getPropertyValue('page-break-inside');
|
|
|
| /** Sets the value of "page-break-inside" */
|
| @@ -2972,7 +2972,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "perspective" */
|
| - String get perspective =>
|
| + String get perspective() =>
|
| getPropertyValue('${_browserPrefix}perspective');
|
|
|
| /** Sets the value of "perspective" */
|
| @@ -2981,7 +2981,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "perspective-origin" */
|
| - String get perspectiveOrigin =>
|
| + String get perspectiveOrigin() =>
|
| getPropertyValue('${_browserPrefix}perspective-origin');
|
|
|
| /** Sets the value of "perspective-origin" */
|
| @@ -2990,7 +2990,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -2999,7 +2999,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3008,7 +3008,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "pointer-events" */
|
| - String get pointerEvents =>
|
| + String get pointerEvents() =>
|
| getPropertyValue('pointer-events');
|
|
|
| /** Sets the value of "pointer-events" */
|
| @@ -3017,7 +3017,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "position" */
|
| - String get position =>
|
| + String get position() =>
|
| getPropertyValue('position');
|
|
|
| /** Sets the value of "position" */
|
| @@ -3026,7 +3026,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "quotes" */
|
| - String get quotes =>
|
| + String get quotes() =>
|
| getPropertyValue('quotes');
|
|
|
| /** Sets the value of "quotes" */
|
| @@ -3035,7 +3035,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3044,7 +3044,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3053,7 +3053,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3062,7 +3062,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "region-overflow" */
|
| - String get regionOverflow =>
|
| + String get regionOverflow() =>
|
| getPropertyValue('${_browserPrefix}region-overflow');
|
|
|
| /** Sets the value of "region-overflow" */
|
| @@ -3071,7 +3071,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "resize" */
|
| - String get resize =>
|
| + String get resize() =>
|
| getPropertyValue('resize');
|
|
|
| /** Sets the value of "resize" */
|
| @@ -3080,7 +3080,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "right" */
|
| - String get right =>
|
| + String get right() =>
|
| getPropertyValue('right');
|
|
|
| /** Sets the value of "right" */
|
| @@ -3089,7 +3089,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "rtl-ordering" */
|
| - String get rtlOrdering =>
|
| + String get rtlOrdering() =>
|
| getPropertyValue('${_browserPrefix}rtl-ordering');
|
|
|
| /** Sets the value of "rtl-ordering" */
|
| @@ -3098,7 +3098,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "size" */
|
| - String get size =>
|
| + String get size() =>
|
| getPropertyValue('size');
|
|
|
| /** Sets the value of "size" */
|
| @@ -3107,7 +3107,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "speak" */
|
| - String get speak =>
|
| + String get speak() =>
|
| getPropertyValue('speak');
|
|
|
| /** Sets the value of "speak" */
|
| @@ -3116,7 +3116,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "src" */
|
| - String get src =>
|
| + String get src() =>
|
| getPropertyValue('src');
|
|
|
| /** Sets the value of "src" */
|
| @@ -3125,7 +3125,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "table-layout" */
|
| - String get tableLayout =>
|
| + String get tableLayout() =>
|
| getPropertyValue('table-layout');
|
|
|
| /** Sets the value of "table-layout" */
|
| @@ -3134,7 +3134,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3143,7 +3143,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-align" */
|
| - String get textAlign =>
|
| + String get textAlign() =>
|
| getPropertyValue('text-align');
|
|
|
| /** Sets the value of "text-align" */
|
| @@ -3152,7 +3152,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-combine" */
|
| - String get textCombine =>
|
| + String get textCombine() =>
|
| getPropertyValue('${_browserPrefix}text-combine');
|
|
|
| /** Sets the value of "text-combine" */
|
| @@ -3161,7 +3161,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-decoration" */
|
| - String get textDecoration =>
|
| + String get textDecoration() =>
|
| getPropertyValue('text-decoration');
|
|
|
| /** Sets the value of "text-decoration" */
|
| @@ -3170,7 +3170,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3179,7 +3179,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-emphasis" */
|
| - String get textEmphasis =>
|
| + String get textEmphasis() =>
|
| getPropertyValue('${_browserPrefix}text-emphasis');
|
|
|
| /** Sets the value of "text-emphasis" */
|
| @@ -3188,7 +3188,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3197,7 +3197,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3206,7 +3206,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3215,7 +3215,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3224,7 +3224,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-indent" */
|
| - String get textIndent =>
|
| + String get textIndent() =>
|
| getPropertyValue('text-indent');
|
|
|
| /** Sets the value of "text-indent" */
|
| @@ -3233,7 +3233,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-line-through" */
|
| - String get textLineThrough =>
|
| + String get textLineThrough() =>
|
| getPropertyValue('text-line-through');
|
|
|
| /** Sets the value of "text-line-through" */
|
| @@ -3242,7 +3242,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3251,7 +3251,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3260,7 +3260,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3269,7 +3269,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3278,7 +3278,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-orientation" */
|
| - String get textOrientation =>
|
| + String get textOrientation() =>
|
| getPropertyValue('${_browserPrefix}text-orientation');
|
|
|
| /** Sets the value of "text-orientation" */
|
| @@ -3287,7 +3287,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-overflow" */
|
| - String get textOverflow =>
|
| + String get textOverflow() =>
|
| getPropertyValue('text-overflow');
|
|
|
| /** Sets the value of "text-overflow" */
|
| @@ -3296,7 +3296,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-overline" */
|
| - String get textOverline =>
|
| + String get textOverline() =>
|
| getPropertyValue('text-overline');
|
|
|
| /** Sets the value of "text-overline" */
|
| @@ -3305,7 +3305,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-overline-color" */
|
| - String get textOverlineColor =>
|
| + String get textOverlineColor() =>
|
| getPropertyValue('text-overline-color');
|
|
|
| /** Sets the value of "text-overline-color" */
|
| @@ -3314,7 +3314,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-overline-mode" */
|
| - String get textOverlineMode =>
|
| + String get textOverlineMode() =>
|
| getPropertyValue('text-overline-mode');
|
|
|
| /** Sets the value of "text-overline-mode" */
|
| @@ -3323,7 +3323,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-overline-style" */
|
| - String get textOverlineStyle =>
|
| + String get textOverlineStyle() =>
|
| getPropertyValue('text-overline-style');
|
|
|
| /** Sets the value of "text-overline-style" */
|
| @@ -3332,7 +3332,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-overline-width" */
|
| - String get textOverlineWidth =>
|
| + String get textOverlineWidth() =>
|
| getPropertyValue('text-overline-width');
|
|
|
| /** Sets the value of "text-overline-width" */
|
| @@ -3341,7 +3341,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-rendering" */
|
| - String get textRendering =>
|
| + String get textRendering() =>
|
| getPropertyValue('text-rendering');
|
|
|
| /** Sets the value of "text-rendering" */
|
| @@ -3350,7 +3350,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-security" */
|
| - String get textSecurity =>
|
| + String get textSecurity() =>
|
| getPropertyValue('${_browserPrefix}text-security');
|
|
|
| /** Sets the value of "text-security" */
|
| @@ -3359,7 +3359,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-shadow" */
|
| - String get textShadow =>
|
| + String get textShadow() =>
|
| getPropertyValue('text-shadow');
|
|
|
| /** Sets the value of "text-shadow" */
|
| @@ -3368,7 +3368,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3377,7 +3377,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-stroke" */
|
| - String get textStroke =>
|
| + String get textStroke() =>
|
| getPropertyValue('${_browserPrefix}text-stroke');
|
|
|
| /** Sets the value of "text-stroke" */
|
| @@ -3386,7 +3386,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3395,7 +3395,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3404,7 +3404,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-transform" */
|
| - String get textTransform =>
|
| + String get textTransform() =>
|
| getPropertyValue('text-transform');
|
|
|
| /** Sets the value of "text-transform" */
|
| @@ -3413,7 +3413,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-underline" */
|
| - String get textUnderline =>
|
| + String get textUnderline() =>
|
| getPropertyValue('text-underline');
|
|
|
| /** Sets the value of "text-underline" */
|
| @@ -3422,7 +3422,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-underline-color" */
|
| - String get textUnderlineColor =>
|
| + String get textUnderlineColor() =>
|
| getPropertyValue('text-underline-color');
|
|
|
| /** Sets the value of "text-underline-color" */
|
| @@ -3431,7 +3431,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-underline-mode" */
|
| - String get textUnderlineMode =>
|
| + String get textUnderlineMode() =>
|
| getPropertyValue('text-underline-mode');
|
|
|
| /** Sets the value of "text-underline-mode" */
|
| @@ -3440,7 +3440,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-underline-style" */
|
| - String get textUnderlineStyle =>
|
| + String get textUnderlineStyle() =>
|
| getPropertyValue('text-underline-style');
|
|
|
| /** Sets the value of "text-underline-style" */
|
| @@ -3449,7 +3449,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "text-underline-width" */
|
| - String get textUnderlineWidth =>
|
| + String get textUnderlineWidth() =>
|
| getPropertyValue('text-underline-width');
|
|
|
| /** Sets the value of "text-underline-width" */
|
| @@ -3458,7 +3458,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "top" */
|
| - String get top =>
|
| + String get top() =>
|
| getPropertyValue('top');
|
|
|
| /** Sets the value of "top" */
|
| @@ -3467,7 +3467,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transform" */
|
| - String get transform =>
|
| + String get transform() =>
|
| getPropertyValue('${_browserPrefix}transform');
|
|
|
| /** Sets the value of "transform" */
|
| @@ -3476,7 +3476,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transform-origin" */
|
| - String get transformOrigin =>
|
| + String get transformOrigin() =>
|
| getPropertyValue('${_browserPrefix}transform-origin');
|
|
|
| /** Sets the value of "transform-origin" */
|
| @@ -3485,7 +3485,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3494,7 +3494,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3503,7 +3503,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3512,7 +3512,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transform-style" */
|
| - String get transformStyle =>
|
| + String get transformStyle() =>
|
| getPropertyValue('${_browserPrefix}transform-style');
|
|
|
| /** Sets the value of "transform-style" */
|
| @@ -3521,7 +3521,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transition" */
|
| - String get transition =>
|
| + String get transition() =>
|
| getPropertyValue('${_browserPrefix}transition');
|
|
|
| /** Sets the value of "transition" */
|
| @@ -3530,7 +3530,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transition-delay" */
|
| - String get transitionDelay =>
|
| + String get transitionDelay() =>
|
| getPropertyValue('${_browserPrefix}transition-delay');
|
|
|
| /** Sets the value of "transition-delay" */
|
| @@ -3539,7 +3539,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transition-duration" */
|
| - String get transitionDuration =>
|
| + String get transitionDuration() =>
|
| getPropertyValue('${_browserPrefix}transition-duration');
|
|
|
| /** Sets the value of "transition-duration" */
|
| @@ -3548,7 +3548,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "transition-property" */
|
| - String get transitionProperty =>
|
| + String get transitionProperty() =>
|
| getPropertyValue('${_browserPrefix}transition-property');
|
|
|
| /** Sets the value of "transition-property" */
|
| @@ -3557,7 +3557,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** 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" */
|
| @@ -3566,7 +3566,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "unicode-bidi" */
|
| - String get unicodeBidi =>
|
| + String get unicodeBidi() =>
|
| getPropertyValue('unicode-bidi');
|
|
|
| /** Sets the value of "unicode-bidi" */
|
| @@ -3575,7 +3575,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "unicode-range" */
|
| - String get unicodeRange =>
|
| + String get unicodeRange() =>
|
| getPropertyValue('unicode-range');
|
|
|
| /** Sets the value of "unicode-range" */
|
| @@ -3584,7 +3584,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "user-drag" */
|
| - String get userDrag =>
|
| + String get userDrag() =>
|
| getPropertyValue('${_browserPrefix}user-drag');
|
|
|
| /** Sets the value of "user-drag" */
|
| @@ -3593,7 +3593,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "user-modify" */
|
| - String get userModify =>
|
| + String get userModify() =>
|
| getPropertyValue('${_browserPrefix}user-modify');
|
|
|
| /** Sets the value of "user-modify" */
|
| @@ -3602,7 +3602,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "user-select" */
|
| - String get userSelect =>
|
| + String get userSelect() =>
|
| getPropertyValue('${_browserPrefix}user-select');
|
|
|
| /** Sets the value of "user-select" */
|
| @@ -3611,7 +3611,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "vertical-align" */
|
| - String get verticalAlign =>
|
| + String get verticalAlign() =>
|
| getPropertyValue('vertical-align');
|
|
|
| /** Sets the value of "vertical-align" */
|
| @@ -3620,7 +3620,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "visibility" */
|
| - String get visibility =>
|
| + String get visibility() =>
|
| getPropertyValue('visibility');
|
|
|
| /** Sets the value of "visibility" */
|
| @@ -3629,7 +3629,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "white-space" */
|
| - String get whiteSpace =>
|
| + String get whiteSpace() =>
|
| getPropertyValue('white-space');
|
|
|
| /** Sets the value of "white-space" */
|
| @@ -3638,7 +3638,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "widows" */
|
| - String get widows =>
|
| + String get widows() =>
|
| getPropertyValue('widows');
|
|
|
| /** Sets the value of "widows" */
|
| @@ -3647,7 +3647,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "width" */
|
| - String get width =>
|
| + String get width() =>
|
| getPropertyValue('width');
|
|
|
| /** Sets the value of "width" */
|
| @@ -3656,7 +3656,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "word-break" */
|
| - String get wordBreak =>
|
| + String get wordBreak() =>
|
| getPropertyValue('word-break');
|
|
|
| /** Sets the value of "word-break" */
|
| @@ -3665,7 +3665,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "word-spacing" */
|
| - String get wordSpacing =>
|
| + String get wordSpacing() =>
|
| getPropertyValue('word-spacing');
|
|
|
| /** Sets the value of "word-spacing" */
|
| @@ -3674,7 +3674,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "word-wrap" */
|
| - String get wordWrap =>
|
| + String get wordWrap() =>
|
| getPropertyValue('word-wrap');
|
|
|
| /** Sets the value of "word-wrap" */
|
| @@ -3683,7 +3683,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "wrap-shape" */
|
| - String get wrapShape =>
|
| + String get wrapShape() =>
|
| getPropertyValue('${_browserPrefix}wrap-shape');
|
|
|
| /** Sets the value of "wrap-shape" */
|
| @@ -3692,7 +3692,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "writing-mode" */
|
| - String get writingMode =>
|
| + String get writingMode() =>
|
| getPropertyValue('${_browserPrefix}writing-mode');
|
|
|
| /** Sets the value of "writing-mode" */
|
| @@ -3701,7 +3701,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "z-index" */
|
| - String get zIndex =>
|
| + String get zIndex() =>
|
| getPropertyValue('z-index');
|
|
|
| /** Sets the value of "z-index" */
|
| @@ -3710,7 +3710,7 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
| }
|
|
|
| /** Gets the value of "zoom" */
|
| - String get zoom =>
|
| + String get zoom() =>
|
| getPropertyValue('zoom');
|
|
|
| /** Sets the value of "zoom" */
|
| @@ -3829,7 +3829,7 @@ class _CanvasElementImpl extends _ElementImpl implements CanvasElement native "*
|
| String toDataURL(String type, [num quality]) native;
|
|
|
|
|
| - _CanvasRenderingContext2DImpl get context2d => getContext('2d');
|
| + _CanvasRenderingContext2DImpl get context2d() => getContext('2d');
|
| }
|
|
|
| class _CanvasGradientImpl implements CanvasGradient native "*CanvasGradient" {
|
| @@ -4225,7 +4225,7 @@ class _DListElementImpl extends _ElementImpl implements DListElement native "*HT
|
|
|
| class _DOMApplicationCacheImpl extends _EventTargetImpl implements DOMApplicationCache native "*DOMApplicationCache" {
|
|
|
| - _DOMApplicationCacheEventsImpl get on =>
|
| + _DOMApplicationCacheEventsImpl get on() =>
|
| new _DOMApplicationCacheEventsImpl(this);
|
|
|
| static const int CHECKING = 2;
|
| @@ -4258,21 +4258,21 @@ class _DOMApplicationCacheImpl extends _EventTargetImpl implements DOMApplicatio
|
| 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'];
|
| }
|
|
|
| class _DOMErrorImpl implements DOMError native "*DOMError" {
|
| @@ -4680,7 +4680,7 @@ class _DatabaseSyncImpl implements DatabaseSync native "*DatabaseSync" {
|
|
|
| class _DedicatedWorkerContextImpl extends _WorkerContextImpl implements DedicatedWorkerContext native "*DedicatedWorkerContext" {
|
|
|
| - _DedicatedWorkerContextEventsImpl get on =>
|
| + _DedicatedWorkerContextEventsImpl get on() =>
|
| new _DedicatedWorkerContextEventsImpl(this);
|
|
|
| void postMessage(Object message, [List messagePorts]) native;
|
| @@ -4691,7 +4691,7 @@ class _DedicatedWorkerContextImpl extends _WorkerContextImpl implements Dedicate
|
| class _DedicatedWorkerContextEventsImpl extends _WorkerContextEventsImpl implements DedicatedWorkerContextEvents {
|
| _DedicatedWorkerContextEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get message => this['message'];
|
| + EventListenerList get message() => this['message'];
|
| }
|
|
|
| class _DelayNodeImpl extends _AudioNodeImpl implements DelayNode native "*DelayNode" {
|
| @@ -4824,7 +4824,7 @@ class _DocumentImpl extends _NodeImpl implements Document
|
| {
|
|
|
|
|
| - _DocumentEventsImpl get on =>
|
| + _DocumentEventsImpl get on() =>
|
| new _DocumentEventsImpl(this);
|
|
|
| final _ElementImpl activeElement;
|
| @@ -4835,7 +4835,7 @@ class _DocumentImpl extends _NodeImpl implements Document
|
|
|
| String cookie;
|
|
|
| - _WindowImpl get window native "return this.defaultView;";
|
| + _WindowImpl get window() native "return this.defaultView;";
|
|
|
| final _ElementImpl documentElement;
|
|
|
| @@ -4965,103 +4965,103 @@ class _DocumentImpl extends _NodeImpl implements Document
|
| 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) 2011, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -5077,11 +5077,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;
|
| @@ -5156,7 +5156,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) =>
|
| @@ -5196,13 +5196,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 native "*DocumentFragment" {
|
| ElementList _elements;
|
|
|
| - ElementList get elements {
|
| + ElementList get elements() {
|
| if (_elements == null) {
|
| _elements = new FilteredElementList(this);
|
| }
|
| @@ -5223,13 +5223,13 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native
|
| 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?
|
| @@ -5278,7 +5278,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native
|
| this.insertAdjacentHTML('beforeend', text);
|
| }
|
|
|
| - Future<ElementRect> get rect {
|
| + Future<ElementRect> get rect() {
|
| return _createMeasurementFuture(() => const EmptyElementRect(),
|
| new Completer<ElementRect>());
|
| }
|
| @@ -5286,29 +5286,29 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native
|
| // 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();
|
| @@ -5347,7 +5347,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native
|
| "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.");
|
| }
|
| @@ -5372,7 +5372,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native
|
| "ID can't be set for document fragments.");
|
| }
|
|
|
| - String get lang {
|
| + String get lang() {
|
| throw new UnsupportedOperationException(
|
| "Document fragments don't support language.");
|
| }
|
| @@ -5423,7 +5423,7 @@ class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native
|
| }
|
|
|
|
|
| - _ElementEventsImpl get on =>
|
| + _ElementEventsImpl get on() =>
|
| new _ElementEventsImpl(this);
|
|
|
| _ElementImpl $dom_querySelector(String selectors) native "querySelector";
|
| @@ -5491,7 +5491,7 @@ class _ChildrenElementList implements ElementList {
|
| return output;
|
| }
|
|
|
| - _ElementImpl get first {
|
| + _ElementImpl get first() {
|
| return _element.$dom_firstElementChild;
|
| }
|
|
|
| @@ -5541,7 +5541,7 @@ class _ChildrenElementList implements ElementList {
|
| return _element.$dom_firstElementChild == null;
|
| }
|
|
|
| - int get length {
|
| + int get length() {
|
| return _childElements.length;
|
| }
|
|
|
| @@ -5629,7 +5629,7 @@ class _FrozenElementList implements ElementList {
|
|
|
| _FrozenElementList._wrap(this._nodeList);
|
|
|
| - Element get first {
|
| + Element get first() {
|
| return _nodeList[0];
|
| }
|
|
|
| @@ -5675,7 +5675,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];
|
|
|
| @@ -5850,7 +5850,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;
|
| }
|
|
|
| @@ -5925,7 +5925,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;
|
| @@ -5963,9 +5963,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
|
|
|
| @@ -6078,8 +6078,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);
|
|
|
| @@ -6124,10 +6124,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);
|
| @@ -6142,7 +6142,7 @@ class _ElementImpl extends _NodeImpl implements Element native "*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;
|
| @@ -6158,14 +6158,14 @@ class _ElementImpl extends _NodeImpl implements Element native "*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;
|
| @@ -6173,7 +6173,7 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
|
| classSet.addAll(value);
|
| }
|
|
|
| - Map<String, String> get dataAttributes =>
|
| + Map<String, String> get dataAttributes() =>
|
| new _DataAttributeMap(attributes);
|
|
|
| void set dataAttributes(Map<String, String> value) {
|
| @@ -6184,13 +6184,13 @@ class _ElementImpl extends _NodeImpl implements Element native "*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('');
|
| }
|
| @@ -6271,10 +6271,10 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
|
| }
|
|
|
|
|
| - _ElementEventsImpl get on =>
|
| + _ElementEventsImpl get on() =>
|
| new _ElementEventsImpl(this);
|
|
|
| - _HTMLCollectionImpl get $dom_children native "return this.children;";
|
| + _HTMLCollectionImpl get $dom_children() native "return this.children;";
|
|
|
| String contentEditable;
|
|
|
| @@ -6308,51 +6308,51 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
|
|
|
| static const int ALLOW_KEYBOARD_INPUT = 1;
|
|
|
| - int get $dom_childElementCount native "return this.childElementCount;";
|
| + int get $dom_childElementCount() native "return this.childElementCount;";
|
|
|
| - String get $dom_className native "return this.className;";
|
| + String get $dom_className() native "return this.className;";
|
|
|
| void set $dom_className(String value) native "this.className = value;";
|
|
|
| - int get $dom_clientHeight native "return this.clientHeight;";
|
| + int get $dom_clientHeight() native "return this.clientHeight;";
|
|
|
| - int get $dom_clientLeft native "return this.clientLeft;";
|
| + int get $dom_clientLeft() native "return this.clientLeft;";
|
|
|
| - int get $dom_clientTop native "return this.clientTop;";
|
| + int get $dom_clientTop() native "return this.clientTop;";
|
|
|
| - int get $dom_clientWidth native "return this.clientWidth;";
|
| + int get $dom_clientWidth() native "return this.clientWidth;";
|
|
|
| final Map<String, String> dataset;
|
|
|
| - _ElementImpl get $dom_firstElementChild native "return this.firstElementChild;";
|
| + _ElementImpl get $dom_firstElementChild() native "return this.firstElementChild;";
|
|
|
| - _ElementImpl get $dom_lastElementChild native "return this.lastElementChild;";
|
| + _ElementImpl get $dom_lastElementChild() native "return this.lastElementChild;";
|
|
|
| final _ElementImpl nextElementSibling;
|
|
|
| - int get $dom_offsetHeight native "return this.offsetHeight;";
|
| + int get $dom_offsetHeight() native "return this.offsetHeight;";
|
|
|
| - int get $dom_offsetLeft native "return this.offsetLeft;";
|
| + int get $dom_offsetLeft() native "return this.offsetLeft;";
|
|
|
| final _ElementImpl offsetParent;
|
|
|
| - int get $dom_offsetTop native "return this.offsetTop;";
|
| + int get $dom_offsetTop() native "return this.offsetTop;";
|
|
|
| - int get $dom_offsetWidth native "return this.offsetWidth;";
|
| + int get $dom_offsetWidth() native "return this.offsetWidth;";
|
|
|
| final _ElementImpl previousElementSibling;
|
|
|
| - int get $dom_scrollHeight native "return this.scrollHeight;";
|
| + int get $dom_scrollHeight() native "return this.scrollHeight;";
|
|
|
| - int get $dom_scrollLeft native "return this.scrollLeft;";
|
| + int get $dom_scrollLeft() native "return this.scrollLeft;";
|
|
|
| void set $dom_scrollLeft(int value) native "this.scrollLeft = value;";
|
|
|
| - int get $dom_scrollTop native "return this.scrollTop;";
|
| + int get $dom_scrollTop() native "return this.scrollTop;";
|
|
|
| void set $dom_scrollTop(int value) native "this.scrollTop = value;";
|
|
|
| - int get $dom_scrollWidth native "return this.scrollWidth;";
|
| + int get $dom_scrollWidth() native "return this.scrollWidth;";
|
|
|
| final _CSSStyleDeclarationImpl style;
|
|
|
| @@ -6464,101 +6464,101 @@ class _ElementFactoryProvider {
|
| 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'];
|
| }
|
|
|
| class _EmbedElementImpl extends _ElementImpl implements EmbedElement native "*HTMLEmbedElement" {
|
| @@ -6753,7 +6753,7 @@ class _EventExceptionImpl implements EventException native "*EventException" {
|
|
|
| class _EventSourceImpl extends _EventTargetImpl implements EventSource native "*EventSource" {
|
|
|
| - _EventSourceEventsImpl get on =>
|
| + _EventSourceEventsImpl get on() =>
|
| new _EventSourceEventsImpl(this);
|
|
|
| static const int CLOSED = 2;
|
| @@ -6780,11 +6780,11 @@ class _EventSourceImpl extends _EventTargetImpl implements EventSource native "*
|
| 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
|
| @@ -6844,7 +6844,7 @@ class _EventListenerListImpl implements EventListenerList {
|
|
|
| class _EventTargetImpl implements EventTarget native "*EventTarget" {
|
|
|
| - Events get on => new _EventsImpl(this);
|
| + Events get on() => new _EventsImpl(this);
|
|
|
| void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "addEventListener";
|
|
|
| @@ -7055,7 +7055,7 @@ class _FileListImpl implements FileList, JavaScriptIndexingBehavior native "*Fil
|
|
|
| class _FileReaderImpl extends _EventTargetImpl implements FileReader native "*FileReader" {
|
|
|
| - _FileReaderEventsImpl get on =>
|
| + _FileReaderEventsImpl get on() =>
|
| new _FileReaderEventsImpl(this);
|
|
|
| static const int DONE = 2;
|
| @@ -7090,17 +7090,17 @@ class _FileReaderImpl extends _EventTargetImpl implements FileReader native "*Fi
|
| 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'];
|
| }
|
|
|
| class _FileReaderSyncImpl implements FileReaderSync native "*FileReaderSync" {
|
| @@ -7116,7 +7116,7 @@ class _FileReaderSyncImpl implements FileReaderSync native "*FileReaderSync" {
|
|
|
| class _FileWriterImpl extends _EventTargetImpl implements FileWriter native "*FileWriter" {
|
|
|
| - _FileWriterEventsImpl get on =>
|
| + _FileWriterEventsImpl get on() =>
|
| new _FileWriterEventsImpl(this);
|
|
|
| static const int DONE = 2;
|
| @@ -7151,17 +7151,17 @@ class _FileWriterImpl extends _EventTargetImpl implements FileWriter native "*Fi
|
| 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'];
|
| }
|
|
|
| class _FileWriterSyncImpl implements FileWriterSync native "*FileWriterSync" {
|
| @@ -7435,7 +7435,7 @@ class _FrameElementImpl extends _ElementImpl implements FrameElement native "*HT
|
|
|
| class _FrameSetElementImpl extends _ElementImpl implements FrameSetElement native "*HTMLFrameSetElement" {
|
|
|
| - _FrameSetElementEventsImpl get on =>
|
| + _FrameSetElementEventsImpl get on() =>
|
| new _FrameSetElementEventsImpl(this);
|
|
|
| String cols;
|
| @@ -7446,31 +7446,31 @@ class _FrameSetElementImpl extends _ElementImpl implements FrameSetElement nativ
|
| 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'];
|
| }
|
|
|
| class _GamepadImpl implements Gamepad native "*Gamepad" {
|
| @@ -7625,7 +7625,7 @@ class _HTMLCollectionImpl implements HTMLCollection, JavaScriptIndexingBehavior
|
| class _HTMLOptionsCollectionImpl extends _HTMLCollectionImpl implements HTMLOptionsCollection native "*HTMLOptionsCollection" {
|
|
|
| // Shadowing definition.
|
| - int get length native "return this.length;";
|
| + int get length() native "return this.length;";
|
|
|
| void set length(int value) native "this.length = value;";
|
|
|
| @@ -7675,7 +7675,7 @@ class _HtmlElementImpl extends _ElementImpl implements HtmlElement native "*HTML
|
|
|
| class _HttpRequestImpl extends _EventTargetImpl implements HttpRequest native "*XMLHttpRequest" {
|
|
|
| - _HttpRequestEventsImpl get on =>
|
| + _HttpRequestEventsImpl get on() =>
|
| new _HttpRequestEventsImpl(this);
|
|
|
| static const int DONE = 4;
|
| @@ -7730,19 +7730,19 @@ class _HttpRequestImpl extends _EventTargetImpl implements HttpRequest native "*
|
| 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'];
|
| }
|
|
|
| class _HttpRequestExceptionImpl implements HttpRequestException native "*XMLHttpRequestException" {
|
| @@ -7769,7 +7769,7 @@ class _HttpRequestProgressEventImpl extends _ProgressEventImpl implements HttpRe
|
|
|
| class _HttpRequestUploadImpl extends _EventTargetImpl implements HttpRequestUpload native "*XMLHttpRequestUpload" {
|
|
|
| - _HttpRequestUploadEventsImpl get on =>
|
| + _HttpRequestUploadEventsImpl get on() =>
|
| new _HttpRequestUploadEventsImpl(this);
|
|
|
| void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "addEventListener";
|
| @@ -7782,17 +7782,17 @@ class _HttpRequestUploadImpl extends _EventTargetImpl implements HttpRequestUplo
|
| 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'];
|
| }
|
|
|
| class _IDBAnyImpl implements IDBAny native "*IDBAny" {
|
| @@ -7810,11 +7810,11 @@ class _IDBCursorImpl implements IDBCursor native "*IDBCursor" {
|
|
|
| final String direction;
|
|
|
| - Dynamic get key => _convertNativeToDart_IDBKey(this._key);
|
| - Dynamic get _key native "return this.key;";
|
| + Dynamic get key() => _convertNativeToDart_IDBKey(this._key);
|
| + Dynamic get _key() native "return this.key;";
|
|
|
| - Dynamic get primaryKey => _convertNativeToDart_IDBKey(this._primaryKey);
|
| - Dynamic get _primaryKey native "return this.primaryKey;";
|
| + Dynamic get primaryKey() => _convertNativeToDart_IDBKey(this._primaryKey);
|
| + Dynamic get _primaryKey() native "return this.primaryKey;";
|
|
|
| final Dynamic source;
|
|
|
| @@ -7843,8 +7843,8 @@ class _IDBCursorImpl implements IDBCursor native "*IDBCursor" {
|
|
|
| class _IDBCursorWithValueImpl extends _IDBCursorImpl implements IDBCursorWithValue native "*IDBCursorWithValue" {
|
|
|
| - Dynamic get value => _convertNativeToDart_IDBAny(this._value);
|
| - Dynamic get _value native "return this.value;";
|
| + Dynamic get value() => _convertNativeToDart_IDBAny(this._value);
|
| + Dynamic get _value() native "return this.value;";
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -7893,7 +7893,7 @@ class _IDBDatabaseImpl extends _EventTargetImpl implements IDBDatabase native "*
|
| static bool _hasNumericMode(txn) native 'return typeof(txn.mode) === "number"';
|
|
|
|
|
| - _IDBDatabaseEventsImpl get on =>
|
| + _IDBDatabaseEventsImpl get on() =>
|
| new _IDBDatabaseEventsImpl(this);
|
|
|
| final String name;
|
| @@ -7932,11 +7932,11 @@ var _transaction_fn; // Assigned one of the static methods.
|
| 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'];
|
| }
|
|
|
| class _IDBDatabaseExceptionImpl implements IDBDatabaseException native "*IDBDatabaseException" {
|
| @@ -8157,13 +8157,13 @@ class _IDBKeyImpl implements IDBKey native "*IDBKey" {
|
|
|
| class _IDBKeyRangeImpl implements IDBKeyRange native "*IDBKeyRange" {
|
|
|
| - Dynamic get lower => _convertNativeToDart_IDBKey(this._lower);
|
| - Dynamic get _lower native "return this.lower;";
|
| + Dynamic get lower() => _convertNativeToDart_IDBKey(this._lower);
|
| + Dynamic get _lower() native "return this.lower;";
|
|
|
| final bool lowerOpen;
|
|
|
| - Dynamic get upper => _convertNativeToDart_IDBKey(this._upper);
|
| - Dynamic get _upper native "return this.upper;";
|
| + Dynamic get upper() => _convertNativeToDart_IDBKey(this._upper);
|
| + Dynamic get _upper() native "return this.upper;";
|
|
|
| final bool upperOpen;
|
| }
|
| @@ -8336,7 +8336,7 @@ class _IDBObjectStoreImpl implements IDBObjectStore native "*IDBObjectStore" {
|
|
|
| class _IDBOpenDBRequestImpl extends _IDBRequestImpl implements IDBOpenDBRequest native "*IDBOpenDBRequest" {
|
|
|
| - _IDBOpenDBRequestEventsImpl get on =>
|
| + _IDBOpenDBRequestEventsImpl get on() =>
|
| new _IDBOpenDBRequestEventsImpl(this);
|
|
|
| // From EventTarget
|
| @@ -8351,14 +8351,14 @@ class _IDBOpenDBRequestImpl extends _IDBRequestImpl implements IDBOpenDBRequest
|
| 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'];
|
| }
|
|
|
| class _IDBRequestImpl extends _EventTargetImpl implements IDBRequest native "*IDBRequest" {
|
|
|
| - _IDBRequestEventsImpl get on =>
|
| + _IDBRequestEventsImpl get on() =>
|
| new _IDBRequestEventsImpl(this);
|
|
|
| final _DOMErrorImpl error;
|
| @@ -8367,8 +8367,8 @@ class _IDBRequestImpl extends _EventTargetImpl implements IDBRequest native "*ID
|
|
|
| final String readyState;
|
|
|
| - Dynamic get result => _convertNativeToDart_IDBAny(this._result);
|
| - Dynamic get _result native "return this.result;";
|
| + Dynamic get result() => _convertNativeToDart_IDBAny(this._result);
|
| + Dynamic get _result() native "return this.result;";
|
|
|
| final Dynamic source;
|
|
|
| @@ -8386,14 +8386,14 @@ class _IDBRequestImpl extends _EventTargetImpl implements IDBRequest native "*ID
|
| 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'];
|
| }
|
|
|
| class _IDBTransactionImpl extends _EventTargetImpl implements IDBTransaction native "*IDBTransaction" {
|
|
|
| - _IDBTransactionEventsImpl get on =>
|
| + _IDBTransactionEventsImpl get on() =>
|
| new _IDBTransactionEventsImpl(this);
|
|
|
| static const int READ_ONLY = 0;
|
| @@ -8422,11 +8422,11 @@ class _IDBTransactionImpl extends _EventTargetImpl implements IDBTransaction nat
|
| 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'];
|
| }
|
|
|
| class _IDBUpgradeNeededEventImpl extends _EventImpl implements IDBUpgradeNeededEvent native "*IDBUpgradeNeededEvent" {
|
| @@ -8443,7 +8443,7 @@ class _IDBVersionChangeEventImpl extends _EventImpl implements IDBVersionChangeE
|
|
|
| class _IDBVersionChangeRequestImpl extends _IDBRequestImpl implements IDBVersionChangeRequest native "*IDBVersionChangeRequest" {
|
|
|
| - _IDBVersionChangeRequestEventsImpl get on =>
|
| + _IDBVersionChangeRequestEventsImpl get on() =>
|
| new _IDBVersionChangeRequestEventsImpl(this);
|
|
|
| // From EventTarget
|
| @@ -8458,7 +8458,7 @@ class _IDBVersionChangeRequestImpl extends _IDBRequestImpl implements IDBVersion
|
| 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
|
| @@ -8493,10 +8493,10 @@ class _IFrameElementImpl extends _ElementImpl implements IFrameElement native "*
|
| _SVGDocumentImpl getSVGDocument() native;
|
|
|
|
|
| - Window get _contentWindow native "return this.contentWindow;";
|
| + Window get _contentWindow() native "return this.contentWindow;";
|
|
|
| // Override contentWindow to return secure wrapper.
|
| - Window get contentWindow {
|
| + Window get contentWindow() {
|
| return _DOMWindowCrossFrameImpl._createSafe(_contentWindow);
|
| }
|
| }
|
| @@ -8560,7 +8560,7 @@ class _ImageElementImpl extends _ElementImpl implements ImageElement native "*HT
|
|
|
| class _InputElementImpl extends _ElementImpl implements InputElement native "*HTMLInputElement" {
|
|
|
| - _InputElementEventsImpl get on =>
|
| + _InputElementEventsImpl get on() =>
|
| new _InputElementEventsImpl(this);
|
|
|
| String accept;
|
| @@ -8677,7 +8677,7 @@ class _InputElementImpl extends _ElementImpl implements InputElement native "*HT
|
| class _InputElementEventsImpl extends _ElementEventsImpl implements InputElementEvents {
|
| _InputElementEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get speechChange => this['webkitSpeechChange'];
|
| + EventListenerList get speechChange() => this['webkitSpeechChange'];
|
| }
|
|
|
| class _Int16ArrayImpl extends _ArrayBufferViewImpl implements Int16Array, List<int>, JavaScriptIndexingBehavior native "*Int16Array" {
|
| @@ -8955,7 +8955,7 @@ class _Int8ArrayImpl extends _ArrayBufferViewImpl implements Int8Array, List<int
|
|
|
| class _JavaScriptAudioNodeImpl extends _AudioNodeImpl implements JavaScriptAudioNode native "*JavaScriptAudioNode" {
|
|
|
| - _JavaScriptAudioNodeEventsImpl get on =>
|
| + _JavaScriptAudioNodeEventsImpl get on() =>
|
| new _JavaScriptAudioNodeEventsImpl(this);
|
|
|
| final int bufferSize;
|
| @@ -8972,7 +8972,7 @@ class _JavaScriptAudioNodeImpl extends _AudioNodeImpl implements JavaScriptAudio
|
| class _JavaScriptAudioNodeEventsImpl extends _EventsImpl implements JavaScriptAudioNodeEvents {
|
| _JavaScriptAudioNodeEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get audioProcess => this['audioprocess'];
|
| + EventListenerList get audioProcess() => this['audioprocess'];
|
| }
|
|
|
| class _JavaScriptCallFrameImpl implements JavaScriptCallFrame native "*JavaScriptCallFrame" {
|
| @@ -9221,7 +9221,7 @@ class _MediaControllerImpl extends _EventTargetImpl implements MediaController n
|
|
|
| class _MediaElementImpl extends _ElementImpl implements MediaElement native "*HTMLMediaElement" {
|
|
|
| - _MediaElementEventsImpl get on =>
|
| + _MediaElementEventsImpl get on() =>
|
| new _MediaElementEventsImpl(this);
|
|
|
| static const int HAVE_CURRENT_DATA = 2;
|
| @@ -9326,55 +9326,55 @@ class _MediaElementImpl extends _ElementImpl implements MediaElement native "*HT
|
| 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'];
|
| }
|
|
|
| class _MediaElementAudioSourceNodeImpl extends _AudioSourceNodeImpl implements MediaElementAudioSourceNode native "*MediaElementAudioSourceNode" {
|
| @@ -9560,7 +9560,7 @@ class _MediaSourceImpl extends _EventTargetImpl implements MediaSource native "*
|
|
|
| class _MediaStreamImpl extends _EventTargetImpl implements MediaStream native "*MediaStream" {
|
|
|
| - _MediaStreamEventsImpl get on =>
|
| + _MediaStreamEventsImpl get on() =>
|
| new _MediaStreamEventsImpl(this);
|
|
|
| static const int ENDED = 2;
|
| @@ -9585,7 +9585,7 @@ class _MediaStreamImpl extends _EventTargetImpl implements MediaStream native "*
|
| class _MediaStreamEventsImpl extends _EventsImpl implements MediaStreamEvents {
|
| _MediaStreamEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get ended => this['ended'];
|
| + EventListenerList get ended() => this['ended'];
|
| }
|
|
|
| class _MediaStreamAudioSourceNodeImpl extends _AudioSourceNodeImpl implements MediaStreamAudioSourceNode native "*MediaStreamAudioSourceNode" {
|
| @@ -9607,7 +9607,7 @@ class _MediaStreamListImpl implements MediaStreamList native "*MediaStreamList"
|
|
|
| class _MediaStreamTrackImpl extends _EventTargetImpl implements MediaStreamTrack native "*MediaStreamTrack" {
|
|
|
| - _MediaStreamTrackEventsImpl get on =>
|
| + _MediaStreamTrackEventsImpl get on() =>
|
| new _MediaStreamTrackEventsImpl(this);
|
|
|
| static const int ENDED = 2;
|
| @@ -9634,11 +9634,11 @@ class _MediaStreamTrackImpl extends _EventTargetImpl implements MediaStreamTrack
|
| 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'];
|
| }
|
|
|
| class _MediaStreamTrackEventImpl extends _EventImpl implements MediaStreamTrackEvent native "*MediaStreamTrackEvent" {
|
| @@ -9648,7 +9648,7 @@ class _MediaStreamTrackEventImpl extends _EventImpl implements MediaStreamTrackE
|
|
|
| class _MediaStreamTrackListImpl extends _EventTargetImpl implements MediaStreamTrackList native "*MediaStreamTrackList" {
|
|
|
| - _MediaStreamTrackListEventsImpl get on =>
|
| + _MediaStreamTrackListEventsImpl get on() =>
|
| new _MediaStreamTrackListEventsImpl(this);
|
|
|
| final int length;
|
| @@ -9669,9 +9669,9 @@ class _MediaStreamTrackListImpl extends _EventTargetImpl implements MediaStreamT
|
| 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'];
|
| }
|
|
|
| class _MemoryInfoImpl implements MemoryInfo native "*MemoryInfo" {
|
| @@ -9714,7 +9714,7 @@ class _MessageEventImpl extends _EventImpl implements MessageEvent native "*Mess
|
|
|
| class _MessagePortImpl extends _EventTargetImpl implements MessagePort native "*MessagePort" {
|
|
|
| - _MessagePortEventsImpl get on =>
|
| + _MessagePortEventsImpl get on() =>
|
| new _MessagePortEventsImpl(this);
|
|
|
| void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "addEventListener";
|
| @@ -9735,7 +9735,7 @@ class _MessagePortImpl extends _EventTargetImpl implements MessagePort native "*
|
| class _MessagePortEventsImpl extends _EventsImpl implements MessagePortEvents {
|
| _MessagePortEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get message => this['message'];
|
| + EventListenerList get message() => this['message'];
|
| }
|
|
|
| class _MetaElementImpl extends _ElementImpl implements MetaElement native "*HTMLMetaElement" {
|
| @@ -9822,7 +9822,7 @@ class _MouseEventImpl extends _UIEventImpl implements MouseEvent native "*MouseE
|
| void $dom_initMouseEvent(String type, bool canBubble, bool cancelable, _WindowImpl view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetImpl relatedTarget) native "initMouseEvent";
|
|
|
|
|
| - int get offsetX {
|
| + int get offsetX() {
|
| if (JS('bool', '!!this.offsetX')) {
|
| return this._offsetX;
|
| } else {
|
| @@ -9836,7 +9836,7 @@ class _MouseEventImpl extends _UIEventImpl implements MouseEvent native "*MouseE
|
| }
|
| }
|
|
|
| - int get offsetY {
|
| + int get offsetY() {
|
| if (JS('bool', '!!this.offsetY')) {
|
| return this._offsetY;
|
| } else {
|
| @@ -9850,8 +9850,8 @@ class _MouseEventImpl extends _UIEventImpl implements MouseEvent native "*MouseE
|
| }
|
| }
|
|
|
| - int get _offsetX native 'return this.offsetX';
|
| - int get _offsetY native 'return this.offsetY';
|
| + int get _offsetX() native 'return this.offsetX';
|
| + int get _offsetY() native 'return this.offsetY';
|
| }
|
|
|
| class _MutationEventImpl extends _EventImpl implements MutationEvent native "*MutationEvent" {
|
| @@ -10150,7 +10150,7 @@ class _ChildNodeListLazy implements NodeList {
|
| _ChildNodeListLazy(this._this);
|
|
|
|
|
| - _NodeImpl get first => JS('_NodeImpl', '#.firstChild', _this);
|
| + _NodeImpl get first() => JS('_NodeImpl', '#.firstChild', _this);
|
| _NodeImpl last() => JS('_NodeImpl', '#.lastChild', _this);
|
|
|
| void add(_NodeImpl value) {
|
| @@ -10235,13 +10235,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 native "*Node" {
|
| - _ChildNodeListLazy get nodes {
|
| + _ChildNodeListLazy get nodes() {
|
| return new _ChildNodeListLazy(this);
|
| }
|
|
|
| @@ -10311,25 +10311,25 @@ class _NodeImpl extends _EventTargetImpl implements Node native "*Node" {
|
|
|
| static const int TEXT_NODE = 3;
|
|
|
| - _NamedNodeMapImpl get $dom_attributes native "return this.attributes;";
|
| + _NamedNodeMapImpl get $dom_attributes() native "return this.attributes;";
|
|
|
| - _NodeListImpl get $dom_childNodes native "return this.childNodes;";
|
| + _NodeListImpl get $dom_childNodes() native "return this.childNodes;";
|
|
|
| - _NodeImpl get $dom_firstChild native "return this.firstChild;";
|
| + _NodeImpl get $dom_firstChild() native "return this.firstChild;";
|
|
|
| - _NodeImpl get $dom_lastChild native "return this.lastChild;";
|
| + _NodeImpl get $dom_lastChild() native "return this.lastChild;";
|
|
|
| - _NodeImpl get nextNode native "return this.nextSibling;";
|
| + _NodeImpl get nextNode() native "return this.nextSibling;";
|
|
|
| - int get $dom_nodeType native "return this.nodeType;";
|
| + int get $dom_nodeType() native "return this.nodeType;";
|
|
|
| - _DocumentImpl get document native "return this.ownerDocument;";
|
| + _DocumentImpl get document() native "return this.ownerDocument;";
|
|
|
| - _NodeImpl get parent native "return this.parentNode;";
|
| + _NodeImpl get parent() native "return this.parentNode;";
|
|
|
| - _NodeImpl get previousNode native "return this.previousSibling;";
|
| + _NodeImpl get previousNode() native "return this.previousSibling;";
|
|
|
| - String get text native "return this.textContent;";
|
| + String get text() native "return this.textContent;";
|
|
|
| void set text(String value) native "this.textContent = value;";
|
|
|
| @@ -10437,7 +10437,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];
|
|
|
| @@ -10476,7 +10476,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];
|
| }
|
|
|
| /**
|
| @@ -10566,7 +10566,7 @@ class _NodeListImpl implements NodeList, JavaScriptIndexingBehavior native "*Nod
|
| _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]) {
|
| @@ -10601,7 +10601,7 @@ class _NotationImpl extends _NodeImpl implements Notation native "*Notation" {
|
|
|
| class _NotificationImpl extends _EventTargetImpl implements Notification native "*Notification" {
|
|
|
| - _NotificationEventsImpl get on =>
|
| + _NotificationEventsImpl get on() =>
|
| new _NotificationEventsImpl(this);
|
|
|
| String dir;
|
| @@ -10628,15 +10628,15 @@ class _NotificationImpl extends _EventTargetImpl implements Notification native
|
| 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'];
|
| }
|
|
|
| class _NotificationCenterImpl implements NotificationCenter native "*NotificationCenter" {
|
| @@ -10867,7 +10867,7 @@ class _ParamElementImpl extends _ElementImpl implements ParamElement native "*HT
|
|
|
| class _PeerConnection00Impl extends _EventTargetImpl implements PeerConnection00 native "*PeerConnection00" {
|
|
|
| - _PeerConnection00EventsImpl get on =>
|
| + _PeerConnection00EventsImpl get on() =>
|
| new _PeerConnection00EventsImpl(this);
|
|
|
| static const int ACTIVE = 2;
|
| @@ -10974,15 +10974,15 @@ class _PeerConnection00Impl extends _EventTargetImpl implements PeerConnection00
|
| 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'];
|
| }
|
|
|
| class _PerformanceImpl extends _EventTargetImpl implements Performance native "*Performance" {
|
| @@ -11376,7 +11376,7 @@ class _SVGAElementImpl extends _SVGElementImpl implements SVGAElement native "*S
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -11605,7 +11605,7 @@ class _SVGCircleElementImpl extends _SVGElementImpl implements SVGCircleElement
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -11657,7 +11657,7 @@ class _SVGClipPathElementImpl extends _SVGElementImpl implements SVGClipPathElem
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -11782,7 +11782,7 @@ class _SVGDefsElementImpl extends _SVGElementImpl implements SVGDefsElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -11818,7 +11818,7 @@ class _SVGDescElementImpl extends _SVGElementImpl implements SVGDescElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -11847,14 +11847,14 @@ class _AttributeClassSet extends _CssClassSet {
|
| }
|
|
|
| class _SVGElementImpl extends _ElementImpl implements SVGElement native "*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;
|
| @@ -11862,14 +11862,14 @@ class _SVGElementImpl extends _ElementImpl implements SVGElement native "*SVGEle
|
| 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);
|
| @@ -11886,7 +11886,7 @@ class _SVGElementImpl extends _ElementImpl implements SVGElement native "*SVGEle
|
|
|
|
|
| // Shadowing definition.
|
| - String get id native "return this.id;";
|
| + String get id() native "return this.id;";
|
|
|
| void set id(String value) native "this.id = value;";
|
|
|
| @@ -11900,7 +11900,7 @@ class _SVGElementImpl extends _ElementImpl implements SVGElement native "*SVGEle
|
|
|
| class _SVGElementInstanceImpl extends _EventTargetImpl implements SVGElementInstance native "*SVGElementInstance" {
|
|
|
| - _SVGElementInstanceEventsImpl get on =>
|
| + _SVGElementInstanceEventsImpl get on() =>
|
| new _SVGElementInstanceEventsImpl(this);
|
|
|
| final _SVGElementInstanceListImpl childNodes;
|
| @@ -11923,85 +11923,85 @@ class _SVGElementInstanceImpl extends _EventTargetImpl implements SVGElementInst
|
| 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'];
|
| }
|
|
|
| class _SVGElementInstanceListImpl implements SVGElementInstanceList native "*SVGElementInstanceList" {
|
| @@ -12043,7 +12043,7 @@ class _SVGEllipseElementImpl extends _SVGElementImpl implements SVGEllipseElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12120,7 +12120,7 @@ class _SVGFEBlendElementImpl extends _SVGElementImpl implements SVGFEBlendElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12160,7 +12160,7 @@ class _SVGFEColorMatrixElementImpl extends _SVGElementImpl implements SVGFEColor
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12186,7 +12186,7 @@ class _SVGFEComponentTransferElementImpl extends _SVGElementImpl implements SVGF
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12238,7 +12238,7 @@ class _SVGFECompositeElementImpl extends _SVGElementImpl implements SVGFEComposi
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12294,7 +12294,7 @@ class _SVGFEConvolveMatrixElementImpl extends _SVGElementImpl implements SVGFECo
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12328,7 +12328,7 @@ class _SVGFEDiffuseLightingElementImpl extends _SVGElementImpl implements SVGFED
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12372,7 +12372,7 @@ class _SVGFEDisplacementMapElementImpl extends _SVGElementImpl implements SVGFED
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12415,7 +12415,7 @@ class _SVGFEDropShadowElementImpl extends _SVGElementImpl implements SVGFEDropSh
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12439,7 +12439,7 @@ class _SVGFEFloodElementImpl extends _SVGElementImpl implements SVGFEFloodElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12483,7 +12483,7 @@ class _SVGFEGaussianBlurElementImpl extends _SVGElementImpl implements SVGFEGaus
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12523,7 +12523,7 @@ class _SVGFEImageElementImpl extends _SVGElementImpl implements SVGFEImageElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12547,7 +12547,7 @@ class _SVGFEMergeElementImpl extends _SVGElementImpl implements SVGFEMergeElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12592,7 +12592,7 @@ class _SVGFEMorphologyElementImpl extends _SVGElementImpl implements SVGFEMorpho
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12622,7 +12622,7 @@ class _SVGFEOffsetElementImpl extends _SVGElementImpl implements SVGFEOffsetElem
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12663,7 +12663,7 @@ class _SVGFESpecularLightingElementImpl extends _SVGElementImpl implements SVGFE
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12708,7 +12708,7 @@ class _SVGFETileElementImpl extends _SVGElementImpl implements SVGFETileElement
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12756,7 +12756,7 @@ class _SVGFETurbulenceElementImpl extends _SVGElementImpl implements SVGFETurbul
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12800,7 +12800,7 @@ class _SVGFilterElementImpl extends _SVGElementImpl implements SVGFilterElement
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12858,7 +12858,7 @@ class _SVGForeignObjectElementImpl extends _SVGElementImpl implements SVGForeign
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12908,7 +12908,7 @@ class _SVGGElementImpl extends _SVGElementImpl implements SVGGElement native "*S
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12957,7 +12957,7 @@ class _SVGGlyphRefElementImpl extends _SVGElementImpl implements SVGGlyphRefElem
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -12991,7 +12991,7 @@ class _SVGGradientElementImpl extends _SVGElementImpl implements SVGGradientElem
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13040,7 +13040,7 @@ class _SVGImageElementImpl extends _SVGElementImpl implements SVGImageElement na
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13154,7 +13154,7 @@ class _SVGLineElementImpl extends _SVGElementImpl implements SVGLineElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13246,7 +13246,7 @@ class _SVGMarkerElementImpl extends _SVGElementImpl implements SVGMarkerElement
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13296,7 +13296,7 @@ class _SVGMaskElementImpl extends _SVGElementImpl implements SVGMaskElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13480,7 +13480,7 @@ class _SVGPathElementImpl extends _SVGElementImpl implements SVGPathElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13787,7 +13787,7 @@ class _SVGPatternElementImpl extends _SVGElementImpl implements SVGPatternElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13857,7 +13857,7 @@ class _SVGPolygonElementImpl extends _SVGElementImpl implements SVGPolygonElemen
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -13911,7 +13911,7 @@ class _SVGPolylineElementImpl extends _SVGElementImpl implements SVGPolylineElem
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14032,7 +14032,7 @@ class _SVGRectElementImpl extends _SVGElementImpl implements SVGRectElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14173,7 +14173,7 @@ class _SVGSVGElementImpl extends _SVGElementImpl implements SVGSVGElement native
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14227,7 +14227,7 @@ class _SVGStopElementImpl extends _SVGElementImpl implements SVGStopElement nati
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14261,7 +14261,7 @@ class _SVGStyleElementImpl extends _SVGElementImpl implements SVGStyleElement na
|
| String media;
|
|
|
| // Shadowing definition.
|
| - String get title native "return this.title;";
|
| + String get title() native "return this.title;";
|
|
|
| void set title(String value) native "this.title = value;";
|
|
|
| @@ -14298,7 +14298,7 @@ class _SVGSwitchElementImpl extends _SVGElementImpl implements SVGSwitchElement
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14338,7 +14338,7 @@ class _SVGSymbolElementImpl extends _SVGElementImpl implements SVGSymbolElement
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14414,7 +14414,7 @@ class _SVGTextContentElementImpl extends _SVGElementImpl implements SVGTextConte
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14491,7 +14491,7 @@ class _SVGTitleElementImpl extends _SVGElementImpl implements SVGTitleElement na
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14606,7 +14606,7 @@ class _SVGUseElementImpl extends _SVGElementImpl implements SVGUseElement native
|
|
|
| // From SVGStylable
|
|
|
| - _SVGAnimatedStringImpl get $dom_svgClassName native "return this.className;";
|
| + _SVGAnimatedStringImpl get $dom_svgClassName() native "return this.className;";
|
|
|
| // Use implementation from Element.
|
| // final _CSSStyleDeclarationImpl style;
|
| @@ -14839,7 +14839,7 @@ class _SharedWorkerImpl extends _AbstractWorkerImpl implements SharedWorker nati
|
|
|
| class _SharedWorkerContextImpl extends _WorkerContextImpl implements SharedWorkerContext native "*SharedWorkerContext" {
|
|
|
| - _SharedWorkerContextEventsImpl get on =>
|
| + _SharedWorkerContextEventsImpl get on() =>
|
| new _SharedWorkerContextEventsImpl(this);
|
|
|
| final String name;
|
| @@ -14848,7 +14848,7 @@ class _SharedWorkerContextImpl extends _WorkerContextImpl implements SharedWorke
|
| class _SharedWorkerContextEventsImpl extends _WorkerContextEventsImpl implements SharedWorkerContextEvents {
|
| _SharedWorkerContextEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get connect => this['connect'];
|
| + EventListenerList get connect() => this['connect'];
|
| }
|
|
|
| class _SourceBufferImpl implements SourceBuffer native "*SourceBuffer" {
|
| @@ -14926,7 +14926,7 @@ class _SpeechInputResultListImpl implements SpeechInputResultList native "*Speec
|
|
|
| class _SpeechRecognitionImpl extends _EventTargetImpl implements SpeechRecognition native "*SpeechRecognition" {
|
|
|
| - _SpeechRecognitionEventsImpl get on =>
|
| + _SpeechRecognitionEventsImpl get on() =>
|
| new _SpeechRecognitionEventsImpl(this);
|
|
|
| bool continuous;
|
| @@ -14953,29 +14953,29 @@ class _SpeechRecognitionImpl extends _EventTargetImpl implements SpeechRecogniti
|
| 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'];
|
| }
|
|
|
| class _SpeechRecognitionAlternativeImpl implements SpeechRecognitionAlternative native "*SpeechRecognitionAlternative" {
|
| @@ -15023,7 +15023,7 @@ class _SpeechRecognitionResultImpl implements SpeechRecognitionResult native "*S
|
|
|
| final _DocumentImpl emma;
|
|
|
| - bool get finalValue native "return this.final;";
|
| + bool get finalValue() native "return this.final;";
|
|
|
| final int length;
|
|
|
| @@ -15085,11 +15085,11 @@ class _StorageImpl implements Storage native "*Storage" {
|
| return values;
|
| }
|
|
|
| - int get length => $dom_length;
|
| + int get length() => $dom_length;
|
|
|
| bool isEmpty() => $dom_key(0) == null;
|
|
|
| - int get $dom_length native "return this.length;";
|
| + int get $dom_length() native "return this.length;";
|
|
|
| void $dom_clear() native "clear";
|
|
|
| @@ -15475,7 +15475,7 @@ class _TextMetricsImpl implements TextMetrics native "*TextMetrics" {
|
|
|
| class _TextTrackImpl extends _EventTargetImpl implements TextTrack native "*TextTrack" {
|
|
|
| - _TextTrackEventsImpl get on =>
|
| + _TextTrackEventsImpl get on() =>
|
| new _TextTrackEventsImpl(this);
|
|
|
| static const int DISABLED = 0;
|
| @@ -15510,12 +15510,12 @@ class _TextTrackImpl extends _EventTargetImpl implements TextTrack native "*Text
|
| class _TextTrackEventsImpl extends _EventsImpl implements TextTrackEvents {
|
| _TextTrackEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get cueChange => this['cuechange'];
|
| + EventListenerList get cueChange() => this['cuechange'];
|
| }
|
|
|
| class _TextTrackCueImpl extends _EventTargetImpl implements TextTrackCue native "*TextTrackCue" {
|
|
|
| - _TextTrackCueEventsImpl get on =>
|
| + _TextTrackCueEventsImpl get on() =>
|
| new _TextTrackCueEventsImpl(this);
|
|
|
| String align;
|
| @@ -15554,9 +15554,9 @@ class _TextTrackCueImpl extends _EventTargetImpl implements TextTrackCue native
|
| 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'];
|
| }
|
|
|
| class _TextTrackCueListImpl implements TextTrackCueList native "*TextTrackCueList" {
|
| @@ -15570,7 +15570,7 @@ class _TextTrackCueListImpl implements TextTrackCueList native "*TextTrackCueLis
|
|
|
| class _TextTrackListImpl extends _EventTargetImpl implements TextTrackList native "*TextTrackList" {
|
|
|
| - _TextTrackListEventsImpl get on =>
|
| + _TextTrackListEventsImpl get on() =>
|
| new _TextTrackListEventsImpl(this);
|
|
|
| final int length;
|
| @@ -15587,7 +15587,7 @@ class _TextTrackListImpl extends _EventTargetImpl implements TextTrackList nativ
|
| class _TextTrackListEventsImpl extends _EventsImpl implements TextTrackListEvents {
|
| _TextTrackListEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get addTrack => this['addtrack'];
|
| + EventListenerList get addTrack() => this['addtrack'];
|
| }
|
|
|
| class _TimeRangesImpl implements TimeRanges native "*TimeRanges" {
|
| @@ -15747,7 +15747,7 @@ class _TrackElementImpl extends _ElementImpl implements TrackElement native "*HT
|
|
|
| static const int NONE = 0;
|
|
|
| - bool get defaultValue native "return this.default;";
|
| + bool get defaultValue() native "return this.default;";
|
|
|
| void set defaultValue(bool value) native "this.default = value;";
|
|
|
| @@ -17278,7 +17278,7 @@ class _WebKitNamedFlowImpl extends _EventTargetImpl implements WebKitNamedFlow n
|
|
|
| class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebSocket" {
|
|
|
| - _WebSocketEventsImpl get on =>
|
| + _WebSocketEventsImpl get on() =>
|
| new _WebSocketEventsImpl(this);
|
|
|
| static const int CLOSED = 3;
|
| @@ -17317,13 +17317,13 @@ class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebS
|
| 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'];
|
| }
|
|
|
| class _WheelEventImpl extends _MouseEventImpl implements WheelEvent native "*WheelEvent" {
|
| @@ -17344,12 +17344,12 @@ class _WheelEventImpl extends _MouseEventImpl implements WheelEvent native "*Whe
|
|
|
| class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow" {
|
|
|
| - _DocumentImpl get document native "return this.document;";
|
| + _DocumentImpl get document() native "return this.document;";
|
|
|
| - Window get _top native "return this.top;";
|
| + Window get _top() native "return this.top;";
|
|
|
| // Override top to return secure wrapper.
|
| - Window get top => _DOMWindowCrossFrameImpl._createSafe(_top);
|
| + Window get top() => _DOMWindowCrossFrameImpl._createSafe(_top);
|
|
|
| Window _open2(url, name) native "return this.open(url, name);";
|
|
|
| @@ -17366,7 +17366,7 @@ class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow
|
| // API level getter and setter for Location.
|
| // TODO: The cross domain safe wrapper can be inserted here or folded into
|
| // _LocationWrapper.
|
| - Location get location => _get_location();
|
| + Location get location() => _get_location();
|
|
|
| // TODO: consider forcing users to do: window.location.assign('string').
|
| /**
|
| @@ -17398,7 +17398,7 @@ class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow
|
| var _location_wrapper; // Cached wrapped Location object.
|
|
|
| // Native getter and setter to access raw Location object.
|
| - Location get _location native 'return this.location';
|
| + Location get _location() native 'return this.location';
|
| void set _location(Location value) native 'this.location = value';
|
| // Prevent compiled from thinking 'location' property is available for a Dart
|
| // member.
|
| @@ -17453,7 +17453,7 @@ class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow
|
| ''';
|
|
|
|
|
| - _IDBFactoryImpl get indexedDB => _get_indexedDB();
|
| + _IDBFactoryImpl get indexedDB() => _get_indexedDB();
|
|
|
| _IDBFactoryImpl _get_indexedDB() native
|
| 'return this.indexedDB || this.webkitIndexedDB || this.mozIndexedDB';
|
| @@ -17477,7 +17477,7 @@ class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow
|
| (window.URL || window.webkitURL).revokeObjectURL(objectUrl)
|
| ''';
|
|
|
| - _WindowEventsImpl get on =>
|
| + _WindowEventsImpl get on() =>
|
| new _WindowEventsImpl(this);
|
|
|
| static const int PERSISTENT = 1;
|
| @@ -17667,158 +17667,158 @@ class _WindowImpl extends _EventTargetImpl implements Window native "@*DOMWindow
|
| 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'];
|
| }
|
|
|
| class _WorkerImpl extends _AbstractWorkerImpl implements Worker native "*Worker" {
|
|
|
| - _WorkerEventsImpl get on =>
|
| + _WorkerEventsImpl get on() =>
|
| new _WorkerEventsImpl(this);
|
|
|
| void postMessage(message, [List messagePorts]) native;
|
| @@ -17831,12 +17831,12 @@ class _WorkerImpl extends _AbstractWorkerImpl implements Worker native "*Worker"
|
| class _WorkerEventsImpl extends _AbstractWorkerEventsImpl implements WorkerEvents {
|
| _WorkerEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get message => this['message'];
|
| + EventListenerList get message() => this['message'];
|
| }
|
|
|
| class _WorkerContextImpl extends _EventTargetImpl implements WorkerContext native "*WorkerContext" {
|
|
|
| - _WorkerContextEventsImpl get on =>
|
| + _WorkerContextEventsImpl get on() =>
|
| new _WorkerContextEventsImpl(this);
|
|
|
| static const int PERSISTENT = 1;
|
| @@ -17887,7 +17887,7 @@ class _WorkerContextImpl extends _EventTargetImpl implements WorkerContext nativ
|
| class _WorkerContextEventsImpl extends _EventsImpl implements WorkerContextEvents {
|
| _WorkerContextEventsImpl(_ptr) : super(_ptr);
|
|
|
| - EventListenerList get error => this['error'];
|
| + EventListenerList get error() => this['error'];
|
| }
|
|
|
| class _WorkerLocationImpl implements WorkerLocation native "*WorkerLocation" {
|
| @@ -18649,7 +18649,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]);
|
| @@ -18663,7 +18663,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
|
| @@ -19086,7 +19086,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;
|
| @@ -19163,7 +19163,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
|
| @@ -19459,7 +19459,7 @@ interface BatteryManager extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - BatteryManagerEvents get on;
|
| + BatteryManagerEvents get on();
|
|
|
| /** @domName BatteryManager.charging */
|
| final bool charging;
|
| @@ -19485,13 +19485,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
|
| @@ -19582,7 +19582,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;
|
| @@ -19602,31 +19602,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
|
| @@ -22714,7 +22714,7 @@ interface DOMApplicationCache extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - DOMApplicationCacheEvents get on;
|
| + DOMApplicationCacheEvents get on();
|
|
|
| static const int CHECKING = 2;
|
|
|
| @@ -22752,21 +22752,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
|
| @@ -23355,7 +23355,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]);
|
| @@ -23366,7 +23366,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
|
| @@ -23533,7 +23533,7 @@ interface Document extends HtmlElement {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - DocumentEvents get on;
|
| + DocumentEvents get on();
|
|
|
| /** @domName HTMLDocument.activeElement */
|
| final Element activeElement;
|
| @@ -23689,103 +23689,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
|
| @@ -23810,7 +23810,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);
|
| @@ -24005,7 +24005,7 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - ElementEvents get on;
|
| + ElementEvents get on();
|
|
|
| /** @domName HTMLElement.children */
|
| final HTMLCollection $dom_children;
|
| @@ -24196,101 +24196,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
|
| @@ -24690,7 +24690,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;
|
|
|
| @@ -24722,11 +24722,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
|
| @@ -24968,7 +24968,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;
|
|
|
| @@ -25012,17 +25012,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
|
| @@ -25066,7 +25066,7 @@ interface FileWriter extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - FileWriterEvents get on;
|
| + FileWriterEvents get on();
|
|
|
| static const int DONE = 2;
|
|
|
| @@ -25110,17 +25110,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
|
| @@ -25350,7 +25350,7 @@ interface FrameSetElement extends Element {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - FrameSetElementEvents get on;
|
| + FrameSetElementEvents get on();
|
|
|
| /** @domName HTMLFrameSetElement.cols */
|
| String cols;
|
| @@ -25361,31 +25361,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
|
| @@ -25653,7 +25653,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;
|
|
|
| @@ -25725,19 +25725,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
|
| @@ -25791,7 +25791,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]);
|
| @@ -25805,17 +25805,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
|
| @@ -25891,7 +25891,7 @@ interface IDBDatabase extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - IDBDatabaseEvents get on;
|
| + IDBDatabaseEvents get on();
|
|
|
| /** @domName IDBDatabase.name */
|
| final String name;
|
| @@ -25929,11 +25929,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
|
| @@ -26160,14 +26160,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
|
| @@ -26181,7 +26181,7 @@ interface IDBRequest extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - IDBRequestEvents get on;
|
| + IDBRequestEvents get on();
|
|
|
| /** @domName IDBRequest.error */
|
| final DOMError error;
|
| @@ -26216,9 +26216,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
|
| @@ -26232,7 +26232,7 @@ interface IDBTransaction extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - IDBTransactionEvents get on;
|
| + IDBTransactionEvents get on();
|
|
|
| static const int READ_ONLY = 0;
|
|
|
| @@ -26267,11 +26267,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
|
| @@ -26312,12 +26312,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
|
| @@ -26496,7 +26496,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;
|
| @@ -26666,7 +26666,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
|
| @@ -26758,7 +26758,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;
|
| @@ -26766,7 +26766,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
|
| @@ -27197,7 +27197,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;
|
|
|
| @@ -27340,55 +27340,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
|
| @@ -27587,7 +27587,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;
|
|
|
| @@ -27617,7 +27617,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
|
| @@ -27670,7 +27670,7 @@ interface MediaStreamTrack extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - MediaStreamTrackEvents get on;
|
| + MediaStreamTrackEvents get on();
|
|
|
| static const int ENDED = 2;
|
|
|
| @@ -27702,11 +27702,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
|
| @@ -27732,7 +27732,7 @@ interface MediaStreamTrackList extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - MediaStreamTrackListEvents get on;
|
| + MediaStreamTrackListEvents get on();
|
|
|
| /** @domName MediaStreamTrackList.length */
|
| final int length;
|
| @@ -27758,9 +27758,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
|
| @@ -27853,7 +27853,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]);
|
| @@ -27879,7 +27879,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
|
| @@ -28530,7 +28530,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;
|
| @@ -28565,15 +28565,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
|
| @@ -29007,7 +29007,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;
|
|
|
| @@ -29094,15 +29094,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
|
| @@ -30289,7 +30289,7 @@ interface SVGElementInstance extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - SVGElementInstanceEvents get on;
|
| + SVGElementInstanceEvents get on();
|
|
|
| /** @domName SVGElementInstance.childNodes */
|
| final SVGElementInstanceList childNodes;
|
| @@ -30318,85 +30318,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
|
| @@ -33395,7 +33395,7 @@ interface SharedWorkerContext extends WorkerContext {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - SharedWorkerContextEvents get on;
|
| + SharedWorkerContextEvents get on();
|
|
|
| /** @domName SharedWorkerContext.name */
|
| final String name;
|
| @@ -33403,7 +33403,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
|
| @@ -33577,7 +33577,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;
|
| @@ -33612,29 +33612,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
|
| @@ -34322,7 +34322,7 @@ interface TextTrack extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - TextTrackEvents get on;
|
| + TextTrackEvents get on();
|
|
|
| static const int DISABLED = 0;
|
|
|
| @@ -34366,7 +34366,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
|
| @@ -34382,7 +34382,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;
|
| @@ -34435,9 +34435,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
|
| @@ -34469,7 +34469,7 @@ interface TextTrackList extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - TextTrackListEvents get on;
|
| + TextTrackListEvents get on();
|
|
|
| /** @domName TextTrackList.length */
|
| final int length;
|
| @@ -34489,7 +34489,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
|
| @@ -36330,7 +36330,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;
|
|
|
| @@ -36379,13 +36379,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
|
| @@ -36462,7 +36462,7 @@ interface Window extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - WindowEvents get on;
|
| + WindowEvents get on();
|
|
|
| static const int PERSISTENT = 1;
|
|
|
| @@ -36751,153 +36751,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
|
| @@ -36913,7 +36913,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]);
|
| @@ -36927,7 +36927,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
|
| @@ -36941,7 +36941,7 @@ interface WorkerContext extends EventTarget {
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
| */
|
| - WorkerContextEvents get on;
|
| + WorkerContextEvents get on();
|
|
|
| static const int PERSISTENT = 1;
|
|
|
| @@ -37010,7 +37010,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
|
|
|