LibWeb: Use FlyString for local font sources

The next commit will make it so we always have a FlyString, so this lets
us keep using it instead of turning it into a String.
This commit is contained in:
Sam Atkins 2025-03-24 17:04:12 +00:00 committed by Andreas Kling
parent f8536fc48a
commit 93a2c9946f
Notes: github-actions[bot] 2025-03-25 07:55:01 +00:00
4 changed files with 4 additions and 4 deletions

View file

@ -672,7 +672,7 @@ Vector<ParsedFontFace::Source> Parser::parse_font_face_src(TokenStream<T>& compo
if (first.function().value.is_empty()) {
continue;
}
supported_sources.empend(first.function().value.first().to_string(), Optional<FlyString> {});
supported_sources.empend(FlyString { first.function().value.first().to_string() }, Optional<FlyString> {});
continue;
}