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

LibWeb: Implement HTMLImageElement.width and HTMLImageElement.height

This commit is contained in:
Andreas Kling 2022-02-25 18:42:37 +01:00
parent b023308f5c
commit 17f34488f6
3 changed files with 55 additions and 0 deletions

View file

@ -13,4 +13,7 @@ interface HTMLImageElement : HTMLElement {
[Reflect] attribute DOMString align;
[LegacyNullToEmptyString, Reflect] attribute DOMString border;
[CEReactions] attribute unsigned long width;
[CEReactions] attribute unsigned long height;
};