Bug 1852740: add tests for the `fetchpriority` attribute in Link headers. r=necko...
[gecko.git] / dom / webidl / IDBFactory.webidl
blob37143bcbb5cba8de165160ab4d86117e7cb10055
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * https://w3c.github.io/IndexedDB/#factory-interface
8  *
9  * Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
10  * liability, trademark and document use rules apply.
11  */
13 interface Principal;
15 dictionary IDBOpenDBOptions
17   [EnforceRange] unsigned long long version;
20 /**
21  * Interface that defines the indexedDB property on a window.  See
22  * https://w3c.github.io/IndexedDB/#idbfactory
23  * for more information.
24  */
25 [Exposed=(Window,Worker)]
26 interface IDBFactory {
27   [NewObject, Throws, NeedsCallerType]
28   IDBOpenDBRequest
29   open(DOMString name,
30        [EnforceRange] unsigned long long version);
32   [NewObject, Throws, NeedsCallerType]
33   IDBOpenDBRequest
34   open(DOMString name,
35        optional IDBOpenDBOptions options = {});
37   [NewObject, Throws, NeedsCallerType]
38   IDBOpenDBRequest
39   deleteDatabase(DOMString name,
40                  optional IDBOpenDBOptions options = {});
42   [Throws]
43   short
44   cmp(any first,
45       any second);
47   [NewObject, Throws, ChromeOnly, NeedsCallerType]
48   IDBOpenDBRequest
49   openForPrincipal(Principal principal,
50                    DOMString name,
51                    [EnforceRange] unsigned long long version);
53   [NewObject, Throws, ChromeOnly, NeedsCallerType]
54   IDBOpenDBRequest
55   openForPrincipal(Principal principal,
56                    DOMString name,
57                    optional IDBOpenDBOptions options = {});
59   [NewObject, Throws, ChromeOnly, NeedsCallerType]
60   IDBOpenDBRequest
61   deleteForPrincipal(Principal principal,
62                      DOMString name,
63                      optional IDBOpenDBOptions options = {});