| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index 9fcdb35e2e11e4803862ba19d42632801a733be1..4458367c8c86422b4231a3c0529320470093ebde 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -649,6 +649,8 @@ interface Blob {
|
|
|
| final String type;
|
|
|
| + Blob slice([int start, int end, String contentType]);
|
| +
|
| Blob webkitSlice([int start, int end, String contentType]);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1243,8 +1245,6 @@ interface Console {
|
|
|
| final MemoryInfo memory;
|
|
|
| - final List<ScriptProfile> profiles;
|
| -
|
| void assertCondition(bool condition, Object arg);
|
|
|
| void count();
|
| @@ -2221,7 +2221,7 @@ interface Document extends Node {
|
|
|
| final Element documentElement;
|
|
|
| - String documentURI;
|
| + final String documentURI;
|
|
|
| String domain;
|
|
|
| @@ -2265,6 +2265,8 @@ interface Document extends Node {
|
|
|
| final bool webkitIsFullScreen;
|
|
|
| + final Element webkitPointerLockElement;
|
| +
|
| final String webkitVisibilityState;
|
|
|
| final String xmlEncoding;
|
| @@ -2354,6 +2356,8 @@ interface Document extends Node {
|
| void webkitCancelFullScreen();
|
|
|
| void webkitExitFullscreen();
|
| +
|
| + void webkitExitPointerLock();
|
| }
|
| // 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
|
| @@ -2530,6 +2534,8 @@ interface Element extends Node, ElementTraversal {
|
| void webkitRequestFullScreen(int flags);
|
|
|
| void webkitRequestFullscreen();
|
| +
|
| + void webkitRequestPointerLock();
|
| }
|
| // 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
|
| @@ -3403,7 +3409,7 @@ interface HTMLButtonElement extends HTMLElement {
|
|
|
| String name;
|
|
|
| - final String type;
|
| + String type;
|
|
|
| final String validationMessage;
|
|
|
| @@ -3981,6 +3987,8 @@ interface HTMLInputElement extends HTMLElement {
|
|
|
| num valueAsNumber;
|
|
|
| + final EntryArray webkitEntries;
|
| +
|
| bool webkitGrammar;
|
|
|
| bool webkitSpeech;
|
| @@ -4619,8 +4627,6 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
| int selectedIndex;
|
|
|
| - final HTMLCollection selectedOptions;
|
| -
|
| int size;
|
|
|
| final String type;
|
| @@ -9676,8 +9682,6 @@ interface ScriptProfileNode {
|
|
|
| final int callUID;
|
|
|
| - final List<ScriptProfileNode> children;
|
| -
|
| final String functionName;
|
|
|
| final int lineNumber;
|
| @@ -9691,6 +9695,8 @@ interface ScriptProfileNode {
|
| final String url;
|
|
|
| final bool visible;
|
| +
|
| + List<ScriptProfileNode> children();
|
| }
|
| // 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
|
| @@ -9880,7 +9886,7 @@ interface SpeechRecognitionAlternative {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface SpeechRecognitionError {
|
| +interface SpeechRecognitionError extends Event {
|
|
|
| static final int ABORTED = 2;
|
|
|
| @@ -9912,8 +9918,6 @@ interface SpeechRecognitionError {
|
|
|
| interface SpeechRecognitionEvent extends Event {
|
|
|
| - final SpeechRecognitionError error;
|
| -
|
| final SpeechRecognitionResult result;
|
|
|
| final SpeechRecognitionResultList resultHistory;
|
| @@ -10577,6 +10581,14 @@ interface WebGLDebugShaders {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +interface WebGLDepthTexture {
|
| +}
|
| +// 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 WebGLFramebuffer {
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -12056,8 +12068,6 @@ interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi
|
|
|
| static final int UNSENT = 0;
|
|
|
| - bool asBlob;
|
| -
|
| final int readyState;
|
|
|
| final Object response;
|
|
|