| Index: modules/indexeddb/IDBCursor.idl
|
| diff --git a/modules/indexeddb/IDBCursor.idl b/modules/indexeddb/IDBCursor.idl
|
| index 18d53a11730ec294618dd894839a25fcf279c366..1da7855e47c5b811ef2e8c0b66ea7d9d12fd4ca6 100644
|
| --- a/modules/indexeddb/IDBCursor.idl
|
| +++ b/modules/indexeddb/IDBCursor.idl
|
| @@ -26,12 +26,12 @@
|
| interface IDBCursor {
|
|
|
| readonly attribute DOMString direction;
|
| - [CallWith=ScriptExecutionContext, CachedAttribute=isKeyDirty] readonly attribute any key;
|
| - [CallWith=ScriptExecutionContext, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
|
| + [CallWith=ExecutionContext, CachedAttribute=isKeyDirty] readonly attribute any key;
|
| + [CallWith=ExecutionContext, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
|
| readonly attribute IDBAny source;
|
|
|
| [CallWith=ScriptState, RaisesException] IDBRequest update(any value);
|
| [RaisesException] void advance([EnforceRange] unsigned long count);
|
| - [CallWith=ScriptExecutionContext, ImplementedAs=continueFunction, RaisesException] void continue([Default=Undefined] optional any key);
|
| - [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
|
| + [CallWith=ExecutionContext, ImplementedAs=continueFunction, RaisesException] void continue([Default=Undefined] optional any key);
|
| + [CallWith=ExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
|
| };
|
|
|