mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb/CSS: Add missing commas to rect() serialization
Gets us 1 WPT subtest pass.
This commit is contained in:
parent
5bcd9abc42
commit
8cdb8ca193
Notes:
github-actions[bot]
2024-11-30 10:03:24 +00:00
Author: https://github.com/AtkinsSJ
Commit: 8cdb8ca193
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2638
2 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@ ValueComparingNonnullRefPtr<RectStyleValue> RectStyleValue::create(EdgeRect rect
|
|||
|
||||
String RectStyleValue::to_string() const
|
||||
{
|
||||
return MUST(String::formatted("rect({} {} {} {})", m_rect.top_edge, m_rect.right_edge, m_rect.bottom_edge, m_rect.left_edge));
|
||||
return MUST(String::formatted("rect({}, {}, {}, {})", m_rect.top_edge, m_rect.right_edge, m_rect.bottom_edge, m_rect.left_edge));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue