Index: Modules/indexeddb/IDBObjectStore.idl |
diff --git a/Modules/indexeddb/IDBObjectStore.idl b/Modules/indexeddb/IDBObjectStore.idl |
index 46603225a712623b2eba9307e77e51eab521f326..700cf178a1084e7584fb77373a0d9dd1fd8d880d 100644 |
--- a/Modules/indexeddb/IDBObjectStore.idl |
+++ b/Modules/indexeddb/IDBObjectStore.idl |
@@ -24,8 +24,6 @@ |
*/ |
[ |
- Conditional=INDEXED_DATABASE, |
- JSNoStaticTables, |
ImplementationLacksVTable |
] interface IDBObjectStore { |
[TreatReturnedNullStringAs=Null] readonly attribute DOMString name; |
@@ -53,9 +51,9 @@ |
[CallWith=ScriptExecutionContext] IDBRequest openCursor(in any key, in [Optional] DOMString direction) |
raises (DOMException); |
- [CallWith=ScriptExecutionContext, JSCustom] IDBIndex createIndex(in DOMString name, in sequence<DOMString> keyPath, in [Optional] Dictionary options) |
+ [CallWith=ScriptExecutionContext] IDBIndex createIndex(in DOMString name, in sequence<DOMString> keyPath, in [Optional] Dictionary options) |
raises (DOMException); |
- [CallWith=ScriptExecutionContext, JSCustom] IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options) |
+ [CallWith=ScriptExecutionContext] IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options) |
raises (DOMException); |
IDBIndex index(in DOMString name) |
raises (DOMException); |