2013-09-28 15:25:46 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/*
|
|
|
|
* The origin of this IDL file is
|
2022-07-15 06:43:33 +03:00
|
|
|
* https://w3c.github.io/IndexedDB/#keyrange
|
2013-09-28 15:25:46 +04:00
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2022-08-24 13:58:46 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2013-09-28 15:25:46 +04:00
|
|
|
interface IDBKeyRange {
|
|
|
|
[Throws]
|
|
|
|
readonly attribute any lower;
|
|
|
|
[Throws]
|
|
|
|
readonly attribute any upper;
|
|
|
|
[Constant]
|
|
|
|
readonly attribute boolean lowerOpen;
|
|
|
|
[Constant]
|
|
|
|
readonly attribute boolean upperOpen;
|
2016-02-27 00:58:47 +03:00
|
|
|
[Throws]
|
2019-08-15 19:53:49 +03:00
|
|
|
boolean _includes(any key);
|
2016-02-27 00:58:47 +03:00
|
|
|
|
|
|
|
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2013-09-28 15:25:46 +04:00
|
|
|
static IDBKeyRange only (any value);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2013-09-28 15:25:46 +04:00
|
|
|
static IDBKeyRange lowerBound (any lower, optional boolean open = false);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2013-09-28 15:25:46 +04:00
|
|
|
static IDBKeyRange upperBound (any upper, optional boolean open = false);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2013-09-28 15:25:46 +04:00
|
|
|
static IDBKeyRange bound (any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
|
|
|
|
};
|
2015-09-04 22:12:52 +03:00
|
|
|
|
2018-10-21 03:02:53 +03:00
|
|
|
[Exposed=(Window,Worker),
|
2022-07-15 07:25:23 +03:00
|
|
|
Pref="dom.indexedDB.experimental"]
|
2015-09-04 22:12:52 +03:00
|
|
|
interface IDBLocaleAwareKeyRange : IDBKeyRange {
|
|
|
|
[NewObject, Throws]
|
|
|
|
static IDBLocaleAwareKeyRange bound (any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
|
|
|
|
};
|