mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:48:14 +00:00
LibWeb: Use LayoutTableRowGroup for display:table-{header,footer}-group
This commit is contained in:
parent
6b3a7b1ce7
commit
244fe1089c
3 changed files with 7 additions and 1 deletions
|
@ -299,6 +299,10 @@ CSS::Display StyleProperties::display() const
|
|||
return CSS::Display::TableCell;
|
||||
if (display == "table-row-group")
|
||||
return CSS::Display::TableRowGroup;
|
||||
if (display == "table-header-group")
|
||||
return CSS::Display::TableHeaderGroup;
|
||||
if (display == "table-footer-group")
|
||||
return CSS::Display::TableFooterGroup;
|
||||
dbg() << "Unknown display type: _" << display << "_";
|
||||
return CSS::Display::Block;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue