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

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

This commit is contained in:
Sam Atkins 2023-02-15 11:28:23 +00:00 committed by Tim Flynn
parent a168cda4a7
commit bee32b6cd2
4 changed files with 15 additions and 14 deletions

View file

@ -33,7 +33,7 @@ DeprecatedString DeclarationOrAtRule::to_deprecated_string() const
builder.append(m_at->to_deprecated_string());
break;
case DeclarationType::Declaration:
builder.append(m_declaration->to_deprecated_string());
builder.append(m_declaration->to_string().release_value_but_fixme_should_propagate_errors());
break;
}