mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-07 00:30:59 +00:00
17 lines
374 B
C++
17 lines
374 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "PlaceItemsStyleValue.h"
|
||
|
|
|
||
|
|
namespace Web::CSS {
|
||
|
|
|
||
|
|
ErrorOr<String> PlaceItemsStyleValue::to_string() const
|
||
|
|
{
|
||
|
|
return String::formatted("{} {}", TRY(m_properties.align_items->to_string()), TRY(m_properties.justify_items->to_string()));
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|