mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
LibWeb: Parse CSS text-decoration-thickness
property
This commit is contained in:
parent
727e69fe11
commit
0f7156ed81
Notes:
sideshowbarker
2024-07-17 17:52:22 +09:00
Author: https://github.com/krkk
Commit: 0f7156ed81
Pull-request: https://github.com/SerenityOS/serenity/pull/12915
Reviewed-by: https://github.com/AtkinsSJ ✅
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