mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
LibWeb: Add CSS::Size::to_string() and an AK::Formatter for it
This commit is contained in:
@@ -74,4 +74,24 @@ bool Size::contains_percentage() const
|
||||
}
|
||||
}
|
||||
|
||||
String Size::to_string() const
|
||||
{
|
||||
switch (m_type) {
|
||||
case Type::Auto:
|
||||
return "auto";
|
||||
case Type::Length:
|
||||
case Type::Percentage:
|
||||
return m_length_percentage.to_string();
|
||||
case Type::MinContent:
|
||||
return "min-content";
|
||||
case Type::MaxContent:
|
||||
return "max-content";
|
||||
case Type::FitContent:
|
||||
return String::formatted("fit-content({})", m_length_percentage.to_string());
|
||||
case Type::None:
|
||||
return "none";
|
||||
}
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user