mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:58:11 +00:00
LibWeb: Add table-layout CSS property
This commit is contained in:
parent
a0ea87ffc6
commit
97512d0c76
7 changed files with 28 additions and 0 deletions
|
@ -776,6 +776,8 @@ ErrorOr<RefPtr<StyleValue const>> ResolvedCSSStyleDeclaration::style_value_for_p
|
|||
return NumberStyleValue::create(layout_node.computed_values().stroke_opacity());
|
||||
case PropertyID::StrokeWidth:
|
||||
return style_value_for_length_percentage(layout_node.computed_values().stroke_width());
|
||||
case PropertyID::TableLayout:
|
||||
return IdentifierStyleValue::create(to_value_id(layout_node.computed_values().table_layout()));
|
||||
case PropertyID::TextAlign:
|
||||
return IdentifierStyleValue::create(to_value_id(layout_node.computed_values().text_align()));
|
||||
case PropertyID::TextDecorationLine: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue