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

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
parent 727e69fe11
commit 0f7156ed81
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