mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +00:00
LibWeb: Layout table rows that do not belong to table row group
This commit is contained in:
parent
b8f1e1bed2
commit
c302c4081b
1 changed files with 5 additions and 0 deletions
|
@ -93,6 +93,11 @@ void TableFormattingContext::calculate_row_column_grid(Box const& box)
|
|||
});
|
||||
});
|
||||
|
||||
box.template for_each_child_of_type<TableRowBox>([&](auto& row) {
|
||||
process_row(row);
|
||||
return IterationDecision::Continue;
|
||||
});
|
||||
|
||||
m_columns.resize(x_width);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue