1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibWeb: Implement StyleComponentValueRule::to_string()

This commit is contained in:
Sam Atkins 2021-11-24 13:00:25 +00:00 committed by Andreas Kling
parent cf07da082e
commit 933a271a78
2 changed files with 20 additions and 0 deletions

View file

@ -52,6 +52,7 @@ public:
Token const& token() const { return m_token; }
operator Token() const { return m_token; }
String to_string() const;
String to_debug_string() const;
private: