1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:28:11 +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

@ -39,6 +39,9 @@ public:
unsigned height() const;
void set_height(unsigned);
unsigned natural_width() const;
unsigned natural_height() const;
private:
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;