1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

LibWeb/HTML: Port Window.sessionStorage to IDL

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

View file

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