1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

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

This commit is contained in:
Linus Groh 2023-03-06 11:14:45 +00:00
parent 94f1eff291
commit 192f5e61f6
3 changed files with 3 additions and 20 deletions

View file

@ -39,6 +39,7 @@ interface Window : EventTarget {
// FIXME: Replace these with 'Window includes WindowOrWorkerGlobalScope;' once we have feature parity
[Replaceable] readonly attribute USVString origin;
readonly attribute boolean isSecureContext;
DOMString btoa(DOMString data);
};
Window includes GlobalEventHandlers;
Window includes WindowEventHandlers;