mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 00:23:20 +00:00
32 lines
717 B
C++
32 lines
717 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
||
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/CSS/Parser/StyleBlockRule.h>
|
||
|
|
||
|
namespace Web::CSS {
|
||
|
|
||
|
StyleBlockRule::StyleBlockRule() = default;
|
||
|
StyleBlockRule::StyleBlockRule(Token token, Vector<Parser::ComponentValue>&& values)
|
||
|
: m_token(move(token))
|
||
|
, m_values(move(values))
|
||
|
{
|
||
|
}
|
||
|
StyleBlockRule::~StyleBlockRule() = default;
|
||
|
|
||
|
String StyleBlockRule::to_string() const
|
||
|
{
|
||
|
StringBuilder builder;
|
||
|
|
||
|
builder.append(m_token.bracket_string());
|
||
|
builder.join(" ", m_values);
|
||
|
builder.append(m_token.bracket_mirror_string());
|
||
|
|
||
|
return builder.to_string();
|
||
|
}
|
||
|
|
||
|
}
|