| Index: modules/indexeddb/IDBIndex.idl
|
| diff --git a/modules/indexeddb/IDBIndex.idl b/modules/indexeddb/IDBIndex.idl
|
| index 4819a1ac868fd69c0f0aada42fe7a2a66060e770..eca9a6fcda8f95e7f5c4cf8b38f13f2c0221d586 100644
|
| --- a/modules/indexeddb/IDBIndex.idl
|
| +++ b/modules/indexeddb/IDBIndex.idl
|
| @@ -31,10 +31,10 @@
|
| readonly attribute boolean unique;
|
| readonly attribute boolean multiEntry;
|
|
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any key, [Default=NullString] optional DOMString direction);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any key, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, [Default=NullString] optional DOMString direction);
|
|
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest get(any key);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest getKey(any key);
|
| - [CallWith=ScriptExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest get(any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest getKey(any key);
|
| + [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
| };
|
|
|