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

LibWeb: Port CSS::UnicodeRange to new Strings

This commit is contained in:
Sam Atkins 2023-02-14 19:55:40 +00:00 committed by Tim Flynn
parent 316092d185
commit fc3540c4b1
3 changed files with 8 additions and 8 deletions

View file

@ -606,7 +606,7 @@ void dump_font_face_rule(StringBuilder& builder, CSS::CSSFontFaceRule const& rul
builder.append("unicode-ranges:\n"sv);
for (auto const& unicode_range : font_face.unicode_ranges()) {
indent(builder, indent_levels + 2);
builder.appendff("{}\n", unicode_range.to_deprecated_string());
builder.appendff("{}\n", unicode_range.to_string().release_value_but_fixme_should_propagate_errors());
}
}