LibWeb: Implement HTMLImageElement.width and HTMLImageElement.height

This commit is contained in:
Andreas Kling 2022-02-25 18:42:37 +01:00
commit 17f34488f6
Notes: sideshowbarker 2024-07-17 18:16:38 +09:00
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;
};