1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

LibWeb: Make DOMRectReadOnly use double instead of float

This commit is contained in:
Bastiaan van der Plaat 2023-08-20 21:48:42 +02:00 committed by Sam Atkins
parent 2e1d6f624d
commit e4270bc01d
2 changed files with 2 additions and 1 deletions

View file

@ -45,6 +45,6 @@ protected:
virtual void initialize(JS::Realm&) override;
Gfx::FloatRect m_rect;
Gfx::DoubleRect m_rect;
};
}