| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index da02fd97a6bf686bd236c223d1041fb296918ad5..3598c54b214229ba3bdf4a99de0dca03faaedc60 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -1254,6 +1254,8 @@ interface Console {
|
|
|
| final MemoryInfo memory;
|
|
|
| + final List<ScriptProfile> profiles;
|
| +
|
| void assertCondition(bool condition, Object arg);
|
|
|
| void count();
|
| @@ -4636,6 +4638,8 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
| int selectedIndex;
|
|
|
| + final HTMLCollection selectedOptions;
|
| +
|
| int size;
|
|
|
| final String type;
|
| @@ -5535,6 +5539,8 @@ interface JavaScriptCallFrame {
|
|
|
| void evaluate(String script);
|
|
|
| + Object restart();
|
| +
|
| int scopeType(int scopeIndex);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5835,11 +5841,31 @@ interface MediaStreamTrack {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface MediaStreamTrackList {
|
| +interface MediaStreamTrackEvent extends Event {
|
| +
|
| + final MediaStreamTrack track;
|
| +}
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| +interface MediaStreamTrackList extends EventTarget {
|
|
|
| final int length;
|
|
|
| + void add(MediaStreamTrack track);
|
| +
|
| + void addEventListener(String type, EventListener listener, [bool useCapture]);
|
| +
|
| + bool dispatchEvent(Event event);
|
| +
|
| MediaStreamTrack item(int index);
|
| +
|
| + void remove(MediaStreamTrack track);
|
| +
|
| + void removeEventListener(String type, EventListener listener, [bool useCapture]);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -6605,7 +6631,7 @@ interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface Performance {
|
| +interface Performance extends EventTarget {
|
|
|
| final MemoryInfo memory;
|
|
|
| @@ -9735,8 +9761,6 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
|
|
|
| bool applyAuthorStyles;
|
|
|
| - final Element host;
|
| -
|
| String innerHTML;
|
|
|
| bool resetStyleInheritance;
|
| @@ -9865,6 +9889,8 @@ interface SpeechRecognition extends EventTarget default _SpeechRecognitionFactor
|
|
|
| String lang;
|
|
|
| + int maxAlternatives;
|
| +
|
| void abort();
|
|
|
| void addEventListener(String type, EventListener listener, [bool useCapture]);
|
| @@ -10591,6 +10617,8 @@ interface WebGLDebugShaders {
|
| // WARNING: Do not edit - generated code.
|
|
|
| interface WebGLDepthTexture {
|
| +
|
| + static final int UNSIGNED_INT_24_8_WEBGL = 0x84FA;
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -11816,6 +11844,8 @@ interface WebKitMutationObserver {
|
|
|
| void disconnect();
|
|
|
| + void observe(Node target, Map options);
|
| +
|
| List<MutationRecord> takeRecords();
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -11826,12 +11856,12 @@ interface WebKitMutationObserver {
|
|
|
| interface WebKitNamedFlow {
|
|
|
| - final NodeList contentNodes;
|
| -
|
| final String name;
|
|
|
| final bool overset;
|
|
|
| + NodeList getContent();
|
| +
|
| NodeList getRegionsByContentNode(Node contentNode);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -11908,27 +11938,7 @@ interface WebSocket extends EventTarget default _WebSocketFactoryProvider {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface WheelEvent extends UIEvent {
|
| -
|
| - final bool altKey;
|
| -
|
| - final int clientX;
|
| -
|
| - final int clientY;
|
| -
|
| - final bool ctrlKey;
|
| -
|
| - final bool metaKey;
|
| -
|
| - final int offsetX;
|
| -
|
| - final int offsetY;
|
| -
|
| - final int screenX;
|
| -
|
| - final int screenY;
|
| -
|
| - final bool shiftKey;
|
| +interface WheelEvent extends MouseEvent {
|
|
|
| final bool webkitDirectionInvertedFromDevice;
|
|
|
| @@ -11938,10 +11948,6 @@ interface WheelEvent extends UIEvent {
|
|
|
| final int wheelDeltaY;
|
|
|
| - final int x;
|
| -
|
| - 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);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -12083,8 +12089,6 @@ interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi
|
|
|
| final Object response;
|
|
|
| - final Blob responseBlob;
|
| -
|
| final String responseText;
|
|
|
| String responseType;
|
|
|