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

LibWeb: Create Layout::Box for display: inline-grid

This makes us actually run a GridFormattingContext instead of rendering
inline-grid elements as nothing. :^)
This commit is contained in:
Andreas Kling 2023-07-11 18:43:33 +02:00
parent 5615ea5386
commit 9174ffd7e6
3 changed files with 17 additions and 0 deletions

View file

@ -338,6 +338,8 @@ JS::GCPtr<Layout::Node> Element::create_layout_node_for_display_type(DOM::Docume
return document.heap().allocate_without_realm<Layout::InlineNode>(document, element, move(style));
if (display.is_flex_inside())
return document.heap().allocate_without_realm<Layout::Box>(document, element, move(style));
if (display.is_grid_inside())
return document.heap().allocate_without_realm<Layout::Box>(document, element, move(style));
dbgln_if(LIBWEB_CSS_DEBUG, "FIXME: Support display: {}", MUST(display.to_string()));
return document.heap().allocate_without_realm<Layout::InlineNode>(document, element, move(style));
}