mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:37:37 +00:00
LibWeb: Add table-column-group to layout tree dump
This commit is contained in:
parent
48706742d8
commit
6c2712764d
1 changed files with 2 additions and 0 deletions
|
@ -230,6 +230,8 @@ void dump_tree(StringBuilder& builder, Layout::Node const& layout_node, bool sho
|
|||
builder.appendff(" {}table-box{}", table_color_on, color_off);
|
||||
if (box.display().is_table_row_group())
|
||||
builder.appendff(" {}table-row-group{}", table_color_on, color_off);
|
||||
if (box.display().is_table_column_group())
|
||||
builder.appendff(" {}table-column-group{}", table_color_on, color_off);
|
||||
if (box.display().is_table_header_group())
|
||||
builder.appendff(" {}table-header-group{}", table_color_on, color_off);
|
||||
if (box.display().is_table_footer_group())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue