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:
parent
cf40b95be8
commit
3476cf0fcb
4 changed files with 157 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue