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

Unified Diff: lib/dom/dom.dart

Issue 10441106: Roll IDL to multivm@567 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dom.dart
diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
index 5343b82edaf0dc7bf81e3f5a7c56e5f15b3bad83..0ab07a6500f90de359454148784c66b70ee01074 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -822,8 +822,6 @@ interface CSSRule {
static final int WEBKIT_KEYFRAME_RULE = 8;
- static final int WEBKIT_REGION_RULE = 10;
-
String cssText;
final CSSRule parentRule;
@@ -1016,6 +1014,8 @@ interface CanvasRenderingContext2D extends CanvasRenderingContext {
final num webkitBackingStorePixelRatio;
+ bool webkitImageSmoothingEnabled;
+
List webkitLineDash;
num webkitLineDashOffset;
@@ -1389,6 +1389,16 @@ interface DOMApplicationCache extends ApplicationCache {
// WARNING: Do not edit - generated code.
+interface DOMError {
+
+ final String name;
+}
+// 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 DOMException {
static final int ABORT_ERR = 20;
@@ -1675,6 +1685,14 @@ interface DOMStringList extends List<String> {
// WARNING: Do not edit - generated code.
+interface DOMStringMap {
+}
+// 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 DOMTokenList {
final int length;
@@ -1761,6 +1779,8 @@ interface Window extends EventTarget {
final int outerWidth;
+ final PagePopupController pagePopupController;
+
final int pageXOffset;
final int pageYOffset;
@@ -1917,8 +1937,6 @@ interface DataTransferItem {
Blob getAsFile();
void getAsString([StringCallback callback]);
-
- void webkitGetAsEntry([EntryCallback callback]);
}
// 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
@@ -2327,8 +2345,6 @@ interface Document extends Node, NodeSelector {
void webkitCancelFullScreen();
void webkitExitFullscreen();
-
- WebKitNamedFlow webkitGetFlowByName(String name);
}
// 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
@@ -3614,6 +3630,8 @@ interface HTMLFieldSetElement extends HTMLElement {
bool disabled;
+ final HTMLCollection elements;
+
final HTMLFormElement form;
String name;
@@ -4246,9 +4264,17 @@ interface HTMLMediaElement extends HTMLElement {
void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]);
- void webkitSourceAppend(Uint8Array data);
+ void webkitSourceAbort(String id);
+
+ void webkitSourceAddId(String id, String type);
+
+ void webkitSourceAppend(String id, Uint8Array data);
+
+ TimeRanges webkitSourceBuffered(String id);
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
@@ -5168,7 +5194,7 @@ interface IDBFactory {
interface IDBIndex {
- final String keyPath;
+ final /*IDBAny*/ keyPath;
final bool multiEntry;
@@ -5230,9 +5256,11 @@ interface IDBKeyRange default _IDBKeyRangeFactoryProvider {
interface IDBObjectStore {
+ final bool autoIncrement;
+
final List<String> indexNames;
- final String keyPath;
+ final /*IDBAny*/ keyPath;
final String name;
@@ -5509,7 +5537,7 @@ interface KeyboardEvent extends UIEvent {
// WARNING: Do not edit - generated code.
-interface LocalMediaStream extends MediaStream {
+interface LocalMediaStream extends MediaStream, EventTarget {
void stop();
}
@@ -6483,6 +6511,16 @@ interface OverflowEvent extends Event {
// WARNING: Do not edit - generated code.
+interface PagePopupController {
+
+ void setValueAndClosePopup(int numberValue, String stringValue);
+}
+// 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 PageTransitionEvent extends Event {
final bool persisted;
@@ -9111,6 +9149,8 @@ interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
final SVGPoint currentTranslate;
+ final SVGViewSpec currentView;
+
final SVGAnimatedLength height;
final num pixelUnitToMillimeterX;
@@ -9121,7 +9161,7 @@ interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
final num screenPixelToMillimeterY;
- bool useCurrentView;
+ final bool useCurrentView;
final SVGRect viewport;
@@ -9549,7 +9589,9 @@ interface SVGViewElement extends SVGElement, SVGExternalResourcesRequired, SVGFi
// WARNING: Do not edit - generated code.
-interface SVGViewSpec extends SVGZoomAndPan, SVGFitToViewBox {
+interface SVGViewSpec {
+
+ final SVGAnimatedPreserveAspectRatio preserveAspectRatio;
final String preserveAspectRatioString;
@@ -9557,11 +9599,15 @@ interface SVGViewSpec extends SVGZoomAndPan, SVGFitToViewBox {
final String transformString;
+ final SVGAnimatedRect viewBox;
+
final String viewBoxString;
final SVGElement viewTarget;
final String viewTargetString;
+
+ int zoomAndPan;
}
// 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
@@ -9693,8 +9739,6 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
String innerHTML;
- final DOMSelection selection;
-
Element getElementById(String elementId);
NodeList getElementsByClassName(String className);
@@ -9702,6 +9746,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
NodeList getElementsByTagName(String tagName);
NodeList getElementsByTagNameNS(String namespaceURI, String localName);
+
+ DOMSelection getSelection();
}
// 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
@@ -11741,16 +11787,6 @@ interface WebKitCSSMatrix default _WebKitCSSMatrixFactoryProvider {
// WARNING: Do not edit - generated code.
-interface WebKitCSSRegionRule extends CSSRule {
-
- final CSSRuleList cssRules;
-}
-// 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 WebKitCSSTransformValue extends CSSValueList {
static final int CSS_MATRIX = 11;
@@ -11819,7 +11855,9 @@ interface WebKitNamedFlow {
final NodeList contentNodes;
- final bool overflow;
+ final String name;
+
+ final bool overset;
NodeList getRegionsByContentNode(Node contentNode);
}
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698