| Index: Modules/indexeddb/IDBDatabase.idl
|
| diff --git a/Modules/indexeddb/IDBDatabase.idl b/Modules/indexeddb/IDBDatabase.idl
|
| index 1348548290c883b65b1160601a589283a6ec3132..a9f5440000be2d2d9a1a394be19e76067182a1f8 100644
|
| --- a/Modules/indexeddb/IDBDatabase.idl
|
| +++ b/Modules/indexeddb/IDBDatabase.idl
|
| @@ -25,10 +25,8 @@
|
| */
|
|
|
| [
|
| - Conditional=INDEXED_DATABASE,
|
| ActiveDOMObject,
|
| - EventTarget,
|
| - JSNoStaticTables
|
| + EventTarget
|
| ] interface IDBDatabase {
|
| readonly attribute DOMString name;
|
| readonly attribute IDBAny version;
|
| @@ -38,7 +36,7 @@
|
| attribute EventListener onerror;
|
| attribute EventListener onversionchange;
|
|
|
| - [JSCustom] IDBObjectStore createObjectStore(in DOMString name, in [Optional] Dictionary options)
|
| + IDBObjectStore createObjectStore(in DOMString name, in [Optional] Dictionary options)
|
| raises (DOMException);
|
| void deleteObjectStore(in DOMString name)
|
| raises (DOMException);
|
| @@ -61,4 +59,3 @@
|
| boolean dispatchEvent(in Event evt)
|
| raises(EventException);
|
| };
|
| -
|
|
|