mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-03 12:52:31 +02:00
LibWeb: Add support for justify-items property in CSS parser
This commit is contained in:
committed by
Andreas Kling
parent
e86d7cab06
commit
f060f89220
@@ -691,6 +691,8 @@ ErrorOr<RefPtr<StyleValue const>> ResolvedCSSStyleDeclaration::style_value_for_p
|
||||
return IdentifierStyleValue::create(to_value_id(layout_node.computed_values().image_rendering()));
|
||||
case PropertyID::JustifyContent:
|
||||
return IdentifierStyleValue::create(to_value_id(layout_node.computed_values().justify_content()));
|
||||
case PropertyID::JustifyItems:
|
||||
return TRY(IdentifierStyleValue::create(to_value_id(layout_node.computed_values().justify_items())));
|
||||
case PropertyID::JustifySelf:
|
||||
return TRY(IdentifierStyleValue::create(to_value_id(layout_node.computed_values().justify_self())));
|
||||
case PropertyID::Left:
|
||||
|
||||
Reference in New Issue
Block a user