1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

LibWeb: Port CSS::Parser::Block to new Strings

This commit is contained in:
Sam Atkins 2023-02-14 18:49:25 +00:00 committed by Tim Flynn
parent e338ef4914
commit 86d23c63a4
4 changed files with 11 additions and 11 deletions

View file

@ -32,7 +32,7 @@ DeprecatedString Rule::to_deprecated_string() const
builder.join(' ', m_prelude);
if (m_block)
builder.append(m_block->to_deprecated_string());
builder.append(m_block->to_string().release_value_but_fixme_should_propagate_errors());
else
builder.append(';');