mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 02:09:24 +00:00
LibWeb: Make the CSS serialization functions actually output things :^)
Pro tip: If your function takes a StringBuilder by value, it doesn't actually append anything to the caller's StringBuilder. On the plus side, I probably won't make this mistake for a while? I hope?
This commit is contained in:
parent
48687c3fbb
commit
0588db5c30
Notes:
sideshowbarker
2024-07-18 05:37:06 +09:00
Author: https://github.com/AtkinsSJ
Commit: 0588db5c30
Pull-request: https://github.com/SerenityOS/serenity/pull/10518
2 changed files with 10 additions and 10 deletions
|
@ -12,11 +12,11 @@
|
|||
|
||||
namespace Web::CSS {
|
||||
|
||||
void escape_a_character(StringBuilder, u32 character);
|
||||
void escape_a_character_as_code_point(StringBuilder, u32 character);
|
||||
void serialize_an_identifier(StringBuilder, StringView const& ident);
|
||||
void serialize_a_string(StringBuilder, StringView const& string);
|
||||
void serialize_a_url(StringBuilder, StringView const& url);
|
||||
void escape_a_character(StringBuilder&, u32 character);
|
||||
void escape_a_character_as_code_point(StringBuilder&, u32 character);
|
||||
void serialize_an_identifier(StringBuilder&, StringView const& ident);
|
||||
void serialize_a_string(StringBuilder&, StringView const& string);
|
||||
void serialize_a_url(StringBuilder&, StringView const& url);
|
||||
|
||||
String escape_a_character(u32 character);
|
||||
String escape_a_character_as_code_point(u32 character);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue