mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-22 15:44:45 +00:00
LibWeb: Implement TransformationStyleValue::to_string()
This commit is contained in:
committed by
Andreas Kling
parent
5826fe094f
commit
181d1e2dd6
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user