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

LibWeb: Start fleshing out HTML "image requests" and "image data"

This patch adds HTML::ImageRequest and HTML::DecodedImageData.

The latter had to use a different name than "ImageData", as there is
already an IDL-exposed ImageData class in HTML.
This commit is contained in:
Andreas Kling 2023-05-10 19:36:43 +02:00
parent 420952a433
commit 596eabe9e6
6 changed files with 281 additions and 0 deletions

View file

@ -288,6 +288,7 @@ class ClassicScript;
class CloseEvent;
class CustomElementDefinition;
class CustomElementRegistry;
class DecodedImageData;
class DocumentState;
class DOMParser;
class DOMStringMap;
@ -371,6 +372,7 @@ class HTMLUListElement;
class HTMLUnknownElement;
class HTMLVideoElement;
class ImageData;
class ImageRequest;
class Location;
class MediaError;
class MessageChannel;