LibWeb: Parse CSS text-decoration-thickness property

This commit is contained in:
Karol Kosek 2022-03-06 02:09:00 +01:00 committed by Andreas Kling
commit 0f7156ed81
Notes: sideshowbarker 2024-07-17 17:52:22 +09:00
4 changed files with 20 additions and 5 deletions

View file

@ -1319,7 +1319,7 @@ String PositionStyleValue::to_string() const
String TextDecorationStyleValue::to_string() const
{
return String::formatted("{} {} {}", m_line->to_string(), m_style->to_string(), m_color->to_string());
return String::formatted("{} {} {} {}", m_line->to_string(), m_thickness->to_string(), m_style->to_string(), m_color->to_string());
}
String TransformationStyleValue::to_string() const