1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

LibWeb: Add LayoutTableRowGroup to implement display: table-row-group

This commit is contained in:
Andreas Kling 2020-06-09 21:08:15 +02:00
parent b4d4d6b32a
commit 28dcef4757
6 changed files with 119 additions and 4 deletions

View file

@ -153,6 +153,7 @@ public:
virtual bool is_table() const { return false; }
virtual bool is_table_row() const { return false; }
virtual bool is_table_cell() const { return false; }
virtual bool is_table_row_group() const { return false; }
bool has_style() const { return m_has_style; }
bool is_inline() const { return m_inline; }