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

Unified Diff: client/dom/frog/dom_frog.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index c73a261ed64d645fc7fe64279367e79000434599..60ec7665803add415c727831407761514d75f304 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -1067,7 +1067,6 @@ class _DOMMimeTypeArrayJs extends _DOMTypeJs implements DOMMimeTypeArray native
}
class _DOMParserJs extends _DOMTypeJs implements DOMParser native "*DOMParser" {
- DOMParser() native;
_DocumentJs parseFromString(String str, String contentType) native;
}
@@ -2719,21 +2718,11 @@ class _HTMLCollectionJs extends _DOMTypeJs implements HTMLCollection native "*HT
_NodeJs namedItem(String name) native;
}
-class _HTMLContentElementJs extends _HTMLElementJs implements HTMLContentElement native "*HTMLContentElement" {
-
- String select;
-}
-
class _HTMLDListElementJs extends _HTMLElementJs implements HTMLDListElement native "*HTMLDListElement" {
bool compact;
}
-class _HTMLDataListElementJs extends _HTMLElementJs implements HTMLDataListElement native "*HTMLDataListElement" {
-
- final _HTMLCollectionJs options;
-}
-
class _HTMLDetailsElementJs extends _HTMLElementJs implements HTMLDetailsElement native "*HTMLDetailsElement" {
bool open;
@@ -2820,18 +2809,6 @@ class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem
final bool isContentEditable;
- String itemId;
-
- final _DOMSettableTokenListJs itemProp;
-
- final _DOMSettableTokenListJs itemRef;
-
- bool itemScope;
-
- final _DOMSettableTokenListJs itemType;
-
- Object itemValue;
-
String lang;
String outerHTML;
@@ -3105,8 +3082,6 @@ class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
final _NodeListJs labels;
- final _HTMLElementJs list;
-
String max;
int maxLength;
@@ -3125,8 +3100,6 @@ class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
bool required;
- final _HTMLOptionElementJs selectedOption;
-
String selectionDirection;
int selectionEnd;
@@ -3613,13 +3586,6 @@ class _HTMLProgressElementJs extends _HTMLElementJs implements HTMLProgressEleme
num value;
}
-class _HTMLPropertiesCollectionJs extends _HTMLCollectionJs implements HTMLPropertiesCollection native "*HTMLPropertiesCollection" {
-
- final int length;
-
- _NodeJs item(int index) native;
-}
-
class _HTMLQuoteElementJs extends _HTMLElementJs implements HTMLQuoteElement native "*HTMLQuoteElement" {
String cite;
@@ -3709,8 +3675,6 @@ class _HTMLStyleElementJs extends _HTMLElementJs implements HTMLStyleElement nat
String media;
- bool scoped;
-
final _StyleSheetJs sheet;
String type;
@@ -4281,88 +4245,6 @@ class _ImageDataJs extends _DOMTypeJs implements ImageData native "*ImageData" {
final int width;
}
-class _InjectedScriptHostJs extends _DOMTypeJs implements InjectedScriptHost native "*InjectedScriptHost" {
-
- void clearConsoleMessages() native;
-
- void copyText(String text) native;
-
- int databaseId(Object database) native;
-
- void didCreateWorker(int id, String url, bool isFakeWorker) native;
-
- void didDestroyWorker(int id) native;
-
- Object evaluate(String text) native;
-
- Object functionDetails(Object object) native;
-
- void inspect(Object objectId, Object hints) native;
-
- Object inspectedNode(int num) native;
-
- Object internalConstructorName(Object object) native;
-
- bool isHTMLAllCollection(Object object) native;
-
- int nextWorkerId() native;
-
- int storageId(Object storage) native;
-
- String type(Object object) native;
-}
-
-class _InspectorFrontendHostJs extends _DOMTypeJs implements InspectorFrontendHost native "*InspectorFrontendHost" {
-
- void bringToFront() native;
-
- bool canSaveAs() native;
-
- void closeWindow() native;
-
- void copyText(String text) native;
-
- String hiddenPanels() native;
-
- void inspectedURLChanged(String newURL) native;
-
- String loadResourceSynchronously(String url) native;
-
- void loaded() native;
-
- String localizedStringsURL() native;
-
- void moveWindowBy(num x, num y) native;
-
- void openInNewTab(String url) native;
-
- String platform() native;
-
- String port() native;
-
- void recordActionTaken(int actionCode) native;
-
- void recordPanelShown(int panelCode) native;
-
- void recordSettingChanged(int settingChanged) native;
-
- void requestAttachWindow() native;
-
- void requestDetachWindow() native;
-
- void requestSetDockSide(String side) native;
-
- void saveAs(String fileName, String content) native;
-
- void sendMessageToBackend(String message) native;
-
- void setAttachedWindowHeight(int height) native;
-
- void setInjectedScriptForOrigin(String origin, String script) native;
-
- void showContextMenu(_MouseEventJs event, Object items) native;
-}
-
class _Int16ArrayJs extends _ArrayBufferViewJs implements Int16Array, List<int> native "*Int16Array" {
factory Int16Array(int length) => _construct_Int16Array(length);
@@ -4968,10 +4850,6 @@ class _MouseEventJs extends _UIEventJs implements MouseEvent native "*MouseEvent
final _NodeJs toElement;
- final int webkitMovementX;
-
- final int webkitMovementY;
-
final int x;
final int y;
@@ -4979,9 +4857,6 @@ class _MouseEventJs extends _UIEventJs implements MouseEvent native "*MouseEvent
void initMouseEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetJs relatedTarget) native;
}
-class _MutationCallbackJs extends _DOMTypeJs implements MutationCallback native "*MutationCallback" {
-}
-
class _MutationEventJs extends _EventJs implements MutationEvent native "*MutationEvent" {
static final int ADDITION = 2;
@@ -5003,27 +4878,6 @@ class _MutationEventJs extends _EventJs implements MutationEvent native "*Mutati
void initMutationEvent(String type, bool canBubble, bool cancelable, _NodeJs relatedNode, String prevValue, String newValue, String attrName, int attrChange) native;
}
-class _MutationRecordJs extends _DOMTypeJs implements MutationRecord native "*MutationRecord" {
-
- final _NodeListJs addedNodes;
-
- final String attributeName;
-
- final String attributeNamespace;
-
- final _NodeJs nextSibling;
-
- final String oldValue;
-
- final _NodeJs previousSibling;
-
- final _NodeListJs removedNodes;
-
- final _NodeJs target;
-
- final String type;
-}
-
class _NamedNodeMapJs extends _DOMTypeJs implements NamedNodeMap native "*NamedNodeMap" {
final int length;
@@ -5574,15 +5428,6 @@ class _PerformanceTimingJs extends _DOMTypeJs implements PerformanceTiming nativ
final int unloadEventStart;
}
-class _PointerLockJs extends _DOMTypeJs implements PointerLock native "*PointerLock" {
-
- final bool isLocked;
-
- void lock(_ElementJs target, [VoidCallback successCallback = null, VoidCallback failureCallback = null]) native;
-
- void unlock() native;
-}
-
class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopStateEvent" {
final Object state;
@@ -9115,11 +8960,6 @@ class _ScriptProfileNodeJs extends _DOMTypeJs implements ScriptProfileNode nativ
final bool visible;
}
-class _ShadowRootJs extends _NodeJs implements ShadowRoot native "*ShadowRoot" {
-
- final _ElementJs host;
-}
-
class _SharedWorkerJs extends _AbstractWorkerJs implements SharedWorker native "*SharedWorker" {
final _MessagePortJs port;
@@ -10960,33 +10800,6 @@ class _WebKitBlobBuilderJs extends _DOMTypeJs implements WebKitBlobBuilder nativ
_BlobJs getBlob([String contentType = null]) native;
}
-class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilterValue native "*WebKitCSSFilterValue" {
-
- static final int CSS_FILTER_BLUR = 10;
-
- static final int CSS_FILTER_BRIGHTNESS = 8;
-
- static final int CSS_FILTER_CONTRAST = 9;
-
- static final int CSS_FILTER_DROP_SHADOW = 11;
-
- static final int CSS_FILTER_GRAYSCALE = 2;
-
- static final int CSS_FILTER_HUE_ROTATE = 5;
-
- static final int CSS_FILTER_INVERT = 6;
-
- static final int CSS_FILTER_OPACITY = 7;
-
- static final int CSS_FILTER_REFERENCE = 1;
-
- static final int CSS_FILTER_SATURATE = 4;
-
- static final int CSS_FILTER_SEPIA = 3;
-
- final int operationType;
-}
-
class _WebKitCSSKeyframeRuleJs extends _CSSRuleJs implements WebKitCSSKeyframeRule native "*WebKitCSSKeyframeRule" {
String keyText;
@@ -11128,11 +10941,6 @@ class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
final int operationType;
}
-class _WebKitMutationObserverJs extends _DOMTypeJs implements WebKitMutationObserver native "*WebKitMutationObserver" {
-
- void disconnect() native;
-}
-
class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*WebKitNamedFlow" {
}
@@ -11528,7 +11336,7 @@ interface AbstractWorker extends EventTarget {
interface ArrayBuffer {
- int get byteLength();
+ final int byteLength;
ArrayBuffer slice(int begin, [int end]);
}
@@ -11540,11 +11348,11 @@ interface ArrayBuffer {
interface ArrayBufferView {
- ArrayBuffer get buffer();
+ final ArrayBuffer buffer;
- int get byteLength();
+ final int byteLength;
- int get byteOffset();
+ final int byteOffset;
}
// 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
@@ -11554,17 +11362,15 @@ interface ArrayBufferView {
interface Attr extends Node {
- bool get isId();
-
- String get name();
+ final bool isId;
- Element get ownerElement();
+ final String name;
- bool get specified();
+ final Element ownerElement;
- String get value();
+ final bool specified;
- void set value(String value);
+ String value;
}
// 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
@@ -11574,17 +11380,15 @@ interface Attr extends Node {
interface AudioBuffer {
- num get duration();
-
- num get gain();
+ final num duration;
- void set gain(num value);
+ num gain;
- int get length();
+ final int length;
- int get numberOfChannels();
+ final int numberOfChannels;
- num get sampleRate();
+ final num sampleRate;
Float32Array getChannelData(int channelIndex);
}
@@ -11603,21 +11407,15 @@ typedef bool AudioBufferCallback(AudioBuffer audioBuffer);
interface AudioBufferSourceNode extends AudioSourceNode {
- AudioBuffer get buffer();
-
- void set buffer(AudioBuffer value);
-
- AudioGain get gain();
+ AudioBuffer buffer;
- bool get loop();
+ final AudioGain gain;
- void set loop(bool value);
-
- bool get looping();
+ bool loop;
- void set looping(bool value);
+ bool looping;
- AudioParam get playbackRate();
+ final AudioParam playbackRate;
void noteGrainOn(num when, num grainOffset, num grainDuration);
@@ -11651,17 +11449,15 @@ interface AudioContext default _AudioContextFactoryProvider {
AudioContext();
- num get currentTime();
-
- AudioDestinationNode get destination();
+ final num currentTime;
- AudioListener get listener();
+ final AudioDestinationNode destination;
- EventListener get oncomplete();
+ final AudioListener listener;
- void set oncomplete(EventListener value);
+ EventListener oncomplete;
- num get sampleRate();
+ final num sampleRate;
RealtimeAnalyserNode createAnalyser();
@@ -11707,7 +11503,7 @@ interface AudioContext default _AudioContextFactoryProvider {
interface AudioDestinationNode extends AudioNode {
- int get numberOfChannels();
+ final int numberOfChannels;
}
// 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
@@ -11725,7 +11521,7 @@ interface AudioGain extends AudioParam {
interface AudioGainNode extends AudioNode {
- AudioGain get gain();
+ final AudioGain gain;
}
// 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
@@ -11735,13 +11531,9 @@ interface AudioGainNode extends AudioNode {
interface AudioListener {
- num get dopplerFactor();
-
- void set dopplerFactor(num value);
-
- num get speedOfSound();
+ num dopplerFactor;
- void set speedOfSound(num value);
+ num speedOfSound;
void setOrientation(num x, num y, num z, num xUp, num yUp, num zUp);
@@ -11757,11 +11549,11 @@ interface AudioListener {
interface AudioNode {
- AudioContext get context();
+ final AudioContext context;
- int get numberOfInputs();
+ final int numberOfInputs;
- int get numberOfOutputs();
+ final int numberOfOutputs;
void connect(AudioNode destination, int output, int input);
@@ -11781,41 +11573,25 @@ interface AudioPannerNode extends AudioNode {
static final int SOUNDFIELD = 2;
- AudioGain get coneGain();
-
- num get coneInnerAngle();
-
- void set coneInnerAngle(num value);
-
- num get coneOuterAngle();
-
- void set coneOuterAngle(num value);
-
- num get coneOuterGain();
-
- void set coneOuterGain(num value);
+ final AudioGain coneGain;
- AudioGain get distanceGain();
-
- int get distanceModel();
-
- void set distanceModel(int value);
+ num coneInnerAngle;
- num get maxDistance();
+ num coneOuterAngle;
- void set maxDistance(num value);
+ num coneOuterGain;
- int get panningModel();
+ final AudioGain distanceGain;
- void set panningModel(int value);
+ int distanceModel;
- num get refDistance();
+ num maxDistance;
- void set refDistance(num value);
+ int panningModel;
- num get rolloffFactor();
+ num refDistance;
- void set rolloffFactor(num value);
+ num rolloffFactor;
void setOrientation(num x, num y, num z);
@@ -11831,19 +11607,17 @@ interface AudioPannerNode extends AudioNode {
interface AudioParam {
- num get defaultValue();
-
- num get maxValue();
+ final num defaultValue;
- num get minValue();
+ final num maxValue;
- String get name();
+ final num minValue;
- int get units();
+ final String name;
- num get value();
+ final int units;
- void set value(num value);
+ num value;
void cancelScheduledValues(num startTime);
@@ -11865,9 +11639,9 @@ interface AudioParam {
interface AudioProcessingEvent extends Event {
- AudioBuffer get inputBuffer();
+ final AudioBuffer inputBuffer;
- AudioBuffer get outputBuffer();
+ final AudioBuffer outputBuffer;
}
// 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
@@ -11885,7 +11659,7 @@ interface AudioSourceNode extends AudioNode {
interface BarProp {
- bool get visible();
+ final bool visible;
}
interface BarInfo extends BarProp {
@@ -11898,7 +11672,7 @@ interface BarInfo extends BarProp {
interface BeforeLoadEvent extends Event {
- String get url();
+ final String url;
}
// 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
@@ -11924,15 +11698,13 @@ interface BiquadFilterNode extends AudioNode {
static final int PEAKING = 5;
- AudioParam get Q();
-
- AudioParam get frequency();
+ final AudioParam Q;
- AudioParam get gain();
+ final AudioParam frequency;
- int get type();
+ final AudioParam gain;
- void set type(int value);
+ int type;
void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse, Float32Array phaseResponse);
}
@@ -11944,9 +11716,9 @@ interface BiquadFilterNode extends AudioNode {
interface Blob {
- int get size();
+ final int size;
- String get type();
+ final String type;
Blob webkitSlice([int start, int end, String contentType]);
}
@@ -11966,9 +11738,7 @@ interface CDATASection extends Text {
interface CSSCharsetRule extends CSSRule {
- String get encoding();
-
- void set encoding(String value);
+ String encoding;
}
// 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
@@ -11978,7 +11748,7 @@ interface CSSCharsetRule extends CSSRule {
interface CSSFontFaceRule extends CSSRule {
- CSSStyleDeclaration get style();
+ final CSSStyleDeclaration style;
}
// 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
@@ -11988,11 +11758,11 @@ interface CSSFontFaceRule extends CSSRule {
interface CSSImportRule extends CSSRule {
- String get href();
+ final String href;
- MediaList get media();
+ final MediaList media;
- CSSStyleSheet get styleSheet();
+ final CSSStyleSheet styleSheet;
}
// 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
@@ -12002,9 +11772,9 @@ interface CSSImportRule extends CSSRule {
interface CSSMediaRule extends CSSRule {
- CSSRuleList get cssRules();
+ final CSSRuleList cssRules;
- MediaList get media();
+ final MediaList media;
void deleteRule(int index);
@@ -12018,11 +11788,9 @@ interface CSSMediaRule extends CSSRule {
interface CSSPageRule extends CSSRule {
- String get selectorText();
-
- void set selectorText(String value);
+ String selectorText;
- CSSStyleDeclaration get style();
+ final CSSStyleDeclaration style;
}
// 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
@@ -12084,7 +11852,7 @@ interface CSSPrimitiveValue extends CSSValue {
static final int CSS_URI = 20;
- int get primitiveType();
+ final int primitiveType;
Counter getCounterValue();
@@ -12128,15 +11896,13 @@ interface CSSRule {
static final int WEBKIT_REGION_RULE = 10;
- String get cssText();
-
- void set cssText(String value);
+ String cssText;
- CSSRule get parentRule();
+ final CSSRule parentRule;
- CSSStyleSheet get parentStyleSheet();
+ final CSSStyleSheet parentStyleSheet;
- int get type();
+ final int type;
}
// 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
@@ -12146,7 +11912,7 @@ interface CSSRule {
interface CSSRuleList {
- int get length();
+ final int length;
CSSRule item(int index);
}
@@ -12158,13 +11924,11 @@ interface CSSRuleList {
interface CSSStyleDeclaration {
- String get cssText();
-
- void set cssText(String value);
+ String cssText;
- int get length();
+ final int length;
- CSSRule get parentRule();
+ final CSSRule parentRule;
CSSValue getPropertyCSSValue(String propertyName);
@@ -12190,11 +11954,9 @@ interface CSSStyleDeclaration {
interface CSSStyleRule extends CSSRule {
- String get selectorText();
-
- void set selectorText(String value);
+ String selectorText;
- CSSStyleDeclaration get style();
+ final CSSStyleDeclaration style;
}
// 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
@@ -12204,11 +11966,11 @@ interface CSSStyleRule extends CSSRule {
interface CSSStyleSheet extends StyleSheet {
- CSSRuleList get cssRules();
+ final CSSRuleList cssRules;
- CSSRule get ownerRule();
+ final CSSRule ownerRule;
- CSSRuleList get rules();
+ final CSSRuleList rules;
int addRule(String selector, String style, [int index]);
@@ -12242,11 +12004,9 @@ interface CSSValue {
static final int CSS_VALUE_LIST = 2;
- String get cssText();
-
- void set cssText(String value);
+ String cssText;
- int get cssValueType();
+ final int cssValueType;
}
// 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
@@ -12256,7 +12016,7 @@ interface CSSValue {
interface CSSValueList extends CSSValue {
- int get length();
+ final int length;
CSSValue item(int index);
}
@@ -12286,7 +12046,7 @@ interface CanvasPattern {
interface CanvasPixelArray extends List<int> {
- int get length();
+ final int length;
}
// 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
@@ -12296,7 +12056,7 @@ interface CanvasPixelArray extends List<int> {
interface CanvasRenderingContext {
- HTMLCanvasElement get canvas();
+ final HTMLCanvasElement canvas;
}
// 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
@@ -12306,73 +12066,39 @@ interface CanvasRenderingContext {
interface CanvasRenderingContext2D extends CanvasRenderingContext {
- Dynamic get fillStyle();
-
- void set fillStyle(Dynamic value);
-
- String get font();
-
- void set font(String value);
-
- num get globalAlpha();
-
- void set globalAlpha(num value);
-
- String get globalCompositeOperation();
-
- void set globalCompositeOperation(String value);
-
- String get lineCap();
-
- void set lineCap(String value);
-
- String get lineJoin();
-
- void set lineJoin(String value);
-
- num get lineWidth();
-
- void set lineWidth(num value);
-
- num get miterLimit();
-
- void set miterLimit(num value);
-
- num get shadowBlur();
-
- void set shadowBlur(num value);
+ Dynamic fillStyle;
- String get shadowColor();
+ String font;
- void set shadowColor(String value);
+ num globalAlpha;
- num get shadowOffsetX();
+ String globalCompositeOperation;
- void set shadowOffsetX(num value);
+ String lineCap;
- num get shadowOffsetY();
+ String lineJoin;
- void set shadowOffsetY(num value);
+ num lineWidth;
- Dynamic get strokeStyle();
+ num miterLimit;
- void set strokeStyle(Dynamic value);
+ num shadowBlur;
- String get textAlign();
+ String shadowColor;
- void set textAlign(String value);
+ num shadowOffsetX;
- String get textBaseline();
+ num shadowOffsetY;
- void set textBaseline(String value);
+ Dynamic strokeStyle;
- List get webkitLineDash();
+ String textAlign;
- void set webkitLineDash(List value);
+ String textBaseline;
- num get webkitLineDashOffset();
+ List webkitLineDash;
- void set webkitLineDashOffset(num value);
+ num webkitLineDashOffset;
void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticlockwise);
@@ -12470,11 +12196,9 @@ interface CanvasRenderingContext2D extends CanvasRenderingContext {
interface CharacterData extends Node {
- String get data();
-
- void set data(String value);
+ String data;
- int get length();
+ final int length;
void appendData(String data);
@@ -12494,17 +12218,17 @@ interface CharacterData extends Node {
interface ClientRect {
- num get bottom();
+ final num bottom;
- num get height();
+ final num height;
- num get left();
+ final num left;
- num get right();
+ final num right;
- num get top();
+ final num top;
- num get width();
+ final num width;
}
// 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
@@ -12514,7 +12238,7 @@ interface ClientRect {
interface ClientRectList {
- int get length();
+ final int length;
ClientRect item(int index);
}
@@ -12526,19 +12250,15 @@ interface ClientRectList {
interface Clipboard {
- String get dropEffect();
-
- void set dropEffect(String value);
-
- String get effectAllowed();
+ String dropEffect;
- void set effectAllowed(String value);
+ String effectAllowed;
- FileList get files();
+ final FileList files;
- DataTransferItemList get items();
+ final DataTransferItemList items;
- List get types();
+ final List types;
void clearData([String type]);
@@ -12556,11 +12276,11 @@ interface Clipboard {
interface CloseEvent extends Event {
- int get code();
+ final int code;
- String get reason();
+ final String reason;
- bool get wasClean();
+ final bool wasClean;
}
// 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
@@ -12578,7 +12298,7 @@ interface Comment extends CharacterData {
interface CompositionEvent extends UIEvent {
- String get data();
+ final String data;
void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableArg, DOMWindow viewArg, String dataArg);
}
@@ -12590,9 +12310,9 @@ interface CompositionEvent extends UIEvent {
interface Console {
- MemoryInfo get memory();
+ final MemoryInfo memory;
- List get profiles();
+ final List profiles;
void assertCondition(bool condition);
@@ -12640,13 +12360,9 @@ interface Console {
interface ConvolverNode extends AudioNode {
- AudioBuffer get buffer();
-
- void set buffer(AudioBuffer value);
+ AudioBuffer buffer;
- bool get normalize();
-
- void set normalize(bool value);
+ bool normalize;
}
// 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
@@ -12656,19 +12372,19 @@ interface ConvolverNode extends AudioNode {
interface Coordinates {
- num get accuracy();
+ final num accuracy;
- num get altitude();
+ final num altitude;
- num get altitudeAccuracy();
+ final num altitudeAccuracy;
- num get heading();
+ final num heading;
- num get latitude();
+ final num latitude;
- num get longitude();
+ final num longitude;
- num get speed();
+ final num speed;
}
// 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
@@ -12678,11 +12394,11 @@ interface Coordinates {
interface Counter {
- String get identifier();
+ final String identifier;
- String get listStyle();
+ final String listStyle;
- String get separator();
+ final String separator;
}
// 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
@@ -12702,7 +12418,7 @@ interface Crypto {
interface CustomEvent extends Event {
- Object get detail();
+ final Object detail;
void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Object detailArg);
}
@@ -12714,7 +12430,7 @@ interface CustomEvent extends Event {
interface ApplicationCache extends EventTarget {
- int get status();
+ final int status;
void abort();
@@ -12801,11 +12517,11 @@ interface DOMException {
static final int WRONG_DOCUMENT_ERR = 4;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -12817,9 +12533,9 @@ interface DOMException {
interface DOMFileSystem {
- String get name();
+ final String name;
- DirectoryEntry get root();
+ final DirectoryEntry root;
}
// 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
@@ -12829,9 +12545,9 @@ interface DOMFileSystem {
interface DOMFileSystemSync {
- String get name();
+ final String name;
- DirectoryEntrySync get root();
+ final DirectoryEntrySync root;
}
// 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
@@ -12872,13 +12588,13 @@ interface DOMImplementation {
interface DOMMimeType {
- String get description();
+ final String description;
- DOMPlugin get enabledPlugin();
+ final DOMPlugin enabledPlugin;
- String get suffixes();
+ final String suffixes;
- String get type();
+ final String type;
}
// 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
@@ -12888,7 +12604,7 @@ interface DOMMimeType {
interface DOMMimeTypeArray {
- int get length();
+ final int length;
DOMMimeType item(int index);
@@ -12914,13 +12630,13 @@ interface DOMParser default _DOMParserFactoryProvider {
interface DOMPlugin {
- String get description();
+ final String description;
- String get filename();
+ final String filename;
- int get length();
+ final int length;
- String get name();
+ final String name;
DOMMimeType item(int index);
@@ -12934,7 +12650,7 @@ interface DOMPlugin {
interface DOMPluginArray {
- int get length();
+ final int length;
DOMPlugin item(int index);
@@ -12950,27 +12666,27 @@ interface DOMPluginArray {
interface Selection {
- Node get anchorNode();
+ final Node anchorNode;
- int get anchorOffset();
+ final int anchorOffset;
- Node get baseNode();
+ final Node baseNode;
- int get baseOffset();
+ final int baseOffset;
- Node get extentNode();
+ final Node extentNode;
- int get extentOffset();
+ final int extentOffset;
- Node get focusNode();
+ final Node focusNode;
- int get focusOffset();
+ final int focusOffset;
- bool get isCollapsed();
+ final bool isCollapsed;
- int get rangeCount();
+ final int rangeCount;
- String get type();
+ final String type;
void addRange(Range range);
@@ -13013,9 +12729,7 @@ interface DOMSelection extends Selection {
interface DOMSettableTokenList extends DOMTokenList {
- String get value();
-
- void set value(String value);
+ String value;
}
// 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
@@ -13025,7 +12739,7 @@ interface DOMSettableTokenList extends DOMTokenList {
interface DOMTokenList {
- int get length();
+ final int length;
void add(String token);
@@ -13059,179 +12773,107 @@ interface DOMURL {
interface Window extends EventTarget {
- DOMApplicationCache get applicationCache();
-
- Navigator get clientInformation();
-
- void set clientInformation(Navigator value);
-
- bool get closed();
-
- Console get console();
-
- void set console(Console value);
-
- Crypto get crypto();
-
- String get defaultStatus();
-
- void set defaultStatus(String value);
+ final DOMApplicationCache applicationCache;
- String get defaultstatus();
+ Navigator clientInformation;
- void set defaultstatus(String value);
-
- num get devicePixelRatio();
-
- void set devicePixelRatio(num value);
-
- Document get document();
-
- Event get event();
-
- void set event(Event value);
-
- Element get frameElement();
-
- DOMWindow get frames();
-
- void set frames(DOMWindow value);
-
- History get history();
-
- void set history(History value);
-
- int get innerHeight();
-
- void set innerHeight(int value);
-
- int get innerWidth();
-
- void set innerWidth(int value);
-
- int get length();
-
- void set length(int value);
-
- Storage get localStorage();
-
- Location get location();
-
- void set location(Location value);
-
- BarInfo get locationbar();
-
- void set locationbar(BarInfo value);
-
- BarInfo get menubar();
-
- void set menubar(BarInfo value);
-
- String get name();
-
- void set name(String value);
-
- Navigator get navigator();
-
- void set navigator(Navigator value);
-
- bool get offscreenBuffering();
+ final bool closed;
- void set offscreenBuffering(bool value);
+ Console console;
- DOMWindow get opener();
+ final Crypto crypto;
- void set opener(DOMWindow value);
+ String defaultStatus;
- int get outerHeight();
+ String defaultstatus;
- void set outerHeight(int value);
+ num devicePixelRatio;
- int get outerWidth();
+ final Document document;
- void set outerWidth(int value);
+ Event event;
- int get pageXOffset();
+ final Element frameElement;
- int get pageYOffset();
+ DOMWindow frames;
- DOMWindow get parent();
+ History history;
- void set parent(DOMWindow value);
+ int innerHeight;
- Performance get performance();
+ int innerWidth;
- void set performance(Performance value);
+ int length;
- BarInfo get personalbar();
+ final Storage localStorage;
- void set personalbar(BarInfo value);
+ Location location;
- Screen get screen();
+ BarInfo locationbar;
- void set screen(Screen value);
+ BarInfo menubar;
- int get screenLeft();
+ String name;
- void set screenLeft(int value);
+ Navigator navigator;
- int get screenTop();
+ bool offscreenBuffering;
- void set screenTop(int value);
+ DOMWindow opener;
- int get screenX();
+ int outerHeight;
- void set screenX(int value);
+ int outerWidth;
- int get screenY();
+ final int pageXOffset;
- void set screenY(int value);
+ final int pageYOffset;
- int get scrollX();
+ DOMWindow parent;
- void set scrollX(int value);
+ Performance performance;
- int get scrollY();
+ BarInfo personalbar;
- void set scrollY(int value);
+ Screen screen;
- BarInfo get scrollbars();
+ int screenLeft;
- void set scrollbars(BarInfo value);
+ int screenTop;
- DOMWindow get self();
+ int screenX;
- void set self(DOMWindow value);
+ int screenY;
- Storage get sessionStorage();
+ int scrollX;
- String get status();
+ int scrollY;
- void set status(String value);
+ BarInfo scrollbars;
- BarInfo get statusbar();
+ DOMWindow self;
- void set statusbar(BarInfo value);
+ final Storage sessionStorage;
- StyleMedia get styleMedia();
+ String status;
- BarInfo get toolbar();
+ BarInfo statusbar;
- void set toolbar(BarInfo value);
+ final StyleMedia styleMedia;
- DOMWindow get top();
+ BarInfo toolbar;
- void set top(DOMWindow value);
+ DOMWindow top;
- IDBFactory get webkitIndexedDB();
+ final IDBFactory webkitIndexedDB;
- NotificationCenter get webkitNotifications();
+ final NotificationCenter webkitNotifications;
- StorageInfo get webkitStorageInfo();
+ final StorageInfo webkitStorageInfo;
- DOMURL get webkitURL();
+ final DOMURL webkitURL;
- DOMWindow get window();
+ final DOMWindow window;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -13334,9 +12976,9 @@ interface DOMWindow extends Window {
interface DataTransferItem {
- String get kind();
+ final String kind;
- String get type();
+ final String type;
Blob getAsFile();
@@ -13350,7 +12992,7 @@ interface DataTransferItem {
interface DataTransferItemList {
- int get length();
+ final int length;
void add(var data_OR_file, [String type]);
@@ -13406,7 +13048,7 @@ interface DataView extends ArrayBufferView {
interface Database {
- String get version();
+ final String version;
void changeVersion(String oldVersion, String newVersion, [SQLTransactionCallback callback, SQLTransactionErrorCallback errorCallback, VoidCallback successCallback]);
@@ -13429,9 +13071,9 @@ typedef bool DatabaseCallback(var database);
interface DatabaseSync {
- String get lastErrorMessage();
+ final String lastErrorMessage;
- String get version();
+ final String version;
void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCallback callback]);
@@ -13447,9 +13089,7 @@ interface DatabaseSync {
interface DedicatedWorkerGlobalScope extends WorkerContext {
- EventListener get onmessage();
-
- void set onmessage(EventListener value);
+ EventListener onmessage;
void postMessage(Object message, [List messagePorts]);
@@ -13466,7 +13106,7 @@ interface DedicatedWorkerContext extends DedicatedWorkerGlobalScope {
interface DelayNode extends AudioNode {
- AudioParam get delayTime();
+ final AudioParam delayTime;
}
// 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
@@ -13476,7 +13116,7 @@ interface DelayNode extends AudioNode {
interface DeviceMotionEvent extends Event {
- num get interval();
+ final num interval;
}
// 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
@@ -13486,13 +13126,13 @@ interface DeviceMotionEvent extends Event {
interface DeviceOrientationEvent extends Event {
- bool get absolute();
+ final bool absolute;
- num get alpha();
+ final num alpha;
- num get beta();
+ final num beta;
- num get gamma();
+ final num gamma;
void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, num alpha, num beta, num gamma, bool absolute);
}
@@ -13556,97 +13196,77 @@ interface DirectoryReaderSync {
interface Document extends Node, NodeSelector {
- String get URL();
-
- HTMLCollection get anchors();
-
- HTMLCollection get applets();
-
- HTMLElement get body();
-
- void set body(HTMLElement value);
-
- String get characterSet();
-
- String get charset();
-
- void set charset(String value);
-
- String get compatMode();
-
- String get cookie();
-
- void set cookie(String value);
+ final String URL;
- String get defaultCharset();
+ final HTMLCollection anchors;
- DOMWindow get defaultView();
+ final HTMLCollection applets;
- DocumentType get doctype();
+ HTMLElement body;
- Element get documentElement();
+ final String characterSet;
- String get documentURI();
+ String charset;
- void set documentURI(String value);
+ final String compatMode;
- String get domain();
+ String cookie;
- void set domain(String value);
+ final String defaultCharset;
- HTMLCollection get forms();
+ final DOMWindow defaultView;
- HTMLHeadElement get head();
+ final DocumentType doctype;
- HTMLCollection get images();
+ final Element documentElement;
- DOMImplementation get implementation();
+ String documentURI;
- String get inputEncoding();
+ String domain;
- String get lastModified();
+ final HTMLCollection forms;
- HTMLCollection get links();
+ final HTMLHeadElement head;
- Location get location();
+ final HTMLCollection images;
- void set location(Location value);
+ final DOMImplementation implementation;
- String get preferredStylesheetSet();
+ final String inputEncoding;
- String get readyState();
+ final String lastModified;
- String get referrer();
+ final HTMLCollection links;
- String get selectedStylesheetSet();
+ Location location;
- void set selectedStylesheetSet(String value);
+ final String preferredStylesheetSet;
- StyleSheetList get styleSheets();
+ final String readyState;
- String get title();
+ final String referrer;
- void set title(String value);
+ String selectedStylesheetSet;
- Element get webkitCurrentFullScreenElement();
+ final StyleSheetList styleSheets;
- bool get webkitFullScreenKeyboardInputAllowed();
+ String title;
- bool get webkitHidden();
+ final Element webkitCurrentFullScreenElement;
- bool get webkitIsFullScreen();
+ final bool webkitFullScreenKeyboardInputAllowed;
- String get webkitVisibilityState();
+ final bool webkitHidden;
- String get xmlEncoding();
+ final bool webkitIsFullScreen;
- bool get xmlStandalone();
+ final String webkitVisibilityState;
- void set xmlStandalone(bool value);
+ final String xmlEncoding;
- String get xmlVersion();
+ bool xmlStandalone;
- void set xmlVersion(String value);
+ String xmlVersion;
Node adoptNode(Node source);
@@ -13750,17 +13370,17 @@ interface DocumentFragment extends Node, NodeSelector {
interface DocumentType extends Node {
- NamedNodeMap get entities();
+ final NamedNodeMap entities;
- String get internalSubset();
+ final String internalSubset;
- String get name();
+ final String name;
- NamedNodeMap get notations();
+ final NamedNodeMap notations;
- String get publicId();
+ final String publicId;
- String get systemId();
+ final String systemId;
}
// 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
@@ -13780,49 +13400,45 @@ interface Element extends Node, NodeSelector, ElementTraversal {
static final int ALLOW_KEYBOARD_INPUT = 1;
- int get childElementCount();
-
- int get clientHeight();
-
- int get clientLeft();
+ final int childElementCount;
- int get clientTop();
+ final int clientHeight;
- int get clientWidth();
+ final int clientLeft;
- Element get firstElementChild();
+ final int clientTop;
- Element get lastElementChild();
+ final int clientWidth;
- Element get nextElementSibling();
+ final Element firstElementChild;
- int get offsetHeight();
+ final Element lastElementChild;
- int get offsetLeft();
+ final Element nextElementSibling;
- Element get offsetParent();
+ final int offsetHeight;
- int get offsetTop();
+ final int offsetLeft;
- int get offsetWidth();
+ final Element offsetParent;
- Element get previousElementSibling();
+ final int offsetTop;
- int get scrollHeight();
+ final int offsetWidth;
- int get scrollLeft();
+ final Element previousElementSibling;
- void set scrollLeft(int value);
+ final int scrollHeight;
- int get scrollTop();
+ int scrollLeft;
- void set scrollTop(int value);
+ int scrollTop;
- int get scrollWidth();
+ final int scrollWidth;
- CSSStyleDeclaration get style();
+ final CSSStyleDeclaration style;
- String get tagName();
+ final String tagName;
void blur();
@@ -13904,15 +13520,15 @@ interface ElementTimeControl {
interface ElementTraversal {
- int get childElementCount();
+ final int childElementCount;
- Element get firstElementChild();
+ final Element firstElementChild;
- Element get lastElementChild();
+ final Element lastElementChild;
- Element get nextElementSibling();
+ final Element nextElementSibling;
- Element get previousElementSibling();
+ final Element previousElementSibling;
}
// 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
@@ -13922,11 +13538,11 @@ interface ElementTraversal {
interface Entity extends Node {
- String get notationName();
+ final String notationName;
- String get publicId();
+ final String publicId;
- String get systemId();
+ final String systemId;
}
// 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
@@ -13951,15 +13567,15 @@ typedef bool EntriesCallback(EntryArray entries);
interface Entry {
- DOMFileSystem get filesystem();
+ final DOMFileSystem filesystem;
- String get fullPath();
+ final String fullPath;
- bool get isDirectory();
+ final bool isDirectory;
- bool get isFile();
+ final bool isFile;
- String get name();
+ final String name;
void copyTo(DirectoryEntry parent, [String name, EntryCallback successCallback, ErrorCallback errorCallback]);
@@ -13981,7 +13597,7 @@ interface Entry {
interface EntryArray {
- int get length();
+ final int length;
Entry item(int index);
}
@@ -13993,7 +13609,7 @@ interface EntryArray {
interface EntryArraySync {
- int get length();
+ final int length;
EntrySync item(int index);
}
@@ -14012,15 +13628,15 @@ typedef bool EntryCallback(Entry entry);
interface EntrySync {
- DOMFileSystemSync get filesystem();
+ final DOMFileSystemSync filesystem;
- String get fullPath();
+ final String fullPath;
- bool get isDirectory();
+ final bool isDirectory;
- bool get isFile();
+ final bool isFile;
- String get name();
+ final String name;
EntrySync copyTo(DirectoryEntrySync parent, String name);
@@ -14049,11 +13665,11 @@ typedef bool ErrorCallback(FileError error);
interface ErrorEvent extends Event {
- String get filename();
+ final String filename;
- int get lineno();
+ final int lineno;
- String get message();
+ final String message;
}
// 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
@@ -14101,33 +13717,29 @@ interface Event {
static final int SELECT = 16384;
- bool get bubbles();
-
- bool get cancelBubble();
-
- void set cancelBubble(bool value);
+ final bool bubbles;
- bool get cancelable();
+ bool cancelBubble;
- Clipboard get clipboardData();
+ final bool cancelable;
- EventTarget get currentTarget();
+ final Clipboard clipboardData;
- bool get defaultPrevented();
+ final EventTarget currentTarget;
- int get eventPhase();
+ final bool defaultPrevented;
- bool get returnValue();
+ final int eventPhase;
- void set returnValue(bool value);
+ bool returnValue;
- EventTarget get srcElement();
+ final EventTarget srcElement;
- EventTarget get target();
+ final EventTarget target;
- int get timeStamp();
+ final int timeStamp;
- String get type();
+ final String type;
void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg);
@@ -14149,11 +13761,11 @@ interface EventException {
static final int UNSPECIFIED_EVENT_TYPE_ERR = 0;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -14171,11 +13783,11 @@ interface EventSource extends EventTarget {
static final int OPEN = 1;
- String get URL();
+ final String URL;
- int get readyState();
+ final int readyState;
- String get url();
+ final String url;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -14207,15 +13819,15 @@ interface EventTarget {
interface File extends Blob {
- String get fileName();
+ final String fileName;
- int get fileSize();
+ final int fileSize;
- Date get lastModifiedDate();
+ final Date lastModifiedDate;
- String get name();
+ final String name;
- String get webkitRelativePath();
+ final String webkitRelativePath;
}
// 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
@@ -14280,7 +13892,7 @@ interface FileError {
static final int TYPE_MISMATCH_ERR = 11;
- int get code();
+ final int code;
}
// 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
@@ -14314,11 +13926,11 @@ interface FileException {
static final int TYPE_MISMATCH_ERR = 11;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -14330,7 +13942,7 @@ interface FileException {
interface FileList {
- int get length();
+ final int length;
File item(int index);
}
@@ -14350,35 +13962,23 @@ interface FileReader default _FileReaderFactoryProvider {
static final int LOADING = 1;
- FileError get error();
-
- EventListener get onabort();
-
- void set onabort(EventListener value);
-
- EventListener get onerror();
-
- void set onerror(EventListener value);
+ final FileError error;
- EventListener get onload();
-
- void set onload(EventListener value);
-
- EventListener get onloadend();
+ EventListener onabort;
- void set onloadend(EventListener value);
+ EventListener onerror;
- EventListener get onloadstart();
+ EventListener onload;
- void set onloadstart(EventListener value);
+ EventListener onloadend;
- EventListener get onprogress();
+ EventListener onloadstart;
- void set onprogress(EventListener value);
+ EventListener onprogress;
- int get readyState();
+ final int readyState;
- Object get result();
+ final Object result;
void abort();
@@ -14433,37 +14033,25 @@ interface FileWriter {
static final int WRITING = 1;
- FileError get error();
-
- int get length();
-
- EventListener get onabort();
-
- void set onabort(EventListener value);
-
- EventListener get onerror();
-
- void set onerror(EventListener value);
-
- EventListener get onprogress();
+ final FileError error;
- void set onprogress(EventListener value);
+ final int length;
- EventListener get onwrite();
+ EventListener onabort;
- void set onwrite(EventListener value);
+ EventListener onerror;
- EventListener get onwriteend();
+ EventListener onprogress;
- void set onwriteend(EventListener value);
+ EventListener onwrite;
- EventListener get onwritestart();
+ EventListener onwriteend;
- void set onwritestart(EventListener value);
+ EventListener onwritestart;
- int get position();
+ final int position;
- int get readyState();
+ final int readyState;
void abort();
@@ -14488,9 +14076,9 @@ typedef bool FileWriterCallback(FileWriter fileWriter);
interface FileWriterSync {
- int get length();
+ final int length;
- int get position();
+ final int position;
void seek(int position);
@@ -14514,7 +14102,7 @@ interface Float32Array extends ArrayBufferView, List<num> default _TypedArrayFac
static final int BYTES_PER_ELEMENT = 4;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -14536,7 +14124,7 @@ interface Float64Array extends ArrayBufferView, List<num> default _TypedArrayFac
static final int BYTES_PER_ELEMENT = 8;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -14564,9 +14152,9 @@ interface Geolocation {
interface Geoposition {
- Coordinates get coords();
+ final Coordinates coords;
- int get timestamp();
+ final int timestamp;
}
// 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
@@ -14576,7 +14164,7 @@ interface Geoposition {
interface HTMLAllCollection {
- int get length();
+ final int length;
Node item(int index);
@@ -14592,139 +14180,79 @@ interface HTMLAllCollection {
interface HTMLAnchorElement extends HTMLElement {
- String get charset();
+ String charset;
- void set charset(String value);
+ String coords;
- String get coords();
+ String download;
- void set coords(String value);
+ String hash;
- String get download();
+ String host;
- void set download(String value);
+ String hostname;
- String get hash();
+ String href;
- void set hash(String value);
+ String hreflang;
- String get host();
+ String name;
- void set host(String value);
+ final String origin;
- String get hostname();
+ String pathname;
- void set hostname(String value);
+ String ping;
- String get href();
+ String port;
- void set href(String value);
+ String protocol;
- String get hreflang();
+ String rel;
- void set hreflang(String value);
+ String rev;
- String get name();
+ String search;
- void set name(String value);
+ String shape;
- String get origin();
+ String target;
- String get pathname();
+ final String text;
- void set pathname(String value);
+ String type;
- String get ping();
+ String toString();
+}
+// 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
+// BSD-style license that can be found in the LICENSE file.
- void set ping(String value);
+// WARNING: Do not edit - generated code.
- String get port();
+interface HTMLAppletElement extends HTMLElement {
- void set port(String value);
+ String align;
- String get protocol();
+ String alt;
- void set protocol(String value);
+ String archive;
- String get rel();
+ String code;
- void set rel(String value);
+ String codeBase;
- String get rev();
-
- void set rev(String value);
-
- String get search();
-
- void set search(String value);
-
- String get shape();
-
- void set shape(String value);
-
- String get target();
-
- void set target(String value);
-
- String get text();
-
- String get type();
-
- void set type(String value);
-
- String toString();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface HTMLAppletElement extends HTMLElement {
-
- String get align();
-
- void set align(String value);
-
- String get alt();
-
- void set alt(String value);
-
- String get archive();
-
- void set archive(String value);
-
- String get code();
-
- void set code(String value);
-
- String get codeBase();
-
- void set codeBase(String value);
-
- String get height();
-
- void set height(String value);
-
- String get hspace();
-
- void set hspace(String value);
-
- String get name();
-
- void set name(String value);
-
- String get object();
+ String height;
- void set object(String value);
+ String hspace;
- String get vspace();
+ String name;
- void set vspace(String value);
+ String object;
- String get width();
+ String vspace;
- void set width(String value);
+ String width;
}
// 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
@@ -14734,47 +14262,33 @@ interface HTMLAppletElement extends HTMLElement {
interface HTMLAreaElement extends HTMLElement {
- String get alt();
-
- void set alt(String value);
-
- String get coords();
-
- void set coords(String value);
-
- String get hash();
-
- String get host();
-
- String get hostname();
-
- String get href();
+ String alt;
- void set href(String value);
+ String coords;
- bool get noHref();
+ final String hash;
- void set noHref(bool value);
+ final String host;
- String get pathname();
+ final String hostname;
- String get ping();
+ String href;
- void set ping(String value);
+ bool noHref;
- String get port();
+ final String pathname;
- String get protocol();
+ String ping;
- String get search();
+ final String port;
- String get shape();
+ final String protocol;
- void set shape(String value);
+ final String search;
- String get target();
+ String shape;
- void set target(String value);
+ String target;
}
// 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
@@ -14792,9 +14306,7 @@ interface HTMLAudioElement extends HTMLMediaElement {
interface HTMLBRElement extends HTMLElement {
- String get clear();
-
- void set clear(String value);
+ String clear;
}
// 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
@@ -14804,13 +14316,9 @@ interface HTMLBRElement extends HTMLElement {
interface HTMLBaseElement extends HTMLElement {
- String get href();
-
- void set href(String value);
-
- String get target();
+ String href;
- void set target(String value);
+ String target;
}
// 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
@@ -14820,17 +14328,11 @@ interface HTMLBaseElement extends HTMLElement {
interface HTMLBaseFontElement extends HTMLElement {
- String get color();
-
- void set color(String value);
-
- String get face();
-
- void set face(String value);
+ String color;
- int get size();
+ String face;
- void set size(int value);
+ int size;
}
// 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
@@ -14840,29 +14342,17 @@ interface HTMLBaseFontElement extends HTMLElement {
interface HTMLBodyElement extends HTMLElement {
- String get aLink();
-
- void set aLink(String value);
-
- String get background();
-
- void set background(String value);
-
- String get bgColor();
-
- void set bgColor(String value);
-
- String get link();
+ String aLink;
- void set link(String value);
+ String background;
- String get text();
+ String bgColor;
- void set text(String value);
+ String link;
- String get vLink();
+ String text;
- void set vLink(String value);
+ String vLink;
}
// 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
@@ -14872,53 +14362,35 @@ interface HTMLBodyElement extends HTMLElement {
interface HTMLButtonElement extends HTMLElement {
- bool get autofocus();
-
- void set autofocus(bool value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- HTMLFormElement get form();
-
- String get formAction();
-
- void set formAction(String value);
-
- String get formEnctype();
-
- void set formEnctype(String value);
-
- String get formMethod();
+ bool autofocus;
- void set formMethod(String value);
+ bool disabled;
- bool get formNoValidate();
+ final HTMLFormElement form;
- void set formNoValidate(bool value);
+ String formAction;
- String get formTarget();
+ String formEnctype;
- void set formTarget(String value);
+ String formMethod;
- NodeList get labels();
+ bool formNoValidate;
- String get name();
+ String formTarget;
- void set name(String value);
+ final NodeList labels;
- String get type();
+ String name;
- String get validationMessage();
+ final String type;
- ValidityState get validity();
+ final String validationMessage;
- String get value();
+ final ValidityState validity;
- void set value(String value);
+ String value;
- bool get willValidate();
+ final bool willValidate;
bool checkValidity();
@@ -14934,13 +14406,9 @@ interface HTMLButtonElement extends HTMLElement {
interface HTMLCanvasElement extends HTMLElement {
- int get height();
-
- void set height(int value);
-
- int get width();
+ int height;
- void set width(int value);
+ int width;
Object getContext(String contextId);
@@ -14954,7 +14422,7 @@ interface HTMLCanvasElement extends HTMLElement {
interface HTMLCollection extends List<Node> {
- int get length();
+ final int length;
Node item(int index);
@@ -14966,33 +14434,9 @@ interface HTMLCollection extends List<Node> {
// WARNING: Do not edit - generated code.
-interface HTMLContentElement extends HTMLElement {
-
- String get select();
-
- void set select(String value);
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
interface HTMLDListElement extends HTMLElement {
- bool get compact();
-
- void set compact(bool value);
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface HTMLDataListElement extends HTMLElement {
-
- HTMLCollection get options();
+ bool compact;
}
// 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
@@ -15002,9 +14446,7 @@ interface HTMLDataListElement extends HTMLElement {
interface HTMLDetailsElement extends HTMLElement {
- bool get open();
-
- void set open(bool value);
+ bool open;
}
// 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
@@ -15014,9 +14456,7 @@ interface HTMLDetailsElement extends HTMLElement {
interface HTMLDirectoryElement extends HTMLElement {
- bool get compact();
-
- void set compact(bool value);
+ bool compact;
}
// 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
@@ -15026,9 +14466,7 @@ interface HTMLDirectoryElement extends HTMLElement {
interface HTMLDivElement extends HTMLElement {
- String get align();
-
- void set align(String value);
+ String align;
}
// 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
@@ -15038,47 +14476,31 @@ interface HTMLDivElement extends HTMLElement {
interface HTMLDocument extends Document {
- Element get activeElement();
-
- String get alinkColor();
-
- void set alinkColor(String value);
-
- HTMLAllCollection get all();
-
- void set all(HTMLAllCollection value);
+ final Element activeElement;
- String get bgColor();
-
- void set bgColor(String value);
-
- String get compatMode();
-
- String get designMode();
-
- void set designMode(String value);
+ String alinkColor;
- String get dir();
+ HTMLAllCollection all;
- void set dir(String value);
+ String bgColor;
- HTMLCollection get embeds();
+ final String compatMode;
- String get fgColor();
+ String designMode;
- void set fgColor(String value);
+ String dir;
- String get linkColor();
+ final HTMLCollection embeds;
- void set linkColor(String value);
+ String fgColor;
- HTMLCollection get plugins();
+ String linkColor;
- HTMLCollection get scripts();
+ final HTMLCollection plugins;
- String get vlinkColor();
+ final HTMLCollection scripts;
- void set vlinkColor(String value);
+ String vlinkColor;
void captureEvents();
@@ -15104,93 +14526,43 @@ interface HTMLDocument extends Document {
interface HTMLElement extends Element {
- String get accessKey();
-
- void set accessKey(String value);
-
- HTMLCollection get children();
-
- DOMTokenList get classList();
-
- String get className();
-
- void set className(String value);
-
- String get contentEditable();
-
- void set contentEditable(String value);
-
- String get dir();
-
- void set dir(String value);
-
- bool get draggable();
-
- void set draggable(bool value);
-
- bool get hidden();
-
- void set hidden(bool value);
-
- String get id();
-
- void set id(String value);
-
- String get innerHTML();
-
- void set innerHTML(String value);
-
- String get innerText();
-
- void set innerText(String value);
-
- bool get isContentEditable();
-
- String get itemId();
-
- void set itemId(String value);
-
- DOMSettableTokenList get itemProp();
-
- DOMSettableTokenList get itemRef();
-
- bool get itemScope();
+ String accessKey;
- void set itemScope(bool value);
+ final HTMLCollection children;
- DOMSettableTokenList get itemType();
+ final DOMTokenList classList;
- Object get itemValue();
+ String className;
- void set itemValue(Object value);
+ String contentEditable;
- String get lang();
+ String dir;
- void set lang(String value);
+ bool draggable;
- String get outerHTML();
+ bool hidden;
- void set outerHTML(String value);
+ String id;
- String get outerText();
+ String innerHTML;
- void set outerText(String value);
+ String innerText;
- bool get spellcheck();
+ final bool isContentEditable;
- void set spellcheck(bool value);
+ String lang;
- int get tabIndex();
+ String outerHTML;
- void set tabIndex(int value);
+ String outerText;
- String get title();
+ bool spellcheck;
- void set title(String value);
+ int tabIndex;
- String get webkitdropzone();
+ String title;
- void set webkitdropzone(String value);
+ String webkitdropzone;
Element insertAdjacentElement(String where, Element element);
@@ -15206,29 +14578,17 @@ interface HTMLElement extends Element {
interface HTMLEmbedElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get height();
-
- void set height(String value);
-
- String get name();
-
- void set name(String value);
-
- String get src();
+ String align;
- void set src(String value);
+ String height;
- String get type();
+ String name;
- void set type(String value);
+ String src;
- String get width();
+ String type;
- void set width(String value);
+ String width;
SVGDocument getSVGDocument();
}
@@ -15240,13 +14600,13 @@ interface HTMLEmbedElement extends HTMLElement {
interface HTMLFieldSetElement extends HTMLElement {
- HTMLFormElement get form();
+ final HTMLFormElement form;
- String get validationMessage();
+ final String validationMessage;
- ValidityState get validity();
+ final ValidityState validity;
- bool get willValidate();
+ final bool willValidate;
bool checkValidity();
@@ -15260,17 +14620,11 @@ interface HTMLFieldSetElement extends HTMLElement {
interface HTMLFontElement extends HTMLElement {
- String get color();
-
- void set color(String value);
-
- String get face();
-
- void set face(String value);
+ String color;
- String get size();
+ String face;
- void set size(String value);
+ String size;
}
// 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
@@ -15280,45 +14634,27 @@ interface HTMLFontElement extends HTMLElement {
interface HTMLFormElement extends HTMLElement {
- String get acceptCharset();
-
- void set acceptCharset(String value);
-
- String get action();
-
- void set action(String value);
-
- String get autocomplete();
-
- void set autocomplete(String value);
-
- HTMLCollection get elements();
-
- String get encoding();
-
- void set encoding(String value);
-
- String get enctype();
+ String acceptCharset;
- void set enctype(String value);
+ String action;
- int get length();
+ String autocomplete;
- String get method();
+ final HTMLCollection elements;
- void set method(String value);
+ String encoding;
- String get name();
+ String enctype;
- void set name(String value);
+ final int length;
- bool get noValidate();
+ String method;
- void set noValidate(bool value);
+ String name;
- String get target();
+ bool noValidate;
- void set target(String value);
+ String target;
bool checkValidity();
@@ -15334,49 +14670,31 @@ interface HTMLFormElement extends HTMLElement {
interface HTMLFrameElement extends HTMLElement {
- Document get contentDocument();
-
- DOMWindow get contentWindow();
-
- String get frameBorder();
-
- void set frameBorder(String value);
-
- int get height();
-
- String get location();
-
- void set location(String value);
+ final Document contentDocument;
- String get longDesc();
+ final DOMWindow contentWindow;
- void set longDesc(String value);
-
- String get marginHeight();
-
- void set marginHeight(String value);
-
- String get marginWidth();
+ String frameBorder;
- void set marginWidth(String value);
+ final int height;
- String get name();
+ String location;
- void set name(String value);
+ String longDesc;
- bool get noResize();
+ String marginHeight;
- void set noResize(bool value);
+ String marginWidth;
- String get scrolling();
+ String name;
- void set scrolling(String value);
+ bool noResize;
- String get src();
+ String scrolling;
- void set src(String value);
+ String src;
- int get width();
+ final int width;
SVGDocument getSVGDocument();
}
@@ -15388,13 +14706,9 @@ interface HTMLFrameElement extends HTMLElement {
interface HTMLFrameSetElement extends HTMLElement {
- String get cols();
-
- void set cols(String value);
-
- String get rows();
+ String cols;
- void set rows(String value);
+ String rows;
}
// 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
@@ -15404,21 +14718,13 @@ interface HTMLFrameSetElement extends HTMLElement {
interface HTMLHRElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- bool get noShade();
-
- void set noShade(bool value);
-
- String get size();
+ String align;
- void set size(String value);
+ bool noShade;
- String get width();
+ String size;
- void set width(String value);
+ String width;
}
// 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
@@ -15428,9 +14734,7 @@ interface HTMLHRElement extends HTMLElement {
interface HTMLHeadElement extends HTMLElement {
- String get profile();
-
- void set profile(String value);
+ String profile;
}
// 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
@@ -15440,9 +14744,7 @@ interface HTMLHeadElement extends HTMLElement {
interface HTMLHeadingElement extends HTMLElement {
- String get align();
-
- void set align(String value);
+ String align;
}
// 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
@@ -15452,13 +14754,9 @@ interface HTMLHeadingElement extends HTMLElement {
interface HTMLHtmlElement extends HTMLElement {
- String get manifest();
-
- void set manifest(String value);
-
- String get version();
+ String manifest;
- void set version(String value);
+ String version;
}
// 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
@@ -15468,53 +14766,31 @@ interface HTMLHtmlElement extends HTMLElement {
interface HTMLIFrameElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- Document get contentDocument();
-
- DOMWindow get contentWindow();
-
- String get frameBorder();
-
- void set frameBorder(String value);
-
- String get height();
-
- void set height(String value);
-
- String get longDesc();
-
- void set longDesc(String value);
-
- String get marginHeight();
-
- void set marginHeight(String value);
+ String align;
- String get marginWidth();
+ final Document contentDocument;
- void set marginWidth(String value);
+ final DOMWindow contentWindow;
- String get name();
+ String frameBorder;
- void set name(String value);
+ String height;
- String get sandbox();
+ String longDesc;
- void set sandbox(String value);
+ String marginHeight;
- String get scrolling();
+ String marginWidth;
- void set scrolling(String value);
+ String name;
- String get src();
+ String sandbox;
- void set src(String value);
+ String scrolling;
- String get width();
+ String src;
- void set width(String value);
+ String width;
SVGDocument getSVGDocument();
}
@@ -15526,71 +14802,43 @@ interface HTMLIFrameElement extends HTMLElement {
interface HTMLImageElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get alt();
-
- void set alt(String value);
-
- String get border();
-
- void set border(String value);
-
- bool get complete();
-
- String get crossOrigin();
-
- void set crossOrigin(String value);
-
- int get height();
-
- void set height(int value);
-
- int get hspace();
-
- void set hspace(int value);
-
- bool get isMap();
-
- void set isMap(bool value);
+ String align;
- String get longDesc();
+ String alt;
- void set longDesc(String value);
+ String border;
- String get lowsrc();
+ final bool complete;
- void set lowsrc(String value);
+ String crossOrigin;
- String get name();
+ int height;
- void set name(String value);
+ int hspace;
- int get naturalHeight();
+ bool isMap;
- int get naturalWidth();
+ String longDesc;
- String get src();
+ String lowsrc;
- void set src(String value);
+ String name;
- String get useMap();
+ final int naturalHeight;
- void set useMap(String value);
+ final int naturalWidth;
- int get vspace();
+ String src;
- void set vspace(int value);
+ String useMap;
- int get width();
+ int vspace;
- void set width(int value);
+ int width;
- int get x();
+ final int x;
- int get y();
+ final int y;
}
// 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
@@ -15600,181 +14848,97 @@ interface HTMLImageElement extends HTMLElement {
interface HTMLInputElement extends HTMLElement {
- String get accept();
-
- void set accept(String value);
-
- String get align();
-
- void set align(String value);
-
- String get alt();
-
- void set alt(String value);
-
- String get autocomplete();
-
- void set autocomplete(String value);
-
- bool get autofocus();
-
- void set autofocus(bool value);
-
- bool get checked();
-
- void set checked(bool value);
-
- bool get defaultChecked();
-
- void set defaultChecked(bool value);
-
- String get defaultValue();
-
- void set defaultValue(String value);
-
- String get dirName();
-
- void set dirName(String value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- FileList get files();
-
- HTMLFormElement get form();
-
- String get formAction();
-
- void set formAction(String value);
-
- String get formEnctype();
-
- void set formEnctype(String value);
-
- String get formMethod();
-
- void set formMethod(String value);
-
- bool get formNoValidate();
-
- void set formNoValidate(bool value);
-
- String get formTarget();
-
- void set formTarget(String value);
-
- bool get incremental();
-
- void set incremental(bool value);
-
- bool get indeterminate();
-
- void set indeterminate(bool value);
-
- NodeList get labels();
-
- HTMLElement get list();
-
- String get max();
-
- void set max(String value);
-
- int get maxLength();
-
- void set maxLength(int value);
-
- String get min();
+ String accept;
- void set min(String value);
+ String align;
- bool get multiple();
+ String alt;
- void set multiple(bool value);
+ String autocomplete;
- String get name();
+ bool autofocus;
- void set name(String value);
+ bool checked;
- String get pattern();
+ bool defaultChecked;
- void set pattern(String value);
+ String defaultValue;
- String get placeholder();
+ String dirName;
- void set placeholder(String value);
+ bool disabled;
- bool get readOnly();
+ final FileList files;
- void set readOnly(bool value);
+ final HTMLFormElement form;
- bool get required();
+ String formAction;
- void set required(bool value);
+ String formEnctype;
- HTMLOptionElement get selectedOption();
+ String formMethod;
- String get selectionDirection();
+ bool formNoValidate;
- void set selectionDirection(String value);
+ String formTarget;
- int get selectionEnd();
+ bool incremental;
- void set selectionEnd(int value);
+ bool indeterminate;
- int get selectionStart();
+ final NodeList labels;
- void set selectionStart(int value);
+ String max;
- int get size();
+ int maxLength;
- void set size(int value);
+ String min;
- String get src();
+ bool multiple;
- void set src(String value);
+ String name;
- String get step();
+ String pattern;
- void set step(String value);
+ String placeholder;
- String get type();
+ bool readOnly;
- void set type(String value);
+ bool required;
- String get useMap();
+ String selectionDirection;
- void set useMap(String value);
+ int selectionEnd;
- String get validationMessage();
+ int selectionStart;
- ValidityState get validity();
+ int size;
- String get value();
+ String src;
- void set value(String value);
+ String step;
- Date get valueAsDate();
+ String type;
- void set valueAsDate(Date value);
+ String useMap;
- num get valueAsNumber();
+ final String validationMessage;
- void set valueAsNumber(num value);
+ final ValidityState validity;
- bool get webkitGrammar();
+ String value;
- void set webkitGrammar(bool value);
+ Date valueAsDate;
- bool get webkitSpeech();
+ num valueAsNumber;
- void set webkitSpeech(bool value);
+ bool webkitGrammar;
- bool get webkitdirectory();
+ bool webkitSpeech;
- void set webkitdirectory(bool value);
+ bool webkitdirectory;
- bool get willValidate();
+ final bool willValidate;
bool checkValidity();
@@ -15798,11 +14962,9 @@ interface HTMLInputElement extends HTMLElement {
interface HTMLIsIndexElement extends HTMLInputElement {
- HTMLFormElement get form();
+ final HTMLFormElement form;
- String get prompt();
-
- void set prompt(String value);
+ String prompt;
}
// 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
@@ -15812,37 +14974,27 @@ interface HTMLIsIndexElement extends HTMLInputElement {
interface HTMLKeygenElement extends HTMLElement {
- bool get autofocus();
-
- void set autofocus(bool value);
-
- String get challenge();
-
- void set challenge(String value);
-
- bool get disabled();
-
- void set disabled(bool value);
+ bool autofocus;
- HTMLFormElement get form();
+ String challenge;
- String get keytype();
+ bool disabled;
- void set keytype(String value);
+ final HTMLFormElement form;
- NodeList get labels();
+ String keytype;
- String get name();
+ final NodeList labels;
- void set name(String value);
+ String name;
- String get type();
+ final String type;
- String get validationMessage();
+ final String validationMessage;
- ValidityState get validity();
+ final ValidityState validity;
- bool get willValidate();
+ final bool willValidate;
bool checkValidity();
@@ -15856,13 +15008,9 @@ interface HTMLKeygenElement extends HTMLElement {
interface HTMLLIElement extends HTMLElement {
- String get type();
-
- void set type(String value);
-
- int get value();
+ String type;
- void set value(int value);
+ int value;
}
// 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
@@ -15872,13 +15020,11 @@ interface HTMLLIElement extends HTMLElement {
interface HTMLLabelElement extends HTMLElement {
- HTMLElement get control();
+ final HTMLElement control;
- HTMLFormElement get form();
+ final HTMLFormElement form;
- String get htmlFor();
-
- void set htmlFor(String value);
+ String htmlFor;
}
// 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
@@ -15888,61 +15034,39 @@ interface HTMLLabelElement extends HTMLElement {
interface HTMLLegendElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- HTMLFormElement get form();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface HTMLLinkElement extends HTMLElement {
-
- String get charset();
-
- void set charset(String value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- String get href();
-
- void set href(String value);
-
- String get hreflang();
+ String align;
- void set hreflang(String value);
+ final HTMLFormElement form;
+}
+// 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
+// BSD-style license that can be found in the LICENSE file.
- String get media();
+// WARNING: Do not edit - generated code.
- void set media(String value);
+interface HTMLLinkElement extends HTMLElement {
- String get rel();
+ String charset;
- void set rel(String value);
+ bool disabled;
- String get rev();
+ String href;
- void set rev(String value);
+ String hreflang;
- StyleSheet get sheet();
+ String media;
- DOMSettableTokenList get sizes();
+ String rel;
- void set sizes(DOMSettableTokenList value);
+ String rev;
- String get target();
+ final StyleSheet sheet;
- void set target(String value);
+ DOMSettableTokenList sizes;
- String get type();
+ String target;
- void set type(String value);
+ String type;
}
// 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
@@ -15952,11 +15076,9 @@ interface HTMLLinkElement extends HTMLElement {
interface HTMLMapElement extends HTMLElement {
- HTMLCollection get areas();
+ final HTMLCollection areas;
- String get name();
-
- void set name(String value);
+ String name;
}
// 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
@@ -15966,49 +15088,27 @@ interface HTMLMapElement extends HTMLElement {
interface HTMLMarqueeElement extends HTMLElement {
- String get behavior();
-
- void set behavior(String value);
-
- String get bgColor();
-
- void set bgColor(String value);
-
- String get direction();
-
- void set direction(String value);
-
- String get height();
-
- void set height(String value);
-
- int get hspace();
-
- void set hspace(int value);
-
- int get loop();
-
- void set loop(int value);
+ String behavior;
- int get scrollAmount();
+ String bgColor;
- void set scrollAmount(int value);
+ String direction;
- int get scrollDelay();
+ String height;
- void set scrollDelay(int value);
+ int hspace;
- bool get trueSpeed();
+ int loop;
- void set trueSpeed(bool value);
+ int scrollAmount;
- int get vspace();
+ int scrollDelay;
- void set vspace(int value);
+ bool trueSpeed;
- String get width();
+ int vspace;
- void set width(String value);
+ String width;
void start();
@@ -16052,103 +15152,73 @@ interface HTMLMediaElement extends HTMLElement {
static final int SOURCE_OPEN = 1;
- bool get autoplay();
-
- void set autoplay(bool value);
-
- TimeRanges get buffered();
-
- MediaController get controller();
-
- void set controller(MediaController value);
-
- bool get controls();
-
- void set controls(bool value);
-
- String get currentSrc();
-
- num get currentTime();
-
- void set currentTime(num value);
-
- bool get defaultMuted();
-
- void set defaultMuted(bool value);
-
- num get defaultPlaybackRate();
-
- void set defaultPlaybackRate(num value);
-
- num get duration();
-
- bool get ended();
+ bool autoplay;
- MediaError get error();
+ final TimeRanges buffered;
- num get initialTime();
+ MediaController controller;
- bool get loop();
+ bool controls;
- void set loop(bool value);
+ final String currentSrc;
- String get mediaGroup();
+ num currentTime;
- void set mediaGroup(String value);
+ bool defaultMuted;
- bool get muted();
+ num defaultPlaybackRate;
- void set muted(bool value);
+ final num duration;
- int get networkState();
+ final bool ended;
- bool get paused();
+ final MediaError error;
- num get playbackRate();
+ final num initialTime;
- void set playbackRate(num value);
+ bool loop;
- TimeRanges get played();
+ String mediaGroup;
- String get preload();
+ bool muted;
- void set preload(String value);
+ final int networkState;
- int get readyState();
+ final bool paused;
- TimeRanges get seekable();
+ num playbackRate;
- bool get seeking();
+ final TimeRanges played;
- String get src();
+ String preload;
- void set src(String value);
+ final int readyState;
- num get startTime();
+ final TimeRanges seekable;
- TextTrackList get textTracks();
+ final bool seeking;
- num get volume();
+ String src;
- void set volume(num value);
+ final num startTime;
- int get webkitAudioDecodedByteCount();
+ final TextTrackList textTracks;
- bool get webkitClosedCaptionsVisible();
+ num volume;
- void set webkitClosedCaptionsVisible(bool value);
+ final int webkitAudioDecodedByteCount;
- bool get webkitHasClosedCaptions();
+ bool webkitClosedCaptionsVisible;
- String get webkitMediaSourceURL();
+ final bool webkitHasClosedCaptions;
- bool get webkitPreservesPitch();
+ final String webkitMediaSourceURL;
- void set webkitPreservesPitch(bool value);
+ bool webkitPreservesPitch;
- int get webkitSourceState();
+ final int webkitSourceState;
- int get webkitVideoDecodedByteCount();
+ final int webkitVideoDecodedByteCount;
TextTrack addTrack(String kind, [String label, String language]);
@@ -16172,9 +15242,7 @@ interface HTMLMediaElement extends HTMLElement {
interface HTMLMenuElement extends HTMLElement {
- bool get compact();
-
- void set compact(bool value);
+ bool compact;
}
// 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
@@ -16184,21 +15252,13 @@ interface HTMLMenuElement extends HTMLElement {
interface HTMLMetaElement extends HTMLElement {
- String get content();
-
- void set content(String value);
-
- String get httpEquiv();
-
- void set httpEquiv(String value);
-
- String get name();
+ String content;
- void set name(String value);
+ String httpEquiv;
- String get scheme();
+ String name;
- void set scheme(String value);
+ String scheme;
}
// 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
@@ -16208,33 +15268,21 @@ interface HTMLMetaElement extends HTMLElement {
interface HTMLMeterElement extends HTMLElement {
- HTMLFormElement get form();
-
- num get high();
-
- void set high(num value);
-
- NodeList get labels();
+ final HTMLFormElement form;
- num get low();
-
- void set low(num value);
-
- num get max();
-
- void set max(num value);
+ num high;
- num get min();
+ final NodeList labels;
- void set min(num value);
+ num low;
- num get optimum();
+ num max;
- void set optimum(num value);
+ num min;
- num get value();
+ num optimum;
- void set value(num value);
+ num value;
}
// 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
@@ -16244,13 +15292,9 @@ interface HTMLMeterElement extends HTMLElement {
interface HTMLModElement extends HTMLElement {
- String get cite();
-
- void set cite(String value);
-
- String get dateTime();
+ String cite;
- void set dateTime(String value);
+ String dateTime;
}
// 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
@@ -16260,21 +15304,13 @@ interface HTMLModElement extends HTMLElement {
interface HTMLOListElement extends HTMLElement {
- bool get compact();
-
- void set compact(bool value);
-
- bool get reversed();
-
- void set reversed(bool value);
-
- int get start();
+ bool compact;
- void set start(int value);
+ bool reversed;
- String get type();
+ int start;
- void set type(String value);
+ String type;
}
// 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
@@ -16284,79 +15320,47 @@ interface HTMLOListElement extends HTMLElement {
interface HTMLObjectElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get archive();
-
- void set archive(String value);
-
- String get border();
-
- void set border(String value);
-
- String get code();
-
- void set code(String value);
-
- String get codeBase();
-
- void set codeBase(String value);
-
- String get codeType();
-
- void set codeType(String value);
-
- Document get contentDocument();
-
- String get data();
-
- void set data(String value);
-
- bool get declare();
-
- void set declare(bool value);
+ String align;
- HTMLFormElement get form();
+ String archive;
- String get height();
+ String border;
- void set height(String value);
+ String code;
- int get hspace();
+ String codeBase;
- void set hspace(int value);
+ String codeType;
- String get name();
+ final Document contentDocument;
- void set name(String value);
+ String data;
- String get standby();
+ bool declare;
- void set standby(String value);
+ final HTMLFormElement form;
- String get type();
+ String height;
- void set type(String value);
+ int hspace;
- String get useMap();
+ String name;
- void set useMap(String value);
+ String standby;
- String get validationMessage();
+ String type;
- ValidityState get validity();
+ String useMap;
- int get vspace();
+ final String validationMessage;
- void set vspace(int value);
+ final ValidityState validity;
- String get width();
+ int vspace;
- void set width(String value);
+ String width;
- bool get willValidate();
+ final bool willValidate;
bool checkValidity();
@@ -16372,13 +15376,9 @@ interface HTMLObjectElement extends HTMLElement {
interface HTMLOptGroupElement extends HTMLElement {
- bool get disabled();
-
- void set disabled(bool value);
-
- String get label();
+ bool disabled;
- void set label(String value);
+ String label;
}
// 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
@@ -16388,33 +15388,21 @@ interface HTMLOptGroupElement extends HTMLElement {
interface HTMLOptionElement extends HTMLElement {
- bool get defaultSelected();
-
- void set defaultSelected(bool value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- HTMLFormElement get form();
-
- int get index();
-
- String get label();
+ bool defaultSelected;
- void set label(String value);
+ bool disabled;
- bool get selected();
+ final HTMLFormElement form;
- void set selected(bool value);
+ final int index;
- String get text();
+ String label;
- void set text(String value);
+ bool selected;
- String get value();
+ String text;
- void set value(String value);
+ String value;
}
// 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
@@ -16424,13 +15412,9 @@ interface HTMLOptionElement extends HTMLElement {
interface HTMLOptionsCollection extends HTMLCollection {
- int get length();
-
- void set length(int value);
-
- int get selectedIndex();
+ int length;
- void set selectedIndex(int value);
+ int selectedIndex;
void remove(int index);
}
@@ -16442,33 +15426,25 @@ interface HTMLOptionsCollection extends HTMLCollection {
interface HTMLOutputElement extends HTMLElement {
- String get defaultValue();
-
- void set defaultValue(String value);
-
- HTMLFormElement get form();
-
- DOMSettableTokenList get htmlFor();
-
- void set htmlFor(DOMSettableTokenList value);
+ String defaultValue;
- NodeList get labels();
+ final HTMLFormElement form;
- String get name();
+ DOMSettableTokenList htmlFor;
- void set name(String value);
+ final NodeList labels;
- String get type();
+ String name;
- String get validationMessage();
+ final String type;
- ValidityState get validity();
+ final String validationMessage;
- String get value();
+ final ValidityState validity;
- void set value(String value);
+ String value;
- bool get willValidate();
+ final bool willValidate;
bool checkValidity();
@@ -16482,9 +15458,7 @@ interface HTMLOutputElement extends HTMLElement {
interface HTMLParagraphElement extends HTMLElement {
- String get align();
-
- void set align(String value);
+ String align;
}
// 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
@@ -16494,21 +15468,13 @@ interface HTMLParagraphElement extends HTMLElement {
interface HTMLParamElement extends HTMLElement {
- String get name();
-
- void set name(String value);
-
- String get type();
-
- void set type(String value);
-
- String get value();
+ String name;
- void set value(String value);
+ String type;
- String get valueType();
+ String value;
- void set valueType(String value);
+ String valueType;
}
// 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
@@ -16518,13 +15484,9 @@ interface HTMLParamElement extends HTMLElement {
interface HTMLPreElement extends HTMLElement {
- int get width();
-
- void set width(int value);
-
- bool get wrap();
+ int width;
- void set wrap(bool value);
+ bool wrap;
}
// 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
@@ -16534,31 +15496,15 @@ interface HTMLPreElement extends HTMLElement {
interface HTMLProgressElement extends HTMLElement {
- HTMLFormElement get form();
-
- NodeList get labels();
-
- num get max();
-
- void set max(num value);
-
- num get position();
+ final HTMLFormElement form;
- num get value();
+ final NodeList labels;
- void set value(num value);
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface HTMLPropertiesCollection extends HTMLCollection {
+ num max;
- int get length();
+ final num position;
- Node item(int index);
+ num value;
}
// 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
@@ -16568,9 +15514,7 @@ interface HTMLPropertiesCollection extends HTMLCollection {
interface HTMLQuoteElement extends HTMLElement {
- String get cite();
-
- void set cite(String value);
+ String cite;
}
// 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
@@ -16580,37 +15524,21 @@ interface HTMLQuoteElement extends HTMLElement {
interface HTMLScriptElement extends HTMLElement {
- bool get async();
-
- void set async(bool value);
-
- String get charset();
-
- void set charset(String value);
-
- bool get defer();
-
- void set defer(bool value);
-
- String get event();
-
- void set event(String value);
-
- String get htmlFor();
+ bool async;
- void set htmlFor(String value);
+ String charset;
- String get src();
+ bool defer;
- void set src(String value);
+ String event;
- String get text();
+ String htmlFor;
- void set text(String value);
+ String src;
- String get type();
+ String text;
- void set type(String value);
+ String type;
}
// 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
@@ -16620,55 +15548,37 @@ interface HTMLScriptElement extends HTMLElement {
interface HTMLSelectElement extends HTMLElement {
- bool get autofocus();
-
- void set autofocus(bool value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- HTMLFormElement get form();
-
- NodeList get labels();
-
- int get length();
-
- void set length(int value);
-
- bool get multiple();
-
- void set multiple(bool value);
+ bool autofocus;
- String get name();
+ bool disabled;
- void set name(String value);
+ final HTMLFormElement form;
- HTMLOptionsCollection get options();
+ final NodeList labels;
- bool get required();
+ int length;
- void set required(bool value);
+ bool multiple;
- int get selectedIndex();
+ String name;
- void set selectedIndex(int value);
+ final HTMLOptionsCollection options;
- int get size();
+ bool required;
- void set size(int value);
+ int selectedIndex;
- String get type();
+ int size;
- String get validationMessage();
+ final String type;
- ValidityState get validity();
+ final String validationMessage;
- String get value();
+ final ValidityState validity;
- void set value(String value);
+ String value;
- bool get willValidate();
+ final bool willValidate;
void add(HTMLElement element, HTMLElement before);
@@ -16690,17 +15600,11 @@ interface HTMLSelectElement extends HTMLElement {
interface HTMLSourceElement extends HTMLElement {
- String get media();
-
- void set media(String value);
-
- String get src();
-
- void set src(String value);
+ String media;
- String get type();
+ String src;
- void set type(String value);
+ String type;
}
// 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
@@ -16718,23 +15622,13 @@ interface HTMLSpanElement extends HTMLElement {
interface HTMLStyleElement extends HTMLElement {
- bool get disabled();
-
- void set disabled(bool value);
-
- String get media();
-
- void set media(String value);
-
- bool get scoped();
-
- void set scoped(bool value);
+ bool disabled;
- StyleSheet get sheet();
+ String media;
- String get type();
+ final StyleSheet sheet;
- void set type(String value);
+ String type;
}
// 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
@@ -16744,9 +15638,7 @@ interface HTMLStyleElement extends HTMLElement {
interface HTMLTableCaptionElement extends HTMLElement {
- String get align();
-
- void set align(String value);
+ String align;
}
// 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
@@ -16756,63 +15648,35 @@ interface HTMLTableCaptionElement extends HTMLElement {
interface HTMLTableCellElement extends HTMLElement {
- String get abbr();
-
- void set abbr(String value);
-
- String get align();
-
- void set align(String value);
-
- String get axis();
-
- void set axis(String value);
-
- String get bgColor();
-
- void set bgColor(String value);
-
- int get cellIndex();
-
- String get ch();
-
- void set ch(String value);
-
- String get chOff();
-
- void set chOff(String value);
-
- int get colSpan();
-
- void set colSpan(int value);
+ String abbr;
- String get headers();
+ String align;
- void set headers(String value);
+ String axis;
- String get height();
+ String bgColor;
- void set height(String value);
+ final int cellIndex;
- bool get noWrap();
+ String ch;
- void set noWrap(bool value);
+ String chOff;
- int get rowSpan();
+ int colSpan;
- void set rowSpan(int value);
+ String headers;
- String get scope();
+ String height;
- void set scope(String value);
+ bool noWrap;
- String get vAlign();
+ int rowSpan;
- void set vAlign(String value);
+ String scope;
- String get width();
+ String vAlign;
- void set width(String value);
+ String width;
}
// 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
@@ -16822,29 +15686,17 @@ interface HTMLTableCellElement extends HTMLElement {
interface HTMLTableColElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get ch();
-
- void set ch(String value);
-
- String get chOff();
-
- void set chOff(String value);
-
- int get span();
+ String align;
- void set span(int value);
+ String ch;
- String get vAlign();
+ String chOff;
- void set vAlign(String value);
+ int span;
- String get width();
+ String vAlign;
- void set width(String value);
+ String width;
}
// 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
@@ -16854,57 +15706,33 @@ interface HTMLTableColElement extends HTMLElement {
interface HTMLTableElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get bgColor();
-
- void set bgColor(String value);
-
- String get border();
-
- void set border(String value);
-
- HTMLTableCaptionElement get caption();
-
- void set caption(HTMLTableCaptionElement value);
-
- String get cellPadding();
-
- void set cellPadding(String value);
-
- String get cellSpacing();
-
- void set cellSpacing(String value);
-
- String get frame();
+ String align;
- void set frame(String value);
+ String bgColor;
- HTMLCollection get rows();
+ String border;
- String get rules();
+ HTMLTableCaptionElement caption;
- void set rules(String value);
+ String cellPadding;
- String get summary();
+ String cellSpacing;
- void set summary(String value);
+ String frame;
- HTMLCollection get tBodies();
+ final HTMLCollection rows;
- HTMLTableSectionElement get tFoot();
+ String rules;
- void set tFoot(HTMLTableSectionElement value);
+ String summary;
- HTMLTableSectionElement get tHead();
+ final HTMLCollection tBodies;
- void set tHead(HTMLTableSectionElement value);
+ HTMLTableSectionElement tFoot;
- String get width();
+ HTMLTableSectionElement tHead;
- void set width(String value);
+ String width;
HTMLElement createCaption();
@@ -16930,31 +15758,21 @@ interface HTMLTableElement extends HTMLElement {
interface HTMLTableRowElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get bgColor();
-
- void set bgColor(String value);
-
- HTMLCollection get cells();
-
- String get ch();
+ String align;
- void set ch(String value);
+ String bgColor;
- String get chOff();
+ final HTMLCollection cells;
- void set chOff(String value);
+ String ch;
- int get rowIndex();
+ String chOff;
- int get sectionRowIndex();
+ final int rowIndex;
- String get vAlign();
+ final int sectionRowIndex;
- void set vAlign(String value);
+ String vAlign;
void deleteCell(int index);
@@ -16968,23 +15786,15 @@ interface HTMLTableRowElement extends HTMLElement {
interface HTMLTableSectionElement extends HTMLElement {
- String get align();
-
- void set align(String value);
-
- String get ch();
-
- void set ch(String value);
-
- String get chOff();
+ String align;
- void set chOff(String value);
+ String ch;
- HTMLCollection get rows();
+ String chOff;
- String get vAlign();
+ final HTMLCollection rows;
- void set vAlign(String value);
+ String vAlign;
void deleteRow(int index);
@@ -16998,83 +15808,51 @@ interface HTMLTableSectionElement extends HTMLElement {
interface HTMLTextAreaElement extends HTMLElement {
- bool get autofocus();
-
- void set autofocus(bool value);
-
- int get cols();
-
- void set cols(int value);
-
- String get defaultValue();
-
- void set defaultValue(String value);
-
- String get dirName();
-
- void set dirName(String value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- HTMLFormElement get form();
-
- NodeList get labels();
-
- int get maxLength();
-
- void set maxLength(int value);
-
- String get name();
-
- void set name(String value);
-
- String get placeholder();
+ bool autofocus;
- void set placeholder(String value);
+ int cols;
- bool get readOnly();
+ String defaultValue;
- void set readOnly(bool value);
+ String dirName;
- bool get required();
+ bool disabled;
- void set required(bool value);
+ final HTMLFormElement form;
- int get rows();
+ final NodeList labels;
- void set rows(int value);
+ int maxLength;
- String get selectionDirection();
+ String name;
- void set selectionDirection(String value);
+ String placeholder;
- int get selectionEnd();
+ bool readOnly;
- void set selectionEnd(int value);
+ bool required;
- int get selectionStart();
+ int rows;
- void set selectionStart(int value);
+ String selectionDirection;
- int get textLength();
+ int selectionEnd;
- String get type();
+ int selectionStart;
- String get validationMessage();
+ final int textLength;
- ValidityState get validity();
+ final String type;
- String get value();
+ final String validationMessage;
- void set value(String value);
+ final ValidityState validity;
- bool get willValidate();
+ String value;
- String get wrap();
+ final bool willValidate;
- void set wrap(String value);
+ String wrap;
bool checkValidity();
@@ -17092,9 +15870,7 @@ interface HTMLTextAreaElement extends HTMLElement {
interface HTMLTitleElement extends HTMLElement {
- String get text();
-
- void set text(String value);
+ String text;
}
// 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
@@ -17112,29 +15888,19 @@ interface HTMLTrackElement extends HTMLElement {
static final int NONE = 0;
- bool get isDefault();
-
- void set isDefault(bool value);
-
- String get kind();
-
- void set kind(String value);
-
- String get label();
-
- void set label(String value);
+ bool isDefault;
- int get readyState();
+ String kind;
- String get src();
+ String label;
- void set src(String value);
+ final int readyState;
- String get srclang();
+ String src;
- void set srclang(String value);
+ String srclang;
- TextTrack get track();
+ final TextTrack track;
}
// 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
@@ -17144,13 +15910,9 @@ interface HTMLTrackElement extends HTMLElement {
interface HTMLUListElement extends HTMLElement {
- bool get compact();
-
- void set compact(bool value);
-
- String get type();
+ bool compact;
- void set type(String value);
+ String type;
}
// 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
@@ -17168,29 +15930,23 @@ interface HTMLUnknownElement extends HTMLElement {
interface HTMLVideoElement extends HTMLMediaElement {
- int get height();
-
- void set height(int value);
-
- String get poster();
-
- void set poster(String value);
+ int height;
- int get videoHeight();
+ String poster;
- int get videoWidth();
+ final int videoHeight;
- int get webkitDecodedFrameCount();
+ final int videoWidth;
- bool get webkitDisplayingFullscreen();
+ final int webkitDecodedFrameCount;
- int get webkitDroppedFrameCount();
+ final bool webkitDisplayingFullscreen;
- bool get webkitSupportsFullscreen();
+ final int webkitDroppedFrameCount;
- int get width();
+ final bool webkitSupportsFullscreen;
- void set width(int value);
+ int width;
void webkitEnterFullScreen();
@@ -17208,9 +15964,9 @@ interface HTMLVideoElement extends HTMLMediaElement {
interface HashChangeEvent extends Event {
- String get newURL();
+ final String newURL;
- String get oldURL();
+ final String oldURL;
void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL);
}
@@ -17222,9 +15978,9 @@ interface HashChangeEvent extends Event {
interface HighPass2FilterNode extends AudioNode {
- AudioParam get cutoff();
+ final AudioParam cutoff;
- AudioParam get resonance();
+ final AudioParam resonance;
}
// 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
@@ -17234,7 +15990,7 @@ interface HighPass2FilterNode extends AudioNode {
interface History {
- int get length();
+ final int length;
void back();
@@ -17270,13 +16026,13 @@ interface IDBCursor {
static final int PREV_NO_DUPLICATE = 3;
- int get direction();
+ final int direction;
- IDBKey get key();
+ final IDBKey key;
- IDBKey get primaryKey();
+ final IDBKey primaryKey;
- IDBAny get source();
+ final IDBAny source;
void continueFunction([IDBKey key]);
@@ -17292,7 +16048,7 @@ interface IDBCursor {
interface IDBCursorWithValue extends IDBCursor {
- IDBAny get value();
+ final IDBAny value;
}
// 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
@@ -17302,21 +16058,15 @@ interface IDBCursorWithValue extends IDBCursor {
interface IDBDatabase {
- String get name();
-
- EventListener get onabort();
-
- void set onabort(EventListener value);
-
- EventListener get onerror();
+ final String name;
- void set onerror(EventListener value);
+ EventListener onabort;
- EventListener get onversionchange();
+ EventListener onerror;
- void set onversionchange(EventListener value);
+ EventListener onversionchange;
- String get version();
+ final String version;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -17342,13 +16092,9 @@ interface IDBDatabase {
interface IDBDatabaseError {
- int get code();
-
- void set code(int value);
-
- String get message();
+ int code;
- void set message(String value);
+ String message;
}
// 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
@@ -17384,11 +16130,11 @@ interface IDBDatabaseException {
static final int VER_ERR = 12;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -17416,15 +16162,15 @@ interface IDBFactory {
interface IDBIndex {
- String get keyPath();
+ final String keyPath;
- bool get multiEntry();
+ final bool multiEntry;
- String get name();
+ final String name;
- IDBObjectStore get objectStore();
+ final IDBObjectStore objectStore;
- bool get unique();
+ final bool unique;
IDBRequest count([IDBKeyRange range]);
@@ -17452,13 +16198,13 @@ interface IDBKey {
interface IDBKeyRange {
- IDBKey get lower();
+ final IDBKey lower;
- bool get lowerOpen();
+ final bool lowerOpen;
- IDBKey get upper();
+ final IDBKey upper;
- bool get upperOpen();
+ final bool upperOpen;
IDBKeyRange bound(IDBKey lower, IDBKey upper, [bool lowerOpen, bool upperOpen]);
@@ -17476,11 +16222,11 @@ interface IDBKeyRange {
interface IDBObjectStore {
- String get keyPath();
+ final String keyPath;
- String get name();
+ final String name;
- IDBTransaction get transaction();
+ final IDBTransaction transaction;
IDBRequest add(Dynamic value, [IDBKey key]);
@@ -17514,25 +16260,21 @@ interface IDBRequest {
static final int LOADING = 1;
- int get errorCode();
-
- EventListener get onerror();
-
- void set onerror(EventListener value);
+ final int errorCode;
- EventListener get onsuccess();
+ EventListener onerror;
- void set onsuccess(EventListener value);
+ EventListener onsuccess;
- int get readyState();
+ final int readyState;
- IDBAny get result();
+ final IDBAny result;
- IDBAny get source();
+ final IDBAny source;
- IDBTransaction get transaction();
+ final IDBTransaction transaction;
- String get webkitErrorMessage();
+ final String webkitErrorMessage;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -17554,21 +16296,15 @@ interface IDBTransaction {
static final int VERSION_CHANGE = 2;
- IDBDatabase get db();
-
- int get mode();
+ final IDBDatabase db;
- EventListener get onabort();
-
- void set onabort(EventListener value);
-
- EventListener get oncomplete();
+ final int mode;
- void set oncomplete(EventListener value);
+ EventListener onabort;
- EventListener get onerror();
+ EventListener oncomplete;
- void set onerror(EventListener value);
+ EventListener onerror;
void abort();
@@ -17588,7 +16324,7 @@ interface IDBTransaction {
interface IDBVersionChangeEvent extends Event {
- String get version();
+ final String version;
}
// 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
@@ -17598,115 +16334,21 @@ interface IDBVersionChangeEvent extends Event {
interface IDBVersionChangeRequest extends IDBRequest {
- EventListener get onblocked();
-
- void set onblocked(EventListener value);
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface ImageData {
-
- CanvasPixelArray get data();
-
- int get height();
-
- int get width();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface InjectedScriptHost {
-
- void clearConsoleMessages();
-
- void copyText(String text);
-
- int databaseId(Object database);
-
- void didCreateWorker(int id, String url, bool isFakeWorker);
-
- void didDestroyWorker(int id);
-
- Object evaluate(String text);
-
- Object functionDetails(Object object);
-
- void inspect(Object objectId, Object hints);
-
- Object inspectedNode(int num);
-
- Object internalConstructorName(Object object);
-
- bool isHTMLAllCollection(Object object);
-
- int nextWorkerId();
-
- int storageId(Object storage);
-
- String type(Object object);
+ EventListener onblocked;
}
// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface InspectorFrontendHost {
-
- void bringToFront();
-
- bool canSaveAs();
-
- void closeWindow();
-
- void copyText(String text);
-
- String hiddenPanels();
-
- void inspectedURLChanged(String newURL);
-
- String loadResourceSynchronously(String url);
-
- void loaded();
-
- String localizedStringsURL();
-
- void moveWindowBy(num x, num y);
-
- void openInNewTab(String url);
-
- String platform();
-
- String port();
-
- void recordActionTaken(int actionCode);
-
- void recordPanelShown(int panelCode);
-
- void recordSettingChanged(int settingChanged);
-
- void requestAttachWindow();
-
- void requestDetachWindow();
-
- void requestSetDockSide(String side);
+// BSD-style license that can be found in the LICENSE file.
- void saveAs(String fileName, String content);
+// WARNING: Do not edit - generated code.
- void sendMessageToBackend(String message);
+interface ImageData {
- void setAttachedWindowHeight(int height);
+ final CanvasPixelArray data;
- void setInjectedScriptForOrigin(String origin, String script);
+ final int height;
- void showContextMenu(MouseEvent event, Object items);
+ final int width;
}
// 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
@@ -17724,7 +16366,7 @@ interface Int16Array extends ArrayBufferView, List<int> default _TypedArrayFacto
static final int BYTES_PER_ELEMENT = 2;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -17746,7 +16388,7 @@ interface Int32Array extends ArrayBufferView, List<int> default _TypedArrayFacto
static final int BYTES_PER_ELEMENT = 4;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -17768,7 +16410,7 @@ interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor
static final int BYTES_PER_ELEMENT = 1;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -17782,11 +16424,9 @@ interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor
interface JavaScriptAudioNode extends AudioNode {
- int get bufferSize();
-
- EventListener get onaudioprocess();
+ final int bufferSize;
- void set onaudioprocess(EventListener value);
+ EventListener onaudioprocess;
}
// 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
@@ -17806,21 +16446,21 @@ interface JavaScriptCallFrame {
static final int WITH_SCOPE = 2;
- JavaScriptCallFrame get caller();
+ final JavaScriptCallFrame caller;
- int get column();
+ final int column;
- String get functionName();
+ final String functionName;
- int get line();
+ final int line;
- List get scopeChain();
+ final List scopeChain;
- int get sourceID();
+ final int sourceID;
- Object get thisObject();
+ final Object thisObject;
- String get type();
+ final String type;
void evaluate(String script);
@@ -17834,19 +16474,19 @@ interface JavaScriptCallFrame {
interface KeyboardEvent extends UIEvent {
- bool get altGraphKey();
+ final bool altGraphKey;
- bool get altKey();
+ final bool altKey;
- bool get ctrlKey();
+ final bool ctrlKey;
- String get keyIdentifier();
+ final String keyIdentifier;
- int get keyLocation();
+ final int keyLocation;
- bool get metaKey();
+ final bool metaKey;
- bool get shiftKey();
+ final bool shiftKey;
void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
}
@@ -17858,39 +16498,23 @@ interface KeyboardEvent extends UIEvent {
interface Location {
- String get hash();
-
- void set hash(String value);
-
- String get host();
-
- void set host(String value);
-
- String get hostname();
-
- void set hostname(String value);
-
- String get href();
-
- void set href(String value);
-
- String get origin();
+ String hash;
- String get pathname();
+ String host;
- void set pathname(String value);
+ String hostname;
- String get port();
+ String href;
- void set port(String value);
+ final String origin;
- String get protocol();
+ String pathname;
- void set protocol(String value);
+ String port;
- String get search();
+ String protocol;
- void set search(String value);
+ String search;
void assign(String url);
@@ -17908,9 +16532,9 @@ interface Location {
interface LowPass2FilterNode extends AudioNode {
- AudioParam get cutoff();
+ final AudioParam cutoff;
- AudioParam get resonance();
+ final AudioParam resonance;
}
// 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
@@ -17920,35 +16544,25 @@ interface LowPass2FilterNode extends AudioNode {
interface MediaController {
- TimeRanges get buffered();
-
- num get currentTime();
-
- void set currentTime(num value);
+ final TimeRanges buffered;
- num get defaultPlaybackRate();
-
- void set defaultPlaybackRate(num value);
-
- num get duration();
-
- bool get muted();
+ num currentTime;
- void set muted(bool value);
+ num defaultPlaybackRate;
- bool get paused();
+ final num duration;
- num get playbackRate();
+ bool muted;
- void set playbackRate(num value);
+ final bool paused;
- TimeRanges get played();
+ num playbackRate;
- TimeRanges get seekable();
+ final TimeRanges played;
- num get volume();
+ final TimeRanges seekable;
- void set volume(num value);
+ num volume;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -17968,7 +16582,7 @@ interface MediaController {
interface MediaElementAudioSourceNode extends AudioSourceNode {
- HTMLMediaElement get mediaElement();
+ final HTMLMediaElement mediaElement;
}
// 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
@@ -17986,7 +16600,7 @@ interface MediaError {
static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
- int get code();
+ final int code;
}
// 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
@@ -17996,11 +16610,9 @@ interface MediaError {
interface MediaList extends List<String> {
- int get length();
-
- String get mediaText();
+ final int length;
- void set mediaText(String value);
+ String mediaText;
void appendMedium(String newMedium);
@@ -18016,9 +16628,9 @@ interface MediaList extends List<String> {
interface MediaQueryList {
- bool get matches();
+ final bool matches;
- String get media();
+ final String media;
void addListener(MediaQueryListListener listener);
@@ -18042,11 +16654,11 @@ interface MediaQueryListListener {
interface MemoryInfo {
- int get jsHeapSizeLimit();
+ final int jsHeapSizeLimit;
- int get totalJSHeapSize();
+ final int totalJSHeapSize;
- int get usedJSHeapSize();
+ final int usedJSHeapSize;
}
// 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
@@ -18056,9 +16668,9 @@ interface MemoryInfo {
interface MessageChannel {
- MessagePort get port1();
+ final MessagePort port1;
- MessagePort get port2();
+ final MessagePort port2;
}
// 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
@@ -18068,15 +16680,15 @@ interface MessageChannel {
interface MessageEvent extends Event {
- Object get data();
+ final Object data;
- String get lastEventId();
+ final String lastEventId;
- String get origin();
+ final String origin;
- List get ports();
+ final List ports;
- DOMWindow get source();
+ final DOMWindow source;
void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Object dataArg, String originArg, String lastEventIdArg, DOMWindow sourceArg, List messagePorts);
@@ -18112,7 +16724,7 @@ interface MessagePort extends EventTarget {
interface Metadata {
- Date get modificationTime();
+ final Date modificationTime;
}
// 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
@@ -18129,43 +16741,39 @@ typedef bool MetadataCallback(Metadata metadata);
interface MouseEvent extends UIEvent {
- bool get altKey();
-
- int get button();
-
- int get clientX();
+ final bool altKey;
- int get clientY();
+ final int button;
- bool get ctrlKey();
+ final int clientX;
- Clipboard get dataTransfer();
+ final int clientY;
- Node get fromElement();
+ final bool ctrlKey;
- bool get metaKey();
+ final Clipboard dataTransfer;
- int get offsetX();
+ final Node fromElement;
- int get offsetY();
+ final bool metaKey;
- EventTarget get relatedTarget();
+ final int offsetX;
- int get screenX();
+ final int offsetY;
- int get screenY();
+ final EventTarget relatedTarget;
- bool get shiftKey();
+ final int screenX;
- Node get toElement();
+ final int screenY;
- int get webkitMovementX();
+ final bool shiftKey;
- int get webkitMovementY();
+ final Node toElement;
- int get x();
+ final int x;
- int get y();
+ final int y;
void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarget);
}
@@ -18175,14 +16783,6 @@ interface MouseEvent extends UIEvent {
// WARNING: Do not edit - generated code.
-interface MutationCallback {
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
interface MutationEvent extends Event {
static final int ADDITION = 2;
@@ -18191,15 +16791,15 @@ interface MutationEvent extends Event {
static final int REMOVAL = 3;
- int get attrChange();
+ final int attrChange;
- String get attrName();
+ final String attrName;
- String get newValue();
+ final String newValue;
- String get prevValue();
+ final String prevValue;
- Node get relatedNode();
+ final Node relatedNode;
void initMutationEvent(String type, bool canBubble, bool cancelable, Node relatedNode, String prevValue, String newValue, String attrName, int attrChange);
}
@@ -18209,35 +16809,9 @@ interface MutationEvent extends Event {
// WARNING: Do not edit - generated code.
-interface MutationRecord {
-
- NodeList get addedNodes();
-
- String get attributeName();
-
- String get attributeNamespace();
-
- Node get nextSibling();
-
- String get oldValue();
-
- Node get previousSibling();
-
- NodeList get removedNodes();
-
- Node get target();
-
- String get type();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
interface NamedNodeMap extends List<Node> {
- int get length();
+ final int length;
Node getNamedItem(String name);
@@ -18261,35 +16835,35 @@ interface NamedNodeMap extends List<Node> {
interface Navigator {
- String get appCodeName();
+ final String appCodeName;
- String get appName();
+ final String appName;
- String get appVersion();
+ final String appVersion;
- bool get cookieEnabled();
+ final bool cookieEnabled;
- Geolocation get geolocation();
+ final Geolocation geolocation;
- String get language();
+ final String language;
- DOMMimeTypeArray get mimeTypes();
+ final DOMMimeTypeArray mimeTypes;
- bool get onLine();
+ final bool onLine;
- String get platform();
+ final String platform;
- DOMPluginArray get plugins();
+ final DOMPluginArray plugins;
- String get product();
+ final String product;
- String get productSub();
+ final String productSub;
- String get userAgent();
+ final String userAgent;
- String get vendor();
+ final String vendor;
- String get vendorSub();
+ final String vendorSub;
void getStorageUpdates();
@@ -18341,45 +16915,39 @@ interface Node extends EventTarget {
static final int TEXT_NODE = 3;
- NamedNodeMap get attributes();
-
- String get baseURI();
+ final NamedNodeMap attributes;
- NodeList get childNodes();
-
- Node get firstChild();
-
- Node get lastChild();
+ final String baseURI;
- String get localName();
+ final NodeList childNodes;
- String get namespaceURI();
+ final Node firstChild;
- Node get nextSibling();
+ final Node lastChild;
- String get nodeName();
+ final String localName;
- int get nodeType();
+ final String namespaceURI;
- String get nodeValue();
+ final Node nextSibling;
- void set nodeValue(String value);
+ final String nodeName;
- Document get ownerDocument();
+ final int nodeType;
- Element get parentElement();
+ String nodeValue;
- Node get parentNode();
+ final Document ownerDocument;
- String get prefix();
+ final Element parentElement;
- void set prefix(String value);
+ final Node parentNode;
- Node get previousSibling();
+ String prefix;
- String get textContent();
+ final Node previousSibling;
- void set textContent(String value);
+ String textContent;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -18469,17 +17037,17 @@ interface NodeFilter {
interface NodeIterator {
- bool get expandEntityReferences();
+ final bool expandEntityReferences;
- NodeFilter get filter();
+ final NodeFilter filter;
- bool get pointerBeforeReferenceNode();
+ final bool pointerBeforeReferenceNode;
- Node get referenceNode();
+ final Node referenceNode;
- Node get root();
+ final Node root;
- int get whatToShow();
+ final int whatToShow;
void detach();
@@ -18495,7 +17063,7 @@ interface NodeIterator {
interface NodeList extends List<Node> {
- int get length();
+ final int length;
Node item(int index);
}
@@ -18519,9 +17087,9 @@ interface NodeSelector {
interface Notation extends Node {
- String get publicId();
+ final String publicId;
- String get systemId();
+ final String systemId;
}
// 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
@@ -18531,13 +17099,9 @@ interface Notation extends Node {
interface Notification extends EventTarget {
- String get dir();
-
- void set dir(String value);
-
- String get replaceId();
+ String dir;
- void set replaceId(String value);
+ String replaceId;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -18609,7 +17173,7 @@ interface OESVertexArrayObject {
interface OfflineAudioCompletionEvent extends Event {
- AudioBuffer get renderedBuffer();
+ final AudioBuffer renderedBuffer;
}
// 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
@@ -18621,11 +17185,11 @@ interface OperationNotAllowedException {
static final int NOT_ALLOWED_ERR = 1;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -18643,11 +17207,11 @@ interface OverflowEvent extends Event {
static final int VERTICAL = 1;
- bool get horizontalOverflow();
+ final bool horizontalOverflow;
- int get orient();
+ final int orient;
- bool get verticalOverflow();
+ final bool verticalOverflow;
}
// 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
@@ -18657,7 +17221,7 @@ interface OverflowEvent extends Event {
interface PageTransitionEvent extends Event {
- bool get persisted();
+ final bool persisted;
}
// 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
@@ -18667,11 +17231,11 @@ interface PageTransitionEvent extends Event {
interface Performance {
- MemoryInfo get memory();
+ final MemoryInfo memory;
- PerformanceNavigation get navigation();
+ final PerformanceNavigation navigation;
- PerformanceTiming get timing();
+ final PerformanceTiming timing;
}
// 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
@@ -18689,9 +17253,9 @@ interface PerformanceNavigation {
static final int TYPE_RESERVED = 255;
- int get redirectCount();
+ final int redirectCount;
- int get type();
+ final int type;
}
// 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
@@ -18701,61 +17265,47 @@ interface PerformanceNavigation {
interface PerformanceTiming {
- int get connectEnd();
-
- int get connectStart();
-
- int get domComplete();
-
- int get domContentLoadedEventEnd();
-
- int get domContentLoadedEventStart();
-
- int get domInteractive();
+ final int connectEnd;
- int get domLoading();
+ final int connectStart;
- int get domainLookupEnd();
+ final int domComplete;
- int get domainLookupStart();
+ final int domContentLoadedEventEnd;
- int get fetchStart();
+ final int domContentLoadedEventStart;
- int get loadEventEnd();
+ final int domInteractive;
- int get loadEventStart();
+ final int domLoading;
- int get navigationStart();
+ final int domainLookupEnd;
- int get redirectEnd();
+ final int domainLookupStart;
- int get redirectStart();
+ final int fetchStart;
- int get requestStart();
+ final int loadEventEnd;
- int get responseEnd();
+ final int loadEventStart;
- int get responseStart();
+ final int navigationStart;
- int get secureConnectionStart();
+ final int redirectEnd;
- int get unloadEventEnd();
+ final int redirectStart;
- int get unloadEventStart();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
+ final int requestStart;
-// WARNING: Do not edit - generated code.
+ final int responseEnd;
-interface PointerLock {
+ final int responseStart;
- bool get isLocked();
+ final int secureConnectionStart;
- void lock(Element target, [VoidCallback successCallback, VoidCallback failureCallback]);
+ final int unloadEventEnd;
- void unlock();
+ final int unloadEventStart;
}
// 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
@@ -18765,7 +17315,7 @@ interface PointerLock {
interface PopStateEvent extends Event {
- Object get state();
+ final Object state;
}
// 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
@@ -18788,9 +17338,9 @@ interface PositionError {
static final int TIMEOUT = 3;
- int get code();
+ final int code;
- String get message();
+ final String message;
}
// 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
@@ -18807,13 +17357,11 @@ typedef bool PositionErrorCallback(PositionError error);
interface ProcessingInstruction extends Node {
- String get data();
-
- void set data(String value);
+ String data;
- StyleSheet get sheet();
+ final StyleSheet sheet;
- String get target();
+ final String target;
}
// 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
@@ -18823,11 +17371,11 @@ interface ProcessingInstruction extends Node {
interface ProgressEvent extends Event {
- bool get lengthComputable();
+ final bool lengthComputable;
- int get loaded();
+ final int loaded;
- int get total();
+ final int total;
}
// 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
@@ -18837,11 +17385,11 @@ interface ProgressEvent extends Event {
interface RGBColor {
- CSSPrimitiveValue get blue();
+ final CSSPrimitiveValue blue;
- CSSPrimitiveValue get green();
+ final CSSPrimitiveValue green;
- CSSPrimitiveValue get red();
+ final CSSPrimitiveValue red;
}
// 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
@@ -18867,17 +17415,17 @@ interface Range {
static final int START_TO_START = 0;
- bool get collapsed();
+ final bool collapsed;
- Node get commonAncestorContainer();
+ final Node commonAncestorContainer;
- Node get endContainer();
+ final Node endContainer;
- int get endOffset();
+ final int endOffset;
- Node get startContainer();
+ final Node startContainer;
- int get startOffset();
+ final int startOffset;
DocumentFragment cloneContents();
@@ -18941,11 +17489,11 @@ interface RangeException {
static final int INVALID_NODE_TYPE_ERR = 2;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -18957,23 +17505,15 @@ interface RangeException {
interface RealtimeAnalyserNode extends AudioNode {
- int get fftSize();
-
- void set fftSize(int value);
-
- int get frequencyBinCount();
-
- num get maxDecibels();
-
- void set maxDecibels(num value);
+ int fftSize;
- num get minDecibels();
+ final int frequencyBinCount;
- void set minDecibels(num value);
+ num maxDecibels;
- num get smoothingTimeConstant();
+ num minDecibels;
- void set smoothingTimeConstant(num value);
+ num smoothingTimeConstant;
void getByteFrequencyData(Uint8Array array);
@@ -18989,13 +17529,13 @@ interface RealtimeAnalyserNode extends AudioNode {
interface Rect {
- CSSPrimitiveValue get bottom();
+ final CSSPrimitiveValue bottom;
- CSSPrimitiveValue get left();
+ final CSSPrimitiveValue left;
- CSSPrimitiveValue get right();
+ final CSSPrimitiveValue right;
- CSSPrimitiveValue get top();
+ final CSSPrimitiveValue top;
}
// 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
@@ -19021,9 +17561,9 @@ interface SQLError {
static final int VERSION_ERR = 2;
- int get code();
+ final int code;
- String get message();
+ final String message;
}
// 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
@@ -19049,9 +17589,9 @@ interface SQLException {
static final int VERSION_ERR = 2;
- int get code();
+ final int code;
- String get message();
+ final String message;
}
// 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
@@ -19061,11 +17601,11 @@ interface SQLException {
interface SQLResultSet {
- int get insertId();
+ final int insertId;
- SQLResultSetRowList get rows();
+ final SQLResultSetRowList rows;
- int get rowsAffected();
+ final int rowsAffected;
}
// 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
@@ -19075,7 +17615,7 @@ interface SQLResultSet {
interface SQLResultSetRowList {
- int get length();
+ final int length;
Object item(int index);
}
@@ -19138,7 +17678,7 @@ typedef bool SQLTransactionSyncCallback(SQLTransactionSync transaction);
interface SVGAElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedString get target();
+ final SVGAnimatedString target;
}
// 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
@@ -19156,13 +17696,9 @@ interface SVGAltGlyphDefElement extends SVGElement {
interface SVGAltGlyphElement extends SVGTextPositioningElement, SVGURIReference {
- String get format();
-
- void set format(String value);
-
- String get glyphRef();
+ String format;
- void set glyphRef(String value);
+ String glyphRef;
}
// 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
@@ -19190,19 +17726,13 @@ interface SVGAngle {
static final int SVG_ANGLETYPE_UNSPECIFIED = 1;
- int get unitType();
-
- num get value();
-
- void set value(num value);
-
- String get valueAsString();
+ final int unitType;
- void set valueAsString(String value);
+ num value;
- num get valueInSpecifiedUnits();
+ String valueAsString;
- void set valueInSpecifiedUnits(num value);
+ num valueInSpecifiedUnits;
void convertToSpecifiedUnits(int unitType);
@@ -19248,9 +17778,9 @@ interface SVGAnimateTransformElement extends SVGAnimationElement {
interface SVGAnimatedAngle {
- SVGAngle get animVal();
+ final SVGAngle animVal;
- SVGAngle get baseVal();
+ final SVGAngle baseVal;
}
// 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
@@ -19260,11 +17790,9 @@ interface SVGAnimatedAngle {
interface SVGAnimatedBoolean {
- bool get animVal();
-
- bool get baseVal();
+ final bool animVal;
- void set baseVal(bool value);
+ bool baseVal;
}
// 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
@@ -19274,11 +17802,9 @@ interface SVGAnimatedBoolean {
interface SVGAnimatedEnumeration {
- int get animVal();
-
- int get baseVal();
+ final int animVal;
- void set baseVal(int value);
+ int baseVal;
}
// 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
@@ -19288,11 +17814,9 @@ interface SVGAnimatedEnumeration {
interface SVGAnimatedInteger {
- int get animVal();
-
- int get baseVal();
+ final int animVal;
- void set baseVal(int value);
+ int baseVal;
}
// 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
@@ -19302,9 +17826,9 @@ interface SVGAnimatedInteger {
interface SVGAnimatedLength {
- SVGLength get animVal();
+ final SVGLength animVal;
- SVGLength get baseVal();
+ final SVGLength baseVal;
}
// 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
@@ -19314,9 +17838,9 @@ interface SVGAnimatedLength {
interface SVGAnimatedLengthList {
- SVGLengthList get animVal();
+ final SVGLengthList animVal;
- SVGLengthList get baseVal();
+ final SVGLengthList baseVal;
}
// 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
@@ -19326,11 +17850,9 @@ interface SVGAnimatedLengthList {
interface SVGAnimatedNumber {
- num get animVal();
-
- num get baseVal();
+ final num animVal;
- void set baseVal(num value);
+ num baseVal;
}
// 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
@@ -19340,9 +17862,9 @@ interface SVGAnimatedNumber {
interface SVGAnimatedNumberList {
- SVGNumberList get animVal();
+ final SVGNumberList animVal;
- SVGNumberList get baseVal();
+ final SVGNumberList baseVal;
}
// 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
@@ -19352,9 +17874,9 @@ interface SVGAnimatedNumberList {
interface SVGAnimatedPreserveAspectRatio {
- SVGPreserveAspectRatio get animVal();
+ final SVGPreserveAspectRatio animVal;
- SVGPreserveAspectRatio get baseVal();
+ final SVGPreserveAspectRatio baseVal;
}
// 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
@@ -19364,9 +17886,9 @@ interface SVGAnimatedPreserveAspectRatio {
interface SVGAnimatedRect {
- SVGRect get animVal();
+ final SVGRect animVal;
- SVGRect get baseVal();
+ final SVGRect baseVal;
}
// 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
@@ -19376,11 +17898,9 @@ interface SVGAnimatedRect {
interface SVGAnimatedString {
- String get animVal();
-
- String get baseVal();
+ final String animVal;
- void set baseVal(String value);
+ String baseVal;
}
// 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
@@ -19390,9 +17910,9 @@ interface SVGAnimatedString {
interface SVGAnimatedTransformList {
- SVGTransformList get animVal();
+ final SVGTransformList animVal;
- SVGTransformList get baseVal();
+ final SVGTransformList baseVal;
}
// 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
@@ -19402,7 +17922,7 @@ interface SVGAnimatedTransformList {
interface SVGAnimationElement extends SVGElement, SVGTests, SVGExternalResourcesRequired, ElementTimeControl {
- SVGElement get targetElement();
+ final SVGElement targetElement;
num getCurrentTime();
@@ -19418,11 +17938,11 @@ interface SVGAnimationElement extends SVGElement, SVGTests, SVGExternalResources
interface SVGCircleElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedLength get cx();
+ final SVGAnimatedLength cx;
- SVGAnimatedLength get cy();
+ final SVGAnimatedLength cy;
- SVGAnimatedLength get r();
+ final SVGAnimatedLength r;
}
// 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
@@ -19432,7 +17952,7 @@ interface SVGCircleElement extends SVGElement, SVGTests, SVGLangSpace, SVGExtern
interface SVGClipPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedEnumeration get clipPathUnits();
+ final SVGAnimatedEnumeration clipPathUnits;
}
// 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
@@ -19450,9 +17970,9 @@ interface SVGColor extends CSSValue {
static final int SVG_COLORTYPE_UNKNOWN = 0;
- int get colorType();
+ final int colorType;
- RGBColor get rgbColor();
+ final RGBColor rgbColor;
void setColor(int colorType, String rgbColor, String iccColor);
@@ -19480,19 +18000,19 @@ interface SVGComponentTransferFunctionElement extends SVGElement {
static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
- SVGAnimatedNumber get amplitude();
+ final SVGAnimatedNumber amplitude;
- SVGAnimatedNumber get exponent();
+ final SVGAnimatedNumber exponent;
- SVGAnimatedNumber get intercept();
+ final SVGAnimatedNumber intercept;
- SVGAnimatedNumber get offset();
+ final SVGAnimatedNumber offset;
- SVGAnimatedNumber get slope();
+ final SVGAnimatedNumber slope;
- SVGAnimatedNumberList get tableValues();
+ final SVGAnimatedNumberList tableValues;
- SVGAnimatedEnumeration get type();
+ final SVGAnimatedEnumeration type;
}
// 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
@@ -19502,9 +18022,9 @@ interface SVGComponentTransferFunctionElement extends SVGElement {
interface SVGCursorElement extends SVGElement, SVGURIReference, SVGTests, SVGExternalResourcesRequired {
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -19530,7 +18050,7 @@ interface SVGDescElement extends SVGElement, SVGLangSpace, SVGStylable {
interface SVGDocument extends Document {
- SVGSVGElement get rootElement();
+ final SVGSVGElement rootElement;
Event createEvent(String eventType);
}
@@ -19542,17 +18062,13 @@ interface SVGDocument extends Document {
interface SVGElement extends Element {
- String get id();
-
- void set id(String value);
-
- SVGSVGElement get ownerSVGElement();
+ String id;
- SVGElement get viewportElement();
+ final SVGSVGElement ownerSVGElement;
- String get xmlbase();
+ final SVGElement viewportElement;
- void set xmlbase(String value);
+ String xmlbase;
}
// 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
@@ -19562,21 +18078,21 @@ interface SVGElement extends Element {
interface SVGElementInstance extends EventTarget {
- SVGElementInstanceList get childNodes();
+ final SVGElementInstanceList childNodes;
- SVGElement get correspondingElement();
+ final SVGElement correspondingElement;
- SVGUseElement get correspondingUseElement();
+ final SVGUseElement correspondingUseElement;
- SVGElementInstance get firstChild();
+ final SVGElementInstance firstChild;
- SVGElementInstance get lastChild();
+ final SVGElementInstance lastChild;
- SVGElementInstance get nextSibling();
+ final SVGElementInstance nextSibling;
- SVGElementInstance get parentNode();
+ final SVGElementInstance parentNode;
- SVGElementInstance get previousSibling();
+ final SVGElementInstance previousSibling;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -19592,7 +18108,7 @@ interface SVGElementInstance extends EventTarget {
interface SVGElementInstanceList {
- int get length();
+ final int length;
SVGElementInstance item(int index);
}
@@ -19604,13 +18120,13 @@ interface SVGElementInstanceList {
interface SVGEllipseElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedLength get cx();
+ final SVGAnimatedLength cx;
- SVGAnimatedLength get cy();
+ final SVGAnimatedLength cy;
- SVGAnimatedLength get rx();
+ final SVGAnimatedLength rx;
- SVGAnimatedLength get ry();
+ final SVGAnimatedLength ry;
}
// 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
@@ -19626,11 +18142,11 @@ interface SVGException {
static final int SVG_WRONG_TYPE_ERR = 0;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -19642,7 +18158,7 @@ interface SVGException {
interface SVGExternalResourcesRequired {
- SVGAnimatedBoolean get externalResourcesRequired();
+ final SVGAnimatedBoolean externalResourcesRequired;
}
// 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
@@ -19664,11 +18180,11 @@ interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttrib
static final int SVG_FEBLEND_MODE_UNKNOWN = 0;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedString get in2();
+ final SVGAnimatedString in2;
- SVGAnimatedEnumeration get mode();
+ final SVGAnimatedEnumeration mode;
}
// 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
@@ -19688,11 +18204,11 @@ interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandard
static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedEnumeration get type();
+ final SVGAnimatedEnumeration type;
- SVGAnimatedNumberList get values();
+ final SVGAnimatedNumberList values;
}
// 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
@@ -19702,7 +18218,7 @@ interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandard
interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
}
// 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
@@ -19726,19 +18242,19 @@ interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAt
static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedString get in2();
+ final SVGAnimatedString in2;
- SVGAnimatedNumber get k1();
+ final SVGAnimatedNumber k1;
- SVGAnimatedNumber get k2();
+ final SVGAnimatedNumber k2;
- SVGAnimatedNumber get k3();
+ final SVGAnimatedNumber k3;
- SVGAnimatedNumber get k4();
+ final SVGAnimatedNumber k4;
- SVGAnimatedEnumeration get operator();
+ final SVGAnimatedEnumeration operator;
}
// 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
@@ -19756,29 +18272,29 @@ interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand
static final int SVG_EDGEMODE_WRAP = 2;
- SVGAnimatedNumber get bias();
+ final SVGAnimatedNumber bias;
- SVGAnimatedNumber get divisor();
+ final SVGAnimatedNumber divisor;
- SVGAnimatedEnumeration get edgeMode();
+ final SVGAnimatedEnumeration edgeMode;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedNumberList get kernelMatrix();
+ final SVGAnimatedNumberList kernelMatrix;
- SVGAnimatedNumber get kernelUnitLengthX();
+ final SVGAnimatedNumber kernelUnitLengthX;
- SVGAnimatedNumber get kernelUnitLengthY();
+ final SVGAnimatedNumber kernelUnitLengthY;
- SVGAnimatedInteger get orderX();
+ final SVGAnimatedInteger orderX;
- SVGAnimatedInteger get orderY();
+ final SVGAnimatedInteger orderY;
- SVGAnimatedBoolean get preserveAlpha();
+ final SVGAnimatedBoolean preserveAlpha;
- SVGAnimatedInteger get targetX();
+ final SVGAnimatedInteger targetX;
- SVGAnimatedInteger get targetY();
+ final SVGAnimatedInteger targetY;
}
// 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
@@ -19788,15 +18304,15 @@ interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand
interface SVGFEDiffuseLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedNumber get diffuseConstant();
+ final SVGAnimatedNumber diffuseConstant;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedNumber get kernelUnitLengthX();
+ final SVGAnimatedNumber kernelUnitLengthX;
- SVGAnimatedNumber get kernelUnitLengthY();
+ final SVGAnimatedNumber kernelUnitLengthY;
- SVGAnimatedNumber get surfaceScale();
+ final SVGAnimatedNumber surfaceScale;
}
// 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
@@ -19816,15 +18332,15 @@ interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan
static final int SVG_CHANNEL_UNKNOWN = 0;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedString get in2();
+ final SVGAnimatedString in2;
- SVGAnimatedNumber get scale();
+ final SVGAnimatedNumber scale;
- SVGAnimatedEnumeration get xChannelSelector();
+ final SVGAnimatedEnumeration xChannelSelector;
- SVGAnimatedEnumeration get yChannelSelector();
+ final SVGAnimatedEnumeration yChannelSelector;
}
// 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
@@ -19834,9 +18350,9 @@ interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan
interface SVGFEDistantLightElement extends SVGElement {
- SVGAnimatedNumber get azimuth();
+ final SVGAnimatedNumber azimuth;
- SVGAnimatedNumber get elevation();
+ final SVGAnimatedNumber elevation;
}
// 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
@@ -19846,15 +18362,15 @@ interface SVGFEDistantLightElement extends SVGElement {
interface SVGFEDropShadowElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedNumber get dx();
+ final SVGAnimatedNumber dx;
- SVGAnimatedNumber get dy();
+ final SVGAnimatedNumber dy;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedNumber get stdDeviationX();
+ final SVGAnimatedNumber stdDeviationX;
- SVGAnimatedNumber get stdDeviationY();
+ final SVGAnimatedNumber stdDeviationY;
void setStdDeviation(num stdDeviationX, num stdDeviationY);
}
@@ -19906,11 +18422,11 @@ interface SVGFEFuncRElement extends SVGComponentTransferFunctionElement {
interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedNumber get stdDeviationX();
+ final SVGAnimatedNumber stdDeviationX;
- SVGAnimatedNumber get stdDeviationY();
+ final SVGAnimatedNumber stdDeviationY;
void setStdDeviation(num stdDeviationX, num stdDeviationY);
}
@@ -19922,7 +18438,7 @@ interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandar
interface SVGFEImageElement extends SVGElement, SVGURIReference, SVGLangSpace, SVGExternalResourcesRequired, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedPreserveAspectRatio get preserveAspectRatio();
+ final SVGAnimatedPreserveAspectRatio preserveAspectRatio;
}
// 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
@@ -19940,7 +18456,7 @@ interface SVGFEMergeElement extends SVGElement, SVGFilterPrimitiveStandardAttrib
interface SVGFEMergeNodeElement extends SVGElement {
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
}
// 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
@@ -19956,13 +18472,13 @@ interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA
static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedEnumeration get operator();
+ final SVGAnimatedEnumeration operator;
- SVGAnimatedNumber get radiusX();
+ final SVGAnimatedNumber radiusX;
- SVGAnimatedNumber get radiusY();
+ final SVGAnimatedNumber radiusY;
void setRadius(num radiusX, num radiusY);
}
@@ -19974,11 +18490,11 @@ interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA
interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedNumber get dx();
+ final SVGAnimatedNumber dx;
- SVGAnimatedNumber get dy();
+ final SVGAnimatedNumber dy;
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
}
// 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
@@ -19988,11 +18504,11 @@ interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttri
interface SVGFEPointLightElement extends SVGElement {
- SVGAnimatedNumber get x();
+ final SVGAnimatedNumber x;
- SVGAnimatedNumber get y();
+ final SVGAnimatedNumber y;
- SVGAnimatedNumber get z();
+ final SVGAnimatedNumber z;
}
// 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
@@ -20002,13 +18518,13 @@ interface SVGFEPointLightElement extends SVGElement {
interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
- SVGAnimatedNumber get specularConstant();
+ final SVGAnimatedNumber specularConstant;
- SVGAnimatedNumber get specularExponent();
+ final SVGAnimatedNumber specularExponent;
- SVGAnimatedNumber get surfaceScale();
+ final SVGAnimatedNumber surfaceScale;
}
// 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
@@ -20018,21 +18534,21 @@ interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveSta
interface SVGFESpotLightElement extends SVGElement {
- SVGAnimatedNumber get limitingConeAngle();
+ final SVGAnimatedNumber limitingConeAngle;
- SVGAnimatedNumber get pointsAtX();
+ final SVGAnimatedNumber pointsAtX;
- SVGAnimatedNumber get pointsAtY();
+ final SVGAnimatedNumber pointsAtY;
- SVGAnimatedNumber get pointsAtZ();
+ final SVGAnimatedNumber pointsAtZ;
- SVGAnimatedNumber get specularExponent();
+ final SVGAnimatedNumber specularExponent;
- SVGAnimatedNumber get x();
+ final SVGAnimatedNumber x;
- SVGAnimatedNumber get y();
+ final SVGAnimatedNumber y;
- SVGAnimatedNumber get z();
+ final SVGAnimatedNumber z;
}
// 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
@@ -20042,7 +18558,7 @@ interface SVGFESpotLightElement extends SVGElement {
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
- SVGAnimatedString get in1();
+ final SVGAnimatedString in1;
}
// 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
@@ -20064,17 +18580,17 @@ interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardA
static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
- SVGAnimatedNumber get baseFrequencyX();
+ final SVGAnimatedNumber baseFrequencyX;
- SVGAnimatedNumber get baseFrequencyY();
+ final SVGAnimatedNumber baseFrequencyY;
- SVGAnimatedInteger get numOctaves();
+ final SVGAnimatedInteger numOctaves;
- SVGAnimatedNumber get seed();
+ final SVGAnimatedNumber seed;
- SVGAnimatedEnumeration get stitchTiles();
+ final SVGAnimatedEnumeration stitchTiles;
- SVGAnimatedEnumeration get type();
+ final SVGAnimatedEnumeration type;
}
// 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
@@ -20084,21 +18600,21 @@ interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardA
interface SVGFilterElement extends SVGElement, SVGURIReference, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable {
- SVGAnimatedInteger get filterResX();
+ final SVGAnimatedInteger filterResX;
- SVGAnimatedInteger get filterResY();
+ final SVGAnimatedInteger filterResY;
- SVGAnimatedEnumeration get filterUnits();
+ final SVGAnimatedEnumeration filterUnits;
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedEnumeration get primitiveUnits();
+ final SVGAnimatedEnumeration primitiveUnits;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
void setFilterRes(int filterResX, int filterResY);
}
@@ -20110,15 +18626,15 @@ interface SVGFilterElement extends SVGElement, SVGURIReference, SVGLangSpace, SV
interface SVGFilterPrimitiveStandardAttributes extends SVGStylable {
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedString get result();
+ final SVGAnimatedString result;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -20128,9 +18644,9 @@ interface SVGFilterPrimitiveStandardAttributes extends SVGStylable {
interface SVGFitToViewBox {
- SVGAnimatedPreserveAspectRatio get preserveAspectRatio();
+ final SVGAnimatedPreserveAspectRatio preserveAspectRatio;
- SVGAnimatedRect get viewBox();
+ final SVGAnimatedRect viewBox;
}
// 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
@@ -20188,13 +18704,13 @@ interface SVGFontFaceUriElement extends SVGElement {
interface SVGForeignObjectElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -20220,29 +18736,17 @@ interface SVGGlyphElement extends SVGElement {
interface SVGGlyphRefElement extends SVGElement, SVGURIReference, SVGStylable {
- num get dx();
-
- void set dx(num value);
-
- num get dy();
-
- void set dy(num value);
-
- String get format();
-
- void set format(String value);
-
- String get glyphRef();
+ num dx;
- void set glyphRef(String value);
+ num dy;
- num get x();
+ String format;
- void set x(num value);
+ String glyphRef;
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -20260,11 +18764,11 @@ interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalRes
static final int SVG_SPREADMETHOD_UNKNOWN = 0;
- SVGAnimatedTransformList get gradientTransform();
+ final SVGAnimatedTransformList gradientTransform;
- SVGAnimatedEnumeration get gradientUnits();
+ final SVGAnimatedEnumeration gradientUnits;
- SVGAnimatedEnumeration get spreadMethod();
+ final SVGAnimatedEnumeration spreadMethod;
}
// 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
@@ -20282,15 +18786,15 @@ interface SVGHKernElement extends SVGElement {
interface SVGImageElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedPreserveAspectRatio get preserveAspectRatio();
+ final SVGAnimatedPreserveAspectRatio preserveAspectRatio;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -20300,13 +18804,9 @@ interface SVGImageElement extends SVGElement, SVGURIReference, SVGTests, SVGLang
interface SVGLangSpace {
- String get xmllang();
-
- void set xmllang(String value);
-
- String get xmlspace();
+ String xmllang;
- void set xmlspace(String value);
+ String xmlspace;
}
// 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
@@ -20338,19 +18838,13 @@ interface SVGLength {
static final int SVG_LENGTHTYPE_UNKNOWN = 0;
- int get unitType();
-
- num get value();
-
- void set value(num value);
-
- String get valueAsString();
+ final int unitType;
- void set valueAsString(String value);
+ num value;
- num get valueInSpecifiedUnits();
+ String valueAsString;
- void set valueInSpecifiedUnits(num value);
+ num valueInSpecifiedUnits;
void convertToSpecifiedUnits(int unitType);
@@ -20364,7 +18858,7 @@ interface SVGLength {
interface SVGLengthList {
- int get numberOfItems();
+ final int numberOfItems;
SVGLength appendItem(SVGLength item);
@@ -20388,13 +18882,13 @@ interface SVGLengthList {
interface SVGLineElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedLength get x1();
+ final SVGAnimatedLength x1;
- SVGAnimatedLength get x2();
+ final SVGAnimatedLength x2;
- SVGAnimatedLength get y1();
+ final SVGAnimatedLength y1;
- SVGAnimatedLength get y2();
+ final SVGAnimatedLength y2;
}
// 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
@@ -20404,13 +18898,13 @@ interface SVGLineElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal
interface SVGLinearGradientElement extends SVGGradientElement {
- SVGAnimatedLength get x1();
+ final SVGAnimatedLength x1;
- SVGAnimatedLength get x2();
+ final SVGAnimatedLength x2;
- SVGAnimatedLength get y1();
+ final SVGAnimatedLength y1;
- SVGAnimatedLength get y2();
+ final SVGAnimatedLength y2;
}
// 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
@@ -20420,9 +18914,9 @@ interface SVGLinearGradientElement extends SVGGradientElement {
interface SVGLocatable {
- SVGElement get farthestViewportElement();
+ final SVGElement farthestViewportElement;
- SVGElement get nearestViewportElement();
+ final SVGElement nearestViewportElement;
SVGRect getBBox();
@@ -20460,19 +18954,19 @@ interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResource
static final int SVG_MARKER_ORIENT_UNKNOWN = 0;
- SVGAnimatedLength get markerHeight();
+ final SVGAnimatedLength markerHeight;
- SVGAnimatedEnumeration get markerUnits();
+ final SVGAnimatedEnumeration markerUnits;
- SVGAnimatedLength get markerWidth();
+ final SVGAnimatedLength markerWidth;
- SVGAnimatedAngle get orientAngle();
+ final SVGAnimatedAngle orientAngle;
- SVGAnimatedEnumeration get orientType();
+ final SVGAnimatedEnumeration orientType;
- SVGAnimatedLength get refX();
+ final SVGAnimatedLength refX;
- SVGAnimatedLength get refY();
+ final SVGAnimatedLength refY;
void setOrientToAngle(SVGAngle angle);
@@ -20486,17 +18980,17 @@ interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResource
interface SVGMaskElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable {
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedEnumeration get maskContentUnits();
+ final SVGAnimatedEnumeration maskContentUnits;
- SVGAnimatedEnumeration get maskUnits();
+ final SVGAnimatedEnumeration maskUnits;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -20506,29 +19000,17 @@ interface SVGMaskElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal
interface SVGMatrix {
- num get a();
-
- void set a(num value);
-
- num get b();
-
- void set b(num value);
-
- num get c();
-
- void set c(num value);
-
- num get d();
+ num a;
- void set d(num value);
+ num b;
- num get e();
+ num c;
- void set e(num value);
+ num d;
- num get f();
+ num e;
- void set f(num value);
+ num f;
SVGMatrix flipX();
@@ -20576,9 +19058,7 @@ interface SVGMissingGlyphElement extends SVGElement {
interface SVGNumber {
- num get value();
-
- void set value(num value);
+ num value;
}
// 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
@@ -20588,7 +19068,7 @@ interface SVGNumber {
interface SVGNumberList {
- int get numberOfItems();
+ final int numberOfItems;
SVGNumber appendItem(SVGNumber item);
@@ -20632,9 +19112,9 @@ interface SVGPaint extends SVGColor {
static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106;
- int get paintType();
+ final int paintType;
- String get uri();
+ final String uri;
void setPaint(int paintType, String uri, String rgbColor, String iccColor);
@@ -20648,15 +19128,15 @@ interface SVGPaint extends SVGColor {
interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGPathSegList get animatedNormalizedPathSegList();
+ final SVGPathSegList animatedNormalizedPathSegList;
- SVGPathSegList get animatedPathSegList();
+ final SVGPathSegList animatedPathSegList;
- SVGPathSegList get normalizedPathSegList();
+ final SVGPathSegList normalizedPathSegList;
- SVGAnimatedNumber get pathLength();
+ final SVGAnimatedNumber pathLength;
- SVGPathSegList get pathSegList();
+ final SVGPathSegList pathSegList;
SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag);
@@ -20750,9 +19230,9 @@ interface SVGPathSeg {
static final int PATHSEG_UNKNOWN = 0;
- int get pathSegType();
+ final int pathSegType;
- String get pathSegTypeAsLetter();
+ final String pathSegTypeAsLetter;
}
// 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
@@ -20762,33 +19242,19 @@ interface SVGPathSeg {
interface SVGPathSegArcAbs extends SVGPathSeg {
- num get angle();
-
- void set angle(num value);
-
- bool get largeArcFlag();
-
- void set largeArcFlag(bool value);
-
- num get r1();
-
- void set r1(num value);
-
- num get r2();
-
- void set r2(num value);
+ num angle;
- bool get sweepFlag();
+ bool largeArcFlag;
- void set sweepFlag(bool value);
+ num r1;
- num get x();
+ num r2;
- void set x(num value);
+ bool sweepFlag;
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -20798,33 +19264,19 @@ interface SVGPathSegArcAbs extends SVGPathSeg {
interface SVGPathSegArcRel extends SVGPathSeg {
- num get angle();
-
- void set angle(num value);
-
- bool get largeArcFlag();
-
- void set largeArcFlag(bool value);
-
- num get r1();
-
- void set r1(num value);
-
- num get r2();
-
- void set r2(num value);
+ num angle;
- bool get sweepFlag();
+ bool largeArcFlag;
- void set sweepFlag(bool value);
+ num r1;
- num get x();
+ num r2;
- void set x(num value);
+ bool sweepFlag;
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -20842,29 +19294,17 @@ interface SVGPathSegClosePath extends SVGPathSeg {
interface SVGPathSegCurvetoCubicAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get x1();
-
- void set x1(num value);
-
- num get x2();
-
- void set x2(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num x1;
- num get y1();
+ num x2;
- void set y1(num value);
+ num y;
- num get y2();
+ num y1;
- void set y2(num value);
+ num y2;
}
// 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
@@ -20874,29 +19314,17 @@ interface SVGPathSegCurvetoCubicAbs extends SVGPathSeg {
interface SVGPathSegCurvetoCubicRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get x1();
-
- void set x1(num value);
-
- num get x2();
-
- void set x2(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num x1;
- num get y1();
+ num x2;
- void set y1(num value);
+ num y;
- num get y2();
+ num y1;
- void set y2(num value);
+ num y2;
}
// 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
@@ -20906,21 +19334,13 @@ interface SVGPathSegCurvetoCubicRel extends SVGPathSeg {
interface SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get x2();
-
- void set x2(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num x2;
- num get y2();
+ num y;
- void set y2(num value);
+ num y2;
}
// 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
@@ -20930,21 +19350,13 @@ interface SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg {
interface SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get x2();
-
- void set x2(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num x2;
- num get y2();
+ num y;
- void set y2(num value);
+ num y2;
}
// 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
@@ -20954,21 +19366,13 @@ interface SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg {
interface SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get x1();
-
- void set x1(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num x1;
- num get y1();
+ num y;
- void set y1(num value);
+ num y1;
}
// 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
@@ -20978,21 +19382,13 @@ interface SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg {
interface SVGPathSegCurvetoQuadraticRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get x1();
-
- void set x1(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num x1;
- num get y1();
+ num y;
- void set y1(num value);
+ num y1;
}
// 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
@@ -21002,13 +19398,9 @@ interface SVGPathSegCurvetoQuadraticRel extends SVGPathSeg {
interface SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21018,13 +19410,9 @@ interface SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg {
interface SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21034,13 +19422,9 @@ interface SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg {
interface SVGPathSegLinetoAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21050,9 +19434,7 @@ interface SVGPathSegLinetoAbs extends SVGPathSeg {
interface SVGPathSegLinetoHorizontalAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
+ num x;
}
// 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
@@ -21062,9 +19444,7 @@ interface SVGPathSegLinetoHorizontalAbs extends SVGPathSeg {
interface SVGPathSegLinetoHorizontalRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
+ num x;
}
// 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
@@ -21074,13 +19454,9 @@ interface SVGPathSegLinetoHorizontalRel extends SVGPathSeg {
interface SVGPathSegLinetoRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21090,9 +19466,7 @@ interface SVGPathSegLinetoRel extends SVGPathSeg {
interface SVGPathSegLinetoVerticalAbs extends SVGPathSeg {
- num get y();
-
- void set y(num value);
+ num y;
}
// 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
@@ -21102,9 +19476,7 @@ interface SVGPathSegLinetoVerticalAbs extends SVGPathSeg {
interface SVGPathSegLinetoVerticalRel extends SVGPathSeg {
- num get y();
-
- void set y(num value);
+ num y;
}
// 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
@@ -21114,7 +19486,7 @@ interface SVGPathSegLinetoVerticalRel extends SVGPathSeg {
interface SVGPathSegList {
- int get numberOfItems();
+ final int numberOfItems;
SVGPathSeg appendItem(SVGPathSeg newItem);
@@ -21138,13 +19510,9 @@ interface SVGPathSegList {
interface SVGPathSegMovetoAbs extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21154,13 +19522,9 @@ interface SVGPathSegMovetoAbs extends SVGPathSeg {
interface SVGPathSegMovetoRel extends SVGPathSeg {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21170,19 +19534,19 @@ interface SVGPathSegMovetoRel extends SVGPathSeg {
interface SVGPatternElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGFitToViewBox {
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedEnumeration get patternContentUnits();
+ final SVGAnimatedEnumeration patternContentUnits;
- SVGAnimatedTransformList get patternTransform();
+ final SVGAnimatedTransformList patternTransform;
- SVGAnimatedEnumeration get patternUnits();
+ final SVGAnimatedEnumeration patternUnits;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -21192,13 +19556,9 @@ interface SVGPatternElement extends SVGElement, SVGURIReference, SVGTests, SVGLa
interface SVGPoint {
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
SVGPoint matrixTransform(SVGMatrix matrix);
}
@@ -21210,7 +19570,7 @@ interface SVGPoint {
interface SVGPointList {
- int get numberOfItems();
+ final int numberOfItems;
SVGPoint appendItem(SVGPoint item);
@@ -21234,9 +19594,9 @@ interface SVGPointList {
interface SVGPolygonElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGPointList get animatedPoints();
+ final SVGPointList animatedPoints;
- SVGPointList get points();
+ final SVGPointList points;
}
// 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
@@ -21246,9 +19606,9 @@ interface SVGPolygonElement extends SVGElement, SVGTests, SVGLangSpace, SVGExter
interface SVGPolylineElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGPointList get animatedPoints();
+ final SVGPointList animatedPoints;
- SVGPointList get points();
+ final SVGPointList points;
}
// 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
@@ -21286,13 +19646,9 @@ interface SVGPreserveAspectRatio {
static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
- int get align();
-
- void set align(int value);
-
- int get meetOrSlice();
+ int align;
- void set meetOrSlice(int value);
+ int meetOrSlice;
}
// 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
@@ -21302,15 +19658,15 @@ interface SVGPreserveAspectRatio {
interface SVGRadialGradientElement extends SVGGradientElement {
- SVGAnimatedLength get cx();
+ final SVGAnimatedLength cx;
- SVGAnimatedLength get cy();
+ final SVGAnimatedLength cy;
- SVGAnimatedLength get fx();
+ final SVGAnimatedLength fx;
- SVGAnimatedLength get fy();
+ final SVGAnimatedLength fy;
- SVGAnimatedLength get r();
+ final SVGAnimatedLength r;
}
// 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
@@ -21320,21 +19676,13 @@ interface SVGRadialGradientElement extends SVGGradientElement {
interface SVGRect {
- num get height();
-
- void set height(num value);
-
- num get width();
-
- void set width(num value);
-
- num get x();
+ num height;
- void set x(num value);
+ num width;
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -21344,17 +19692,17 @@ interface SVGRect {
interface SVGRectElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGAnimatedLength get rx();
+ final SVGAnimatedLength rx;
- SVGAnimatedLength get ry();
+ final SVGAnimatedLength ry;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -21384,41 +19732,33 @@ interface SVGRenderingIntent {
interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan {
- String get contentScriptType();
-
- void set contentScriptType(String value);
-
- String get contentStyleType();
-
- void set contentStyleType(String value);
-
- num get currentScale();
+ String contentScriptType;
- void set currentScale(num value);
+ String contentStyleType;
- SVGPoint get currentTranslate();
+ num currentScale;
- SVGAnimatedLength get height();
+ final SVGPoint currentTranslate;
- num get pixelUnitToMillimeterX();
+ final SVGAnimatedLength height;
- num get pixelUnitToMillimeterY();
+ final num pixelUnitToMillimeterX;
- num get screenPixelToMillimeterX();
+ final num pixelUnitToMillimeterY;
- num get screenPixelToMillimeterY();
+ final num screenPixelToMillimeterX;
- bool get useCurrentView();
+ final num screenPixelToMillimeterY;
- void set useCurrentView(bool value);
+ bool useCurrentView;
- SVGRect get viewport();
+ final SVGRect viewport;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
bool animationsPaused();
@@ -21474,9 +19814,7 @@ interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
interface SVGScriptElement extends SVGElement, SVGURIReference, SVGExternalResourcesRequired {
- String get type();
-
- void set type(String value);
+ String type;
}
// 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
@@ -21494,7 +19832,7 @@ interface SVGSetElement extends SVGAnimationElement {
interface SVGStopElement extends SVGElement, SVGStylable {
- SVGAnimatedNumber get offset();
+ final SVGAnimatedNumber offset;
}
// 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
@@ -21504,7 +19842,7 @@ interface SVGStopElement extends SVGElement, SVGStylable {
interface SVGStringList {
- int get numberOfItems();
+ final int numberOfItems;
String appendItem(String item);
@@ -21528,9 +19866,9 @@ interface SVGStringList {
interface SVGStylable {
- SVGAnimatedString get className();
+ final SVGAnimatedString className;
- CSSStyleDeclaration get style();
+ final CSSStyleDeclaration style;
CSSValue getPresentationAttribute(String name);
}
@@ -21542,17 +19880,11 @@ interface SVGStylable {
interface SVGStyleElement extends SVGElement, SVGLangSpace {
- String get media();
-
- void set media(String value);
-
- String get title();
-
- void set title(String value);
+ String media;
- String get type();
+ String title;
- void set type(String value);
+ String type;
}
// 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
@@ -21594,11 +19926,11 @@ interface SVGTSpanElement extends SVGTextPositioningElement {
interface SVGTests {
- SVGStringList get requiredExtensions();
+ final SVGStringList requiredExtensions;
- SVGStringList get requiredFeatures();
+ final SVGStringList requiredFeatures;
- SVGStringList get systemLanguage();
+ final SVGStringList systemLanguage;
bool hasExtension(String extension);
}
@@ -21616,9 +19948,9 @@ interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE
static final int LENGTHADJUST_UNKNOWN = 0;
- SVGAnimatedEnumeration get lengthAdjust();
+ final SVGAnimatedEnumeration lengthAdjust;
- SVGAnimatedLength get textLength();
+ final SVGAnimatedLength textLength;
int getCharNumAtPosition(SVGPoint point);
@@ -21666,11 +19998,11 @@ interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {
static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
- SVGAnimatedEnumeration get method();
+ final SVGAnimatedEnumeration method;
- SVGAnimatedEnumeration get spacing();
+ final SVGAnimatedEnumeration spacing;
- SVGAnimatedLength get startOffset();
+ final SVGAnimatedLength startOffset;
}
// 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
@@ -21680,15 +20012,15 @@ interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {
interface SVGTextPositioningElement extends SVGTextContentElement {
- SVGAnimatedLengthList get dx();
+ final SVGAnimatedLengthList dx;
- SVGAnimatedLengthList get dy();
+ final SVGAnimatedLengthList dy;
- SVGAnimatedNumberList get rotate();
+ final SVGAnimatedNumberList rotate;
- SVGAnimatedLengthList get x();
+ final SVGAnimatedLengthList x;
- SVGAnimatedLengthList get y();
+ final SVGAnimatedLengthList y;
}
// 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
@@ -21720,11 +20052,11 @@ interface SVGTransform {
static final int SVG_TRANSFORM_UNKNOWN = 0;
- num get angle();
+ final num angle;
- SVGMatrix get matrix();
+ final SVGMatrix matrix;
- int get type();
+ final int type;
void setMatrix(SVGMatrix matrix);
@@ -21746,7 +20078,7 @@ interface SVGTransform {
interface SVGTransformList {
- int get numberOfItems();
+ final int numberOfItems;
SVGTransform appendItem(SVGTransform item);
@@ -21774,7 +20106,7 @@ interface SVGTransformList {
interface SVGTransformable extends SVGLocatable {
- SVGAnimatedTransformList get transform();
+ final SVGAnimatedTransformList transform;
}
// 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
@@ -21784,7 +20116,7 @@ interface SVGTransformable extends SVGLocatable {
interface SVGURIReference {
- SVGAnimatedString get href();
+ final SVGAnimatedString href;
}
// 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
@@ -21808,17 +20140,17 @@ interface SVGUnitTypes {
interface SVGUseElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
- SVGElementInstance get animatedInstanceRoot();
+ final SVGElementInstance animatedInstanceRoot;
- SVGAnimatedLength get height();
+ final SVGAnimatedLength height;
- SVGElementInstance get instanceRoot();
+ final SVGElementInstance instanceRoot;
- SVGAnimatedLength get width();
+ final SVGAnimatedLength width;
- SVGAnimatedLength get x();
+ final SVGAnimatedLength x;
- SVGAnimatedLength get y();
+ final SVGAnimatedLength y;
}
// 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
@@ -21836,7 +20168,7 @@ interface SVGVKernElement extends SVGElement {
interface SVGViewElement extends SVGElement, SVGExternalResourcesRequired, SVGFitToViewBox, SVGZoomAndPan {
- SVGStringList get viewTarget();
+ final SVGStringList viewTarget;
}
// 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
@@ -21846,17 +20178,17 @@ interface SVGViewElement extends SVGElement, SVGExternalResourcesRequired, SVGFi
interface SVGViewSpec extends SVGZoomAndPan, SVGFitToViewBox {
- String get preserveAspectRatioString();
+ final String preserveAspectRatioString;
- SVGTransformList get transform();
+ final SVGTransformList transform;
- String get transformString();
+ final String transformString;
- String get viewBoxString();
+ final String viewBoxString;
- SVGElement get viewTarget();
+ final SVGElement viewTarget;
- String get viewTargetString();
+ final String viewTargetString;
}
// 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
@@ -21872,9 +20204,7 @@ interface SVGZoomAndPan {
static final int SVG_ZOOMANDPAN_UNKNOWN = 0;
- int get zoomAndPan();
-
- void set zoomAndPan(int value);
+ int zoomAndPan;
}
// 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
@@ -21884,15 +20214,15 @@ interface SVGZoomAndPan {
interface SVGZoomEvent extends UIEvent {
- num get newScale();
+ final num newScale;
- SVGPoint get newTranslate();
+ final SVGPoint newTranslate;
- num get previousScale();
+ final num previousScale;
- SVGPoint get previousTranslate();
+ final SVGPoint previousTranslate;
- SVGRect get zoomRectScreen();
+ final SVGRect zoomRectScreen;
}
// 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
@@ -21902,21 +20232,21 @@ interface SVGZoomEvent extends UIEvent {
interface Screen {
- int get availHeight();
+ final int availHeight;
- int get availLeft();
+ final int availLeft;
- int get availTop();
+ final int availTop;
- int get availWidth();
+ final int availWidth;
- int get colorDepth();
+ final int colorDepth;
- int get height();
+ final int height;
- int get pixelDepth();
+ final int pixelDepth;
- int get width();
+ final int width;
}
// 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
@@ -21926,11 +20256,11 @@ interface Screen {
interface ScriptProfile {
- ScriptProfileNode get head();
+ final ScriptProfileNode head;
- String get title();
+ final String title;
- int get uid();
+ final int uid;
}
// 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
@@ -21940,33 +20270,23 @@ interface ScriptProfile {
interface ScriptProfileNode {
- int get callUID();
-
- List get children();
-
- String get functionName();
-
- int get lineNumber();
+ final int callUID;
- int get numberOfCalls();
+ final List children;
- num get selfTime();
+ final String functionName;
- num get totalTime();
+ final int lineNumber;
- String get url();
+ final int numberOfCalls;
- bool get visible();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
+ final num selfTime;
-// WARNING: Do not edit - generated code.
+ final num totalTime;
-interface ShadowRoot extends Node {
+ final String url;
- Element get host();
+ final bool visible;
}
// 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
@@ -21976,7 +20296,7 @@ interface ShadowRoot extends Node {
interface SharedWorker extends AbstractWorker {
- MessagePort get port();
+ final MessagePort port;
}
// 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
@@ -21986,11 +20306,9 @@ interface SharedWorker extends AbstractWorker {
interface SharedWorkerGlobalScope extends WorkerContext {
- String get name();
-
- EventListener get onconnect();
+ final String name;
- void set onconnect(EventListener value);
+ EventListener onconnect;
}
interface SharedWorkerContext extends SharedWorkerGlobalScope {
@@ -22003,7 +20321,7 @@ interface SharedWorkerContext extends SharedWorkerGlobalScope {
interface SpeechInputEvent extends Event {
- SpeechInputResultList get results();
+ final SpeechInputResultList results;
}
// 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
@@ -22013,9 +20331,9 @@ interface SpeechInputEvent extends Event {
interface SpeechInputResult {
- num get confidence();
+ final num confidence;
- String get utterance();
+ final String utterance;
}
// 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
@@ -22025,7 +20343,7 @@ interface SpeechInputResult {
interface SpeechInputResultList {
- int get length();
+ final int length;
SpeechInputResult item(int index);
}
@@ -22037,7 +20355,7 @@ interface SpeechInputResultList {
interface Storage {
- int get length();
+ final int length;
void clear();
@@ -22057,15 +20375,15 @@ interface Storage {
interface StorageEvent extends Event {
- String get key();
+ final String key;
- String get newValue();
+ final String newValue;
- String get oldValue();
+ final String oldValue;
- Storage get storageArea();
+ final Storage storageArea;
- String get url();
+ final String url;
void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, String keyArg, String oldValueArg, String newValueArg, String urlArg, Storage storageAreaArg);
}
@@ -22121,7 +20439,7 @@ typedef bool StringCallback(String data);
interface StyleMedia {
- String get type();
+ final String type;
bool matchMedium(String mediaquery);
}
@@ -22133,21 +20451,19 @@ interface StyleMedia {
interface StyleSheet {
- bool get disabled();
-
- void set disabled(bool value);
+ bool disabled;
- String get href();
+ final String href;
- MediaList get media();
+ final MediaList media;
- Node get ownerNode();
+ final Node ownerNode;
- StyleSheet get parentStyleSheet();
+ final StyleSheet parentStyleSheet;
- String get title();
+ final String title;
- String get type();
+ final String type;
}
// 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
@@ -22157,7 +20473,7 @@ interface StyleSheet {
interface StyleSheetList extends List<StyleSheet> {
- int get length();
+ final int length;
StyleSheet item(int index);
}
@@ -22169,7 +20485,7 @@ interface StyleSheetList extends List<StyleSheet> {
interface Text extends CharacterData {
- String get wholeText();
+ final String wholeText;
Text replaceWholeText(String content);
@@ -22183,7 +20499,7 @@ interface Text extends CharacterData {
interface TextEvent extends UIEvent {
- String get data();
+ final String data;
void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, DOMWindow viewArg, String dataArg);
}
@@ -22195,7 +20511,7 @@ interface TextEvent extends UIEvent {
interface TextMetrics {
- num get width();
+ final num width;
}
// 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
@@ -22211,23 +20527,19 @@ interface TextTrack {
static final int SHOWING = 2;
- TextTrackCueList get activeCues();
-
- TextTrackCueList get cues();
+ final TextTrackCueList activeCues;
- String get kind();
+ final TextTrackCueList cues;
- String get label();
-
- String get language();
+ final String kind;
- int get mode();
+ final String label;
- void set mode(int value);
+ final String language;
- EventListener get oncuechange();
+ int mode;
- void set oncuechange(EventListener value);
+ EventListener oncuechange;
void addCue(TextTrackCue cue);
@@ -22247,59 +20559,33 @@ interface TextTrack {
interface TextTrackCue {
- String get alignment();
-
- void set alignment(String value);
-
- String get direction();
-
- void set direction(String value);
-
- num get endTime();
-
- void set endTime(num value);
-
- String get id();
-
- void set id(String value);
-
- int get linePosition();
-
- void set linePosition(int value);
-
- EventListener get onenter();
-
- void set onenter(EventListener value);
-
- EventListener get onexit();
-
- void set onexit(EventListener value);
+ String alignment;
- bool get pauseOnExit();
+ String direction;
- void set pauseOnExit(bool value);
+ num endTime;
- int get size();
+ String id;
- void set size(int value);
+ int linePosition;
- bool get snapToLines();
+ EventListener onenter;
- void set snapToLines(bool value);
+ EventListener onexit;
- num get startTime();
+ bool pauseOnExit;
- void set startTime(num value);
+ int size;
- String get text();
+ bool snapToLines;
- void set text(String value);
+ num startTime;
- int get textPosition();
+ String text;
- void set textPosition(int value);
+ int textPosition;
- TextTrack get track();
+ final TextTrack track;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -22317,7 +20603,7 @@ interface TextTrackCue {
interface TextTrackCueList {
- int get length();
+ final int length;
TextTrackCue getCueById(String id);
@@ -22331,11 +20617,9 @@ interface TextTrackCueList {
interface TextTrackList {
- int get length();
-
- EventListener get onaddtrack();
+ final int length;
- void set onaddtrack(EventListener value);
+ EventListener onaddtrack;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -22353,7 +20637,7 @@ interface TextTrackList {
interface TimeRanges {
- int get length();
+ final int length;
num end(int index);
@@ -22367,29 +20651,29 @@ interface TimeRanges {
interface Touch {
- int get clientX();
+ final int clientX;
- int get clientY();
+ final int clientY;
- int get identifier();
+ final int identifier;
- int get pageX();
+ final int pageX;
- int get pageY();
+ final int pageY;
- int get screenX();
+ final int screenX;
- int get screenY();
+ final int screenY;
- EventTarget get target();
+ final EventTarget target;
- num get webkitForce();
+ final num webkitForce;
- int get webkitRadiusX();
+ final int webkitRadiusX;
- int get webkitRadiusY();
+ final int webkitRadiusY;
- num get webkitRotationAngle();
+ final num webkitRotationAngle;
}
// 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
@@ -22399,19 +20683,19 @@ interface Touch {
interface TouchEvent extends UIEvent {
- bool get altKey();
+ final bool altKey;
- TouchList get changedTouches();
+ final TouchList changedTouches;
- bool get ctrlKey();
+ final bool ctrlKey;
- bool get metaKey();
+ final bool metaKey;
- bool get shiftKey();
+ final bool shiftKey;
- TouchList get targetTouches();
+ final TouchList targetTouches;
- TouchList get touches();
+ final TouchList touches;
void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList changedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
}
@@ -22423,7 +20707,7 @@ interface TouchEvent extends UIEvent {
interface TouchList extends List<Touch> {
- int get length();
+ final int length;
Touch item(int index);
}
@@ -22435,7 +20719,7 @@ interface TouchList extends List<Touch> {
interface TrackEvent extends Event {
- Object get track();
+ final Object track;
}
// 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
@@ -22445,17 +20729,15 @@ interface TrackEvent extends Event {
interface TreeWalker {
- Node get currentNode();
+ Node currentNode;
- void set currentNode(Node value);
-
- bool get expandEntityReferences();
+ final bool expandEntityReferences;
- NodeFilter get filter();
+ final NodeFilter filter;
- Node get root();
+ final Node root;
- int get whatToShow();
+ final int whatToShow;
Node firstChild();
@@ -22479,23 +20761,23 @@ interface TreeWalker {
interface UIEvent extends Event {
- int get charCode();
+ final int charCode;
- int get detail();
+ final int detail;
- int get keyCode();
+ final int keyCode;
- int get layerX();
+ final int layerX;
- int get layerY();
+ final int layerY;
- int get pageX();
+ final int pageX;
- int get pageY();
+ final int pageY;
- DOMWindow get view();
+ final DOMWindow view;
- int get which();
+ final int which;
void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail);
}
@@ -22515,7 +20797,7 @@ interface Uint16Array extends ArrayBufferView, List<int> default _TypedArrayFact
static final int BYTES_PER_ELEMENT = 2;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -22537,7 +20819,7 @@ interface Uint32Array extends ArrayBufferView, List<int> default _TypedArrayFact
static final int BYTES_PER_ELEMENT = 4;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -22559,7 +20841,7 @@ interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto
static final int BYTES_PER_ELEMENT = 1;
- int get length();
+ final int length;
void setElements(Object array, [int offset]);
@@ -22579,7 +20861,7 @@ interface Uint8ClampedArray extends Uint8Array default _TypedArrayFactoryProvide
Uint8ClampedArray.fromBuffer(ArrayBuffer buffer);
- int get length();
+ final int length;
Uint8ClampedArray subarray(int start, [int end]);
}
@@ -22591,23 +20873,23 @@ interface Uint8ClampedArray extends Uint8Array default _TypedArrayFactoryProvide
interface ValidityState {
- bool get customError();
+ final bool customError;
- bool get patternMismatch();
+ final bool patternMismatch;
- bool get rangeOverflow();
+ final bool rangeOverflow;
- bool get rangeUnderflow();
+ final bool rangeUnderflow;
- bool get stepMismatch();
+ final bool stepMismatch;
- bool get tooLong();
+ final bool tooLong;
- bool get typeMismatch();
+ final bool typeMismatch;
- bool get valid();
+ final bool valid;
- bool get valueMissing();
+ final bool valueMissing;
}
// 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
@@ -22624,9 +20906,7 @@ typedef void VoidCallback();
interface WaveShaperNode extends AudioNode {
- Float32Array get curve();
-
- void set curve(Float32Array value);
+ Float32Array curve;
}
// 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
@@ -22636,11 +20916,11 @@ interface WaveShaperNode extends AudioNode {
interface WebGLActiveInfo {
- String get name();
+ final String name;
- int get size();
+ final int size;
- int get type();
+ final int type;
}
// 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
@@ -22682,29 +20962,17 @@ interface WebGLCompressedTextures {
interface WebGLContextAttributes {
- bool get alpha();
-
- void set alpha(bool value);
-
- bool get antialias();
-
- void set antialias(bool value);
-
- bool get depth();
-
- void set depth(bool value);
-
- bool get premultipliedAlpha();
+ bool alpha;
- void set premultipliedAlpha(bool value);
+ bool antialias;
- bool get preserveDrawingBuffer();
+ bool depth;
- void set preserveDrawingBuffer(bool value);
+ bool premultipliedAlpha;
- bool get stencil();
+ bool preserveDrawingBuffer;
- void set stencil(bool value);
+ bool stencil;
}
// 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
@@ -22714,7 +20982,7 @@ interface WebGLContextAttributes {
interface WebGLContextEvent extends Event {
- String get statusMessage();
+ final String statusMessage;
}
// 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
@@ -23376,9 +21644,9 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
static final int ZERO = 0;
- int get drawingBufferHeight();
+ final int drawingBufferHeight;
- int get drawingBufferWidth();
+ final int drawingBufferWidth;
void activeTexture(int texture);
@@ -23702,25 +21970,23 @@ interface WebKitAnimation {
static final int FILL_NONE = 0;
- num get delay();
-
- int get direction();
+ final num delay;
- num get duration();
+ final int direction;
- num get elapsedTime();
+ final num duration;
- void set elapsedTime(num value);
+ num elapsedTime;
- bool get ended();
+ final bool ended;
- int get fillMode();
+ final int fillMode;
- int get iterationCount();
+ final int iterationCount;
- String get name();
+ final String name;
- bool get paused();
+ final bool paused;
void pause();
@@ -23734,9 +22000,9 @@ interface WebKitAnimation {
interface WebKitAnimationEvent extends Event {
- String get animationName();
+ final String animationName;
- num get elapsedTime();
+ final num elapsedTime;
}
// 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
@@ -23746,7 +22012,7 @@ interface WebKitAnimationEvent extends Event {
interface WebKitAnimationList {
- int get length();
+ final int length;
WebKitAnimation item(int index);
}
@@ -23768,45 +22034,11 @@ interface WebKitBlobBuilder {
// WARNING: Do not edit - generated code.
-interface WebKitCSSFilterValue extends CSSValueList {
-
- static final int CSS_FILTER_BLUR = 10;
-
- static final int CSS_FILTER_BRIGHTNESS = 8;
-
- static final int CSS_FILTER_CONTRAST = 9;
-
- static final int CSS_FILTER_DROP_SHADOW = 11;
-
- static final int CSS_FILTER_GRAYSCALE = 2;
-
- static final int CSS_FILTER_HUE_ROTATE = 5;
-
- static final int CSS_FILTER_INVERT = 6;
-
- static final int CSS_FILTER_OPACITY = 7;
-
- static final int CSS_FILTER_REFERENCE = 1;
-
- static final int CSS_FILTER_SATURATE = 4;
-
- static final int CSS_FILTER_SEPIA = 3;
-
- int get operationType();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
interface WebKitCSSKeyframeRule extends CSSRule {
- String get keyText();
-
- void set keyText(String value);
+ String keyText;
- CSSStyleDeclaration get style();
+ final CSSStyleDeclaration style;
}
// 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
@@ -23816,11 +22048,9 @@ interface WebKitCSSKeyframeRule extends CSSRule {
interface WebKitCSSKeyframesRule extends CSSRule {
- CSSRuleList get cssRules();
-
- String get name();
+ final CSSRuleList cssRules;
- void set name(String value);
+ String name;
void deleteRule(String key);
@@ -23838,93 +22068,49 @@ interface WebKitCSSMatrix default _WebKitCSSMatrixFactoryProvider {
WebKitCSSMatrix([String spec]);
- num get a();
-
- void set a(num value);
-
- num get b();
-
- void set b(num value);
-
- num get c();
-
- void set c(num value);
-
- num get d();
-
- void set d(num value);
-
- num get e();
-
- void set e(num value);
-
- num get f();
-
- void set f(num value);
-
- num get m11();
-
- void set m11(num value);
-
- num get m12();
-
- void set m12(num value);
-
- num get m13();
-
- void set m13(num value);
-
- num get m14();
-
- void set m14(num value);
-
- num get m21();
-
- void set m21(num value);
-
- num get m22();
+ num a;
- void set m22(num value);
+ num b;
- num get m23();
+ num c;
- void set m23(num value);
+ num d;
- num get m24();
+ num e;
- void set m24(num value);
+ num f;
- num get m31();
+ num m11;
- void set m31(num value);
+ num m12;
- num get m32();
+ num m13;
- void set m32(num value);
+ num m14;
- num get m33();
+ num m21;
- void set m33(num value);
+ num m22;
- num get m34();
+ num m23;
- void set m34(num value);
+ num m24;
- num get m41();
+ num m31;
- void set m41(num value);
+ num m32;
- num get m42();
+ num m33;
- void set m42(num value);
+ num m34;
- num get m43();
+ num m41;
- void set m43(num value);
+ num m42;
- num get m44();
+ num m43;
- void set m44(num value);
+ num m44;
WebKitCSSMatrix inverse();
@@ -23954,7 +22140,7 @@ interface WebKitCSSMatrix default _WebKitCSSMatrixFactoryProvider {
interface WebKitCSSRegionRule extends CSSRule {
- CSSRuleList get cssRules();
+ final CSSRuleList cssRules;
}
// 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
@@ -24006,17 +22192,7 @@ interface WebKitCSSTransformValue extends CSSValueList {
static final int CSS_TRANSLATEZ = 12;
- int get operationType();
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface WebKitMutationObserver {
-
- void disconnect();
+ final int operationType;
}
// 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
@@ -24036,13 +22212,9 @@ interface WebKitPoint default _WebKitPointFactoryProvider {
WebKitPoint(num x, num y);
- num get x();
-
- void set x(num value);
-
- num get y();
+ num x;
- void set y(num value);
+ num y;
}
// 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
@@ -24052,9 +22224,9 @@ interface WebKitPoint default _WebKitPointFactoryProvider {
interface WebKitTransitionEvent extends Event {
- num get elapsedTime();
+ final num elapsedTime;
- String get propertyName();
+ final String propertyName;
}
// 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
@@ -24074,21 +22246,19 @@ interface WebSocket extends EventTarget default _WebSocketFactoryProvider {
static final int OPEN = 1;
- String get URL();
-
- String get binaryType();
+ final String URL;
- void set binaryType(String value);
+ String binaryType;
- int get bufferedAmount();
+ final int bufferedAmount;
- String get extensions();
+ final String extensions;
- String get protocol();
+ final String protocol;
- int get readyState();
+ final int readyState;
- String get url();
+ final String url;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -24108,37 +22278,37 @@ interface WebSocket extends EventTarget default _WebSocketFactoryProvider {
interface WheelEvent extends UIEvent {
- bool get altKey();
+ final bool altKey;
- int get clientX();
+ final int clientX;
- int get clientY();
+ final int clientY;
- bool get ctrlKey();
+ final bool ctrlKey;
- bool get metaKey();
+ final bool metaKey;
- int get offsetX();
+ final int offsetX;
- int get offsetY();
+ final int offsetY;
- int get screenX();
+ final int screenX;
- int get screenY();
+ final int screenY;
- bool get shiftKey();
+ final bool shiftKey;
- bool get webkitDirectionInvertedFromDevice();
+ final bool webkitDirectionInvertedFromDevice;
- int get wheelDelta();
+ final int wheelDelta;
- int get wheelDeltaX();
+ final int wheelDeltaX;
- int get wheelDeltaY();
+ final int wheelDeltaY;
- int get x();
+ final int x;
- int get y();
+ final int y;
void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
}
@@ -24164,27 +22334,19 @@ interface Worker extends AbstractWorker {
interface WorkerGlobalScope {
- WorkerLocation get location();
-
- void set location(WorkerLocation value);
-
- WorkerNavigator get navigator();
-
- void set navigator(WorkerNavigator value);
-
- EventListener get onerror();
+ WorkerLocation location;
- void set onerror(EventListener value);
+ WorkerNavigator navigator;
- WorkerContext get self();
+ EventListener onerror;
- void set self(WorkerContext value);
+ WorkerContext self;
- IDBFactory get webkitIndexedDB();
+ final IDBFactory webkitIndexedDB;
- NotificationCenter get webkitNotifications();
+ final NotificationCenter webkitNotifications;
- DOMURL get webkitURL();
+ final DOMURL webkitURL;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -24231,21 +22393,21 @@ interface WorkerContext extends WorkerGlobalScope {
interface WorkerLocation {
- String get hash();
+ final String hash;
- String get host();
+ final String host;
- String get hostname();
+ final String hostname;
- String get href();
+ final String href;
- String get pathname();
+ final String pathname;
- String get port();
+ final String port;
- String get protocol();
+ final String protocol;
- String get search();
+ final String search;
String toString();
}
@@ -24257,15 +22419,15 @@ interface WorkerLocation {
interface WorkerNavigator {
- String get appName();
+ final String appName;
- String get appVersion();
+ final String appVersion;
- bool get onLine();
+ final bool onLine;
- String get platform();
+ final String platform;
- String get userAgent();
+ final String userAgent;
}
// 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
@@ -24288,33 +22450,27 @@ interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi
static final int UNSENT = 0;
- bool get asBlob();
-
- void set asBlob(bool value);
-
- int get readyState();
-
- Object get response();
+ bool asBlob;
- Blob get responseBlob();
+ final int readyState;
- String get responseText();
+ final Object response;
- String get responseType();
+ final Blob responseBlob;
- void set responseType(String value);
+ final String responseText;
- Document get responseXML();
+ String responseType;
- int get status();
+ final Document responseXML;
- String get statusText();
+ final int status;
- XMLHttpRequestUpload get upload();
+ final String statusText;
- bool get withCredentials();
+ final XMLHttpRequestUpload upload;
- void set withCredentials(bool value);
+ bool withCredentials;
void abort();
@@ -24348,11 +22504,11 @@ interface XMLHttpRequestException {
static final int NETWORK_ERR = 101;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -24364,9 +22520,9 @@ interface XMLHttpRequestException {
interface XMLHttpRequestProgressEvent extends ProgressEvent {
- int get position();
+ final int position;
- int get totalSize();
+ final int totalSize;
}
// 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
@@ -24418,11 +22574,11 @@ interface XPathException {
static final int TYPE_ERR = 52;
- int get code();
+ final int code;
- String get message();
+ final String message;
- String get name();
+ final String name;
String toString();
}
@@ -24474,19 +22630,19 @@ interface XPathResult {
static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
- bool get booleanValue();
+ final bool booleanValue;
- bool get invalidIteratorState();
+ final bool invalidIteratorState;
- num get numberValue();
+ final num numberValue;
- int get resultType();
+ final int resultType;
- Node get singleNodeValue();
+ final Node singleNodeValue;
- int get snapshotLength();
+ final int snapshotLength;
- String get stringValue();
+ final String stringValue;
Node iterateNext();
@@ -25182,6 +23338,7 @@ class _AudioContextFactoryProvider {
}
class _DOMParserFactoryProvider {
+
factory DOMParser() native '''return new DOMParser();''';
}
« no previous file with comments | « no previous file | client/dom/generated/src/frog/DOMParser.dart » ('j') | client/dom/generated/src/frog/DOMParser.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698