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:
parent
6cb9d755d9
commit
e6221117a5
4 changed files with 178 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue