1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

LibWeb: Add border conflict resolution with rowgroup

This commit is contained in:
Andi Gallo 2023-07-09 23:04:24 +00:00 committed by Andreas Kling
parent cf40b95be8
commit 3476cf0fcb
4 changed files with 157 additions and 2 deletions

View file

@ -143,8 +143,16 @@ private:
private:
void collect_conflicting_col_elements();
void collect_conflicting_row_group_elements();
struct RowGroupInfo {
Node const* row_group;
size_t start_index;
size_t row_count;
};
Vector<Node const*> m_col_elements_by_index;
Vector<Optional<RowGroupInfo>> m_row_group_elements_by_index;
TableFormattingContext const* m_context;
};