mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +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
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