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:
parent
727e69fe11
commit
0f7156ed81
4 changed files with 20 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue