mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00
LibWeb/CSS: Serialize short version if possible for "place-" properties
Output short version when both parts of place-content, place-items, place-self are the same.
This commit is contained in:
parent
da2cd73bcf
commit
c72a2f9e46
3 changed files with 15 additions and 3 deletions
|
@ -10,7 +10,11 @@ namespace Web::CSS {
|
|||
|
||||
ErrorOr<String> PlaceContentStyleValue::to_string() const
|
||||
{
|
||||
return String::formatted("{} {}", TRY(m_properties.align_content->to_string()), TRY(m_properties.justify_content->to_string()));
|
||||
auto align_content = TRY(m_properties.align_content->to_string());
|
||||
auto justify_content = TRY(m_properties.justify_content->to_string());
|
||||
if (align_content == justify_content)
|
||||
return String::formatted("{}", align_content);
|
||||
return String::formatted("{} {}", align_content, justify_content);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue