1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-12 02:30:30 +09:00

LibWeb: Implement HTML::ImageBitmap

And the two methods of `WindowOrWorkerGlobalScope` that are used as
constructors for it.
This commit is contained in:
Lucas CHOLLET 2024-04-04 21:48:58 -04:00 committed by Andreas Kling
parent db0519ddc1
commit 676fc5e8c6
Notes: sideshowbarker 2024-07-17 08:45:34 +09:00
11 changed files with 309 additions and 2 deletions

View file

@ -61,6 +61,7 @@ public:
using WindowOrWorkerGlobalScopeMixin::btoa;
using WindowOrWorkerGlobalScopeMixin::clear_interval;
using WindowOrWorkerGlobalScopeMixin::clear_timeout;
using WindowOrWorkerGlobalScopeMixin::create_image_bitmap;
using WindowOrWorkerGlobalScopeMixin::fetch;
using WindowOrWorkerGlobalScopeMixin::queue_microtask;
using WindowOrWorkerGlobalScopeMixin::set_interval;