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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 19820007: Fixes for Blink roll. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minors fixes Created 7 years, 5 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: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index 873e67253410fd92fd299eb84ed836d2df344393..565b4b82b23df7a662d2c35e31a6814dfbd9f983 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -40,8 +40,11 @@ interface ScriptProcessorNode {
[Custom] void _setEventListener(EventListener eventListener);
};
+/*
+// TODO(vsm): How should this interact with the new ChildNode and
+// ParentNode interfaces?
// Force ElementTraversal. WebKit defines these directly.
-interface ElementTraversal {
+interface ElementTraversal : ChildNode, ParentNode {
readonly attribute unsigned long childElementCount;
readonly attribute Element firstElementChild;
readonly attribute Element lastElementChild;
@@ -49,6 +52,7 @@ interface ElementTraversal {
readonly attribute Element previousElementSibling;
};
Element implements ElementTraversal;
+*/
[Callback]
interface TimeoutHandler {
@@ -221,7 +225,7 @@ interface Blob {
[Supplemental,
Constructor(float x, float y)
]
-interface DOMPoint {
+interface WebKitPoint {
};
[Supplemental, Callback] // Add missing Callback attribute.
@@ -324,3 +328,7 @@ interface Location {
[CustomSetter] attribute DOMString search;
[CustomSetter] attribute DOMString hash;
};
+
+
+[Supplemental]
+interface Window : EventTarget {};

Powered by Google App Engine
This is Rietveld 408576698