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
Notes: sideshowbarker 2024-07-17 05:13:53 +09:00
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;
}