diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp index d9ce91c9c8..e7cf8757fb 100644 --- a/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp @@ -20,6 +20,11 @@ SVGFormattingContext::SVGFormattingContext(LayoutState& state, Box const& box, F SVGFormattingContext::~SVGFormattingContext() = default; +float SVGFormattingContext::automatic_content_height() const +{ + return 0; +} + void SVGFormattingContext::run(Box const& box, LayoutMode) { auto& svg_svg_element = verify_cast<SVG::SVGSVGElement>(*box.dom_node()); |