mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibWeb: Layout table rows that do not belong to table row group
This commit is contained in:
parent
b8f1e1bed2
commit
c302c4081b
Notes:
sideshowbarker
2024-07-17 23:02:37 +09:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/SerenityOS/serenity/commit/c302c4081b Pull-request: https://github.com/SerenityOS/serenity/pull/16389
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…
Reference in a new issue