ladybird/Userland/Libraries/LibWeb/CSS/StyleValues/PlaceContentStyleValue.cpp
Aliaksandr Kalenik c72a2f9e46 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.
2023-08-06 08:26:36 +02:00

20 lines
555 B
C++

/*
* Copyright (c) 2023, Hunter Salyer <thefalsehonesty@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "PlaceContentStyleValue.h"
namespace Web::CSS {
ErrorOr<String> PlaceContentStyleValue::to_string() const
{
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);
}
}