| Index: Source/modules/indexeddb/IDBKeyRange.idl
|
| diff --git a/Source/modules/indexeddb/IDBKeyRange.idl b/Source/modules/indexeddb/IDBKeyRange.idl
|
| index fa3a088e9f23032c57502783f8be69ef02c4c933..4aa21f11f9aae7b967711c2a310fc2c28392bc38 100644
|
| --- a/Source/modules/indexeddb/IDBKeyRange.idl
|
| +++ b/Source/modules/indexeddb/IDBKeyRange.idl
|
| @@ -32,7 +32,7 @@
|
| readonly attribute boolean upperOpen;
|
|
|
| [CallWith=ExecutionContext, RaisesException] static IDBKeyRange only(any value);
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, [Default=Undefined] optional boolean open);
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, [Default=Undefined] optional boolean open);
|
| - [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, [Default=Undefined] optional boolean lowerOpen, [Default=Undefined] optional boolean upperOpen);
|
| + [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
|
| + [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
|
| + [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
|
| };
|
|
|