mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 09:22:30 +00:00
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:
parent
f8536fc48a
commit
93a2c9946f
Notes:
github-actions[bot]
2025-03-25 07:55:01 +00:00
Author: https://github.com/AtkinsSJ
Commit: 93a2c9946f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4073
4 changed files with 4 additions and 4 deletions
|
@ -715,7 +715,7 @@ void dump_font_face_rule(StringBuilder& builder, CSS::CSSFontFaceRule const& rul
|
|||
if (source.local_or_url.has<URL::URL>())
|
||||
builder.appendff("url={}, format={}\n", source.local_or_url.get<URL::URL>(), source.format.value_or("???"_string));
|
||||
else
|
||||
builder.appendff("local={}\n", source.local_or_url.get<AK::String>());
|
||||
builder.appendff("local={}\n", source.local_or_url.get<FlyString>());
|
||||
}
|
||||
|
||||
indent(builder, indent_levels + 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue