1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:38:12 +00:00

LibWeb: Don't break for atomic inline elements in white-space: nowrap

This commit is contained in:
Andreas Kling 2023-09-16 11:18:05 +02:00
parent 17087ac4a2
commit 39f16ecd41
3 changed files with 29 additions and 1 deletions

View file

@ -272,7 +272,9 @@ void InlineFormattingContext::generate_line_boxes(LayoutMode layout_mode)
case InlineLevelIterator::Item::Type::Element: {
auto& box = verify_cast<Layout::Box>(*item.node);
compute_inset(box);
line_builder.break_if_needed(item.border_box_width());
if (containing_block().computed_values().white_space() != CSS::WhiteSpace::Nowrap) {
line_builder.break_if_needed(item.border_box_width());
}
line_builder.append_box(box, item.border_start + item.padding_start, item.padding_end + item.border_end, item.margin_start, item.margin_end);
break;
}