| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index a9e896b5a792c5822ae66767b083ebd7a4c1565a..6e241ceb4dbc058ceba44f187b3c23f12047d831 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -160,13 +160,6 @@ class _TextTrackCueFactoryProvider {
|
| // 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.
|
|
|
| -class _WebKitBlobBuilderFactoryProvider {
|
| - factory WebKitBlobBuilder() => _dummy();
|
| -}
|
| -// 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.
|
| -
|
| class _WebKitCSSMatrixFactoryProvider {
|
| factory WebKitCSSMatrix([String cssValue = null]) => _dummy();
|
| }
|
| @@ -4251,13 +4244,9 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
| void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]);
|
|
|
| - void webkitSourceAddId(String id, String type);
|
| -
|
| void webkitSourceAppend(Uint8Array data);
|
|
|
| void webkitSourceEndOfStream(int status);
|
| -
|
| - void webkitSourceRemoveId(String id);
|
| }
|
| // 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
|
| @@ -4773,6 +4762,8 @@ interface HTMLTableElement extends HTMLElement {
|
|
|
| HTMLElement createCaption();
|
|
|
| + HTMLElement createTBody();
|
| +
|
| HTMLElement createTFoot();
|
|
|
| HTMLElement createTHead();
|
| @@ -5061,6 +5052,8 @@ interface IDBCursor {
|
|
|
| final /*IDBAny*/ source;
|
|
|
| + void advance(int count);
|
| +
|
| void continueFunction([/*IDBKey*/ key]);
|
|
|
| IDBRequest delete();
|
| @@ -5189,9 +5182,9 @@ interface IDBIndex {
|
|
|
| IDBRequest getKey(key);
|
|
|
| - IDBRequest openCursor([IDBKeyRange range, int direction]);
|
| + IDBRequest openCursor([key_OR_range, int direction]);
|
|
|
| - IDBRequest openKeyCursor([IDBKeyRange range, int direction]);
|
| + IDBRequest openKeyCursor([key_OR_range, int direction]);
|
| }
|
| // 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
|
| @@ -5259,7 +5252,7 @@ interface IDBObjectStore {
|
|
|
| IDBIndex index(String name);
|
|
|
| - IDBRequest openCursor([IDBKeyRange range, int direction]);
|
| + IDBRequest openCursor([key_OR_range, int direction]);
|
|
|
| IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]);
|
| }
|
| @@ -6063,7 +6056,7 @@ interface Navigator {
|
|
|
| void registerProtocolHandler(String scheme, String url, String title);
|
|
|
| - void webkitGetUserMedia(String options, NavigatorUserMediaSuccessCallback successCallback, [NavigatorUserMediaErrorCallback errorCallback]);
|
| + void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback successCallback, [NavigatorUserMediaErrorCallback errorCallback]);
|
| }
|
| // 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
|
| @@ -6562,6 +6555,8 @@ interface Performance {
|
| final PerformanceNavigation navigation;
|
|
|
| final PerformanceTiming timing;
|
| +
|
| + num webkitNow();
|
| }
|
| // 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
|
| @@ -6883,7 +6878,7 @@ interface Rect {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -typedef bool RequestAnimationFrameCallback(int time);
|
| +typedef bool RequestAnimationFrameCallback(num highResTime);
|
| // 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.
|
| @@ -10977,8 +10972,6 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
|
|
|
| static final int SCISSOR_TEST = 0x0C11;
|
|
|
| - static final int SHADER_COMPILER = 0x8DFA;
|
| -
|
| static final int SHADER_TYPE = 0x8B4F;
|
|
|
| static final int SHADING_LANGUAGE_VERSION = 0x8B8C;
|
| @@ -11579,20 +11572,6 @@ interface WebKitAnimationList {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface WebKitBlobBuilder default _WebKitBlobBuilderFactoryProvider {
|
| -
|
| - WebKitBlobBuilder();
|
| -
|
| - void append(arrayBuffer_OR_blob_OR_value, [String endings]);
|
| -
|
| - Blob getBlob([String contentType]);
|
| -}
|
| -// 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 WebKitCSSFilterValue extends CSSValueList {
|
|
|
| static final int CSS_FILTER_BLUR = 10;
|
|
|