diff --git a/Libraries/LibWeb/DOM/Element.cpp b/Libraries/LibWeb/DOM/Element.cpp index 6b546b97c3..24ddcfa793 100644 --- a/Libraries/LibWeb/DOM/Element.cpp +++ b/Libraries/LibWeb/DOM/Element.cpp @@ -133,7 +133,7 @@ RefPtr Element::create_layout_node(const StyleProperties* parent_sty } dbg() << "Unknown display type: _" << display << "_"; - return adopt(*new LayoutInline(*this, move(style))); + return adopt(*new LayoutBlock(this, move(style))); } void Element::parse_attribute(const FlyString& name, const String& value)