summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/SVG/ViewBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG/ViewBox.h')
-rw-r--r--Userland/Libraries/LibWeb/SVG/ViewBox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/ViewBox.h b/Userland/Libraries/LibWeb/SVG/ViewBox.h
index 8c1be55ec8..e46b85175b 100644
--- a/Userland/Libraries/LibWeb/SVG/ViewBox.h
+++ b/Userland/Libraries/LibWeb/SVG/ViewBox.h
@@ -12,10 +12,10 @@
namespace Web::SVG {
struct ViewBox {
- float min_x { 0 };
- float min_y { 0 };
- float width { 0 };
- float height { 0 };
+ double min_x { 0 };
+ double min_y { 0 };
+ double width { 0 };
+ double height { 0 };
};
Optional<ViewBox> try_parse_view_box(StringView);