1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:57:35 +00:00

LibWeb: Make StyleValue::to_string() infallible

This commit is contained in:
Sam Atkins 2023-08-22 14:08:15 +01:00 committed by Sam Atkins
parent ccfe197e5a
commit 7fe97ee6c5
112 changed files with 425 additions and 430 deletions

View file

@ -12,12 +12,12 @@
namespace Web::CSS {
ErrorOr<String> UnresolvedStyleValue::to_string() const
String UnresolvedStyleValue::to_string() const
{
StringBuilder builder;
for (auto& value : m_values)
TRY(builder.try_append(value.to_string()));
return builder.to_string();
builder.append(value.to_string());
return MUST(builder.to_string());
}
bool UnresolvedStyleValue::equals(StyleValue const& other) const
@ -25,7 +25,7 @@ bool UnresolvedStyleValue::equals(StyleValue const& other) const
if (type() != other.type())
return false;
// This is a case where comparing the strings actually makes sense.
return to_string().release_value_but_fixme_should_propagate_errors() == other.to_string().release_value_but_fixme_should_propagate_errors();
return to_string() == other.to_string();
}
}