1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibWeb/HTML: Port Window.localStorage to IDL

This commit is contained in:
Linus Groh 2023-03-07 18:18:20 +00:00
parent 5cc6b1c4db
commit 37e9302dd9
4 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,6 @@
#import <HTML/Storage.idl>
// https://html.spec.whatwg.org/multipage/webstorage.html#windowlocalstorage
interface mixin WindowLocalStorage {
readonly attribute Storage localStorage;
};