Files
serenity/Userland/Libraries/LibWeb/StorageAPI/NavigatorStorage.idl
Jamie Mansfield ce7cbe3baa LibWeb: Implement NavigatorStorage mixin interface
Co-authored-by: Tim Flynn <trflynn89@serenityos.org>
(cherry picked from commit e3b3041a0c87f4cfd6d7941963452c3c9428b487)
2024-11-01 18:23:28 -04:00

8 lines
208 B
Plaintext

#import <StorageAPI/StorageManager.idl>
// https://storage.spec.whatwg.org/#navigatorstorage
[SecureContext]
interface mixin NavigatorStorage {
[SameObject] readonly attribute StorageManager storage;
};