1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

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
parent 682a4a347a
commit e5d978af9f
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;
};