1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:58:12 +00:00

LibWeb: Make CSS::QualifiedStyleRule's prelude StyleComponentValueRule

This commit is contained in:
Sam Atkins 2021-06-29 17:03:25 +01:00 committed by Andreas Kling
parent 54e1180f61
commit d6b4022b58
4 changed files with 18 additions and 21 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
* Copyright (c) 2021, Sam Atkins <atkinssj@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -104,7 +105,7 @@ String QualifiedStyleRule::to_string() const
{
StringBuilder builder;
append_raw(builder, " ", m_prelude);
append_with_to_string(builder, " ", m_prelude);
builder.append(m_block.to_string());
return builder.to_string();