1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:47:45 +00:00

LibWeb: Implement table rowspan

Adjust computing the table height and positioning of cells to account
for the rowspan property.

Fixes #18952.
This commit is contained in:
Andi Gallo 2023-05-18 03:55:39 +00:00 committed by Andreas Kling
parent 6cb9d755d9
commit e6221117a5
4 changed files with 178 additions and 2 deletions

View file

@ -78,6 +78,8 @@ private:
CSSPixels max_width { 0 };
};
CSSPixels compute_row_content_height(Cell const& cell) const;
Vector<Cell> m_cells;
Vector<Column> m_columns;
Vector<Row> m_rows;