ladybird/Userland/Libraries/LibWeb/StorageAPI/NavigatorStorage.idl
Jamie Mansfield e3b3041a0c LibWeb: Implement NavigatorStorage mixin interface
Co-authored-by: Tim Flynn <trflynn89@serenityos.org>
2024-08-16 11:22:09 -04:00

7 lines
208 B
Text

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