mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
LibWeb: Fall back to LayoutInline for any unrecognized CSS display
Let's at least try to keep going and see what we can render.
This commit is contained in:
parent
d677d23da1
commit
493cbb7956
1 changed files with 2 additions and 1 deletions
|
@ -133,7 +133,8 @@ RefPtr<LayoutNode> Element::create_layout_node(const StyleProperties* parent_sty
|
|||
if (display == "inline-block")
|
||||
return adopt(*new LayoutBlock(this, move(style)));
|
||||
|
||||
ASSERT_NOT_REACHED();
|
||||
dbg() << "Unknown display type: _" << display << "_";
|
||||
return adopt(*new LayoutInline(*this, move(style)));
|
||||
}
|
||||
|
||||
void Element::parse_attribute(const FlyString&, const String&)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue