Bug 1787199 [wpt PR 35620] - Add tests for `VisibilityStateEntry`, a=testonly
[gecko.git] / dom / webidl / StorageManager.webidl
blob45927bd62b8adda127c054eb5826b629de403458
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://storage.spec.whatwg.org/#storagemanager
8  *
9  */
11 [SecureContext,
12  Exposed=(Window,Worker),
13  Pref="dom.storageManager.enabled"]
14 interface StorageManager {
15   [NewObject]
16   Promise<boolean> persisted();
18   [Exposed=Window, NewObject]
19   Promise<boolean> persist();
21   [NewObject]
22   Promise<StorageEstimate> estimate();
25 dictionary StorageEstimate {
26   unsigned long long usage;
27   unsigned long long quota;
30 [SecureContext]
31 partial interface StorageManager {
32   [Pref="dom.fs.enabled", NewObject]
33   Promise<FileSystemDirectoryHandle> getDirectory();
36 /**
37  * Testing methods that exist only for the benefit of automated glass-box
38  * testing.  Will never be exposed to content at large and unlikely to be useful
39  * in a WebDriver context.
40  */
41 [SecureContext]
42 partial interface StorageManager {
43   [ChromeOnly]
44   undefined shutdown();