mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb/CSS: Remove unused serialization helpers
This commit is contained in:
parent
879af72850
commit
ded6695c52
Notes:
github-actions[bot]
2024-12-04 11:31:45 +00:00
Author: https://github.com/LucasChollet
Commit: ded6695c52
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2540
Reviewed-by: https://github.com/AtkinsSJ ✅
2 changed files with 0 additions and 16 deletions
|
@ -147,20 +147,6 @@ void serialize_a_srgb_value(StringBuilder& builder, Color color)
|
|||
builder.appendff("rgba({}, {}, {}, {:.4})"sv, color.red(), color.green(), color.blue(), (float)(color.alpha()) / 255.0f);
|
||||
}
|
||||
|
||||
String escape_a_character(u32 character)
|
||||
{
|
||||
StringBuilder builder;
|
||||
escape_a_character(builder, character);
|
||||
return MUST(builder.to_string());
|
||||
}
|
||||
|
||||
String escape_a_character_as_code_point(u32 character)
|
||||
{
|
||||
StringBuilder builder;
|
||||
escape_a_character_as_code_point(builder, character);
|
||||
return MUST(builder.to_string());
|
||||
}
|
||||
|
||||
String serialize_an_identifier(StringView ident)
|
||||
{
|
||||
StringBuilder builder;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue