mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
Co-authored-by: Tim Flynn <trflynn89@serenityos.org> (cherry picked from commit e3b3041a0c87f4cfd6d7941963452c3c9428b487)
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
#import <StorageAPI/StorageManager.idl>
|
|
|
|
// https://storage.spec.whatwg.org/#navigatorstorage
|
|
[SecureContext]
|
|
interface mixin NavigatorStorage {
|
|
[SameObject] readonly attribute StorageManager storage;
|
|
};
|