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

LibWeb: Add atob/btoa to WindowObject

This commit is contained in:
Joel Puig Rubio 2020-06-20 16:44:27 +02:00 committed by Andreas Kling
parent 37598de582
commit 1d59053494
2 changed files with 35 additions and 0 deletions

View file

@ -60,6 +60,8 @@ private:
JS_DECLARE_NATIVE_FUNCTION(set_timeout);
JS_DECLARE_NATIVE_FUNCTION(request_animation_frame);
JS_DECLARE_NATIVE_FUNCTION(cancel_animation_frame);
JS_DECLARE_NATIVE_FUNCTION(atob);
JS_DECLARE_NATIVE_FUNCTION(btoa);
NonnullRefPtr<Window> m_impl;