1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00

LibWeb/HTML: Port Window.atob() to IDL

This commit is contained in:
Linus Groh 2023-03-06 11:19:16 +00:00
parent 192f5e61f6
commit 6dd1934ed8
3 changed files with 2 additions and 31 deletions

View file

@ -40,6 +40,7 @@ interface Window : EventTarget {
[Replaceable] readonly attribute USVString origin;
readonly attribute boolean isSecureContext;
DOMString btoa(DOMString data);
ByteString atob(DOMString data);
};
Window includes GlobalEventHandlers;
Window includes WindowEventHandlers;