mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 18:19:03 +00:00
LibWeb: Support display inline-table
Add support for inline-table display type with corrresponding changes in tree builder to generate inline anonymous wrapper around inline table boxes.
This commit is contained in:
parent
87b18f9304
commit
276a77f02d
Notes:
sideshowbarker
2024-07-17 04:01:41 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: 276a77f02d
Pull-request: https://github.com/SerenityOS/serenity/pull/17041
5 changed files with 15 additions and 5 deletions
|
@ -555,6 +555,8 @@ CSS::Display StyleProperties::display() const
|
|||
return CSS::Display::from_short(CSS::Display::Short::ListItem);
|
||||
case CSS::ValueID::Table:
|
||||
return CSS::Display::from_short(CSS::Display::Short::Table);
|
||||
case CSS::ValueID::InlineTable:
|
||||
return CSS::Display::from_short(CSS::Display::Short::InlineTable);
|
||||
case CSS::ValueID::TableRow:
|
||||
return CSS::Display { CSS::Display::Internal::TableRow };
|
||||
case CSS::ValueID::TableCell:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue