mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
LibWeb: Implement TransformationStyleValue::to_string()
This commit is contained in:
parent
5826fe094f
commit
181d1e2dd6
Notes:
sideshowbarker
2024-07-17 19:52:15 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/181d1e2dd6a Pull-request: https://github.com/SerenityOS/serenity/pull/12262
@ -582,7 +582,21 @@ String TextDecorationStyleValue::to_string() const
|
||||
|
||||
String TransformationStyleValue::to_string() const
|
||||
{
|
||||
return "TransformationStyleValue";
|
||||
StringBuilder builder;
|
||||
|
||||
switch (m_transform_function) {
|
||||
case TransformFunction::TranslateY:
|
||||
builder.append("translateY");
|
||||
break;
|
||||
default:
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
builder.append('(');
|
||||
builder.join(", ", m_values);
|
||||
builder.append(')');
|
||||
|
||||
return builder.to_string();
|
||||
}
|
||||
|
||||
String UnresolvedStyleValue::to_string() const
|
||||
|
Loading…
Reference in New Issue
Block a user