| Index: tools/dom/idl/dart/dart.idl
|
| diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
|
| index ee014c0b88793212e2512e7381b05539102688ed..a59b22a46fa3e6f90ebe2b0ec14ec7246ee5c4d4 100644
|
| --- a/tools/dom/idl/dart/dart.idl
|
| +++ b/tools/dom/idl/dart/dart.idl
|
| @@ -43,20 +43,6 @@ 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 : ChildNode, ParentNode {
|
| - readonly attribute unsigned long childElementCount;
|
| - readonly attribute Element firstElementChild;
|
| - readonly attribute Element lastElementChild;
|
| - readonly attribute Element nextElementSibling;
|
| - readonly attribute Element previousElementSibling;
|
| -};
|
| -Element implements ElementTraversal;
|
| -*/
|
| -
|
| [DartSupplemental]
|
| interface Element {
|
| readonly attribute Element nextElementSibling;
|
| @@ -229,8 +215,8 @@ interface IDBObjectStore {
|
| [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [DartForceOptional] optional any key);
|
| [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [DartForceOptional] optional any key);
|
| // [CallWith=ExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor(any key, [DartForceOptional] optional DOMString direction);
|
| - [CallWith=ExecutionContext, RaisesException] IDBRequest count(any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [DartForceOptional] optional DOMString direction);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] any key);
|
| };
|
|
|
| interface EntrySync {
|
| @@ -239,7 +225,6 @@ interface EntrySync {
|
| EntrySync getParent();
|
| };
|
|
|
| -
|
| [DartSupplemental,
|
| CustomConstructor,
|
| Constructor(Array blobParts, optional DOMString type, optional DOMString endings)
|
|
|