LibWeb: Bring HTMLImageElement closer to spec

This commit is contained in:
Igor Pissolati 2022-04-12 13:20:43 -03:00 committed by Andreas Kling
commit e5d978af9f
Notes: sideshowbarker 2024-07-17 11:53:40 +09:00
3 changed files with 29 additions and 0 deletions

View file

@ -15,5 +15,7 @@ interface HTMLImageElement : HTMLElement {
[CEReactions] attribute unsigned long width;
[CEReactions] attribute unsigned long height;
readonly attribute unsigned long naturalWidth;
readonly attribute unsigned long naturalHeight;
};