| Index: Source/modules/indexeddb/IDBRequest.idl
|
| diff --git a/Source/modules/indexeddb/IDBRequest.idl b/Source/modules/indexeddb/IDBRequest.idl
|
| index b0b0bdb15174ff04b068786b3ec96ef83ac80e66..e8f87b86cae6d615a5de86d22e8cd4c020670db6 100644
|
| --- a/Source/modules/indexeddb/IDBRequest.idl
|
| +++ b/Source/modules/indexeddb/IDBRequest.idl
|
| @@ -28,9 +28,8 @@
|
| */
|
|
|
| [
|
| - ActiveDOMObject,
|
| - EventTarget
|
| -] interface IDBRequest {
|
| + ActiveDOMObject
|
| +] interface IDBRequest : EventTarget {
|
| [GetterRaisesException] readonly attribute IDBAny result;
|
| [GetterRaisesException] readonly attribute DOMError error;
|
|
|
| @@ -43,13 +42,4 @@
|
| // Events
|
| attribute EventListener onsuccess;
|
| attribute EventListener onerror;
|
| -
|
| - // EventTarget interface
|
| - void addEventListener(DOMString type,
|
| - EventListener listener,
|
| - optional boolean useCapture);
|
| - void removeEventListener(DOMString type,
|
| - EventListener listener,
|
| - optional boolean useCapture);
|
| - [RaisesException] boolean dispatchEvent(Event evt);
|
| };
|
|
|