mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibWeb/CSS: Add missing commas to rect() serialization
Gets us 1 WPT subtest pass.
This commit is contained in:
committed by
Andreas Kling
parent
5bcd9abc42
commit
8cdb8ca193
@@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ Rerun
|
||||
|
||||
Found 687 tests
|
||||
|
||||
462 Pass
|
||||
225 Fail
|
||||
463 Pass
|
||||
224 Fail
|
||||
Details
|
||||
Result Test Name MessagePass background-attachment: scroll
|
||||
Pass background-attachment: fixed
|
||||
@@ -315,7 +315,7 @@ Pass clear: left
|
||||
Pass clear: right
|
||||
Pass clear: both
|
||||
Pass clear: inherit
|
||||
Fail clip: rect(1em, auto, 0.5px, 2000em)
|
||||
Pass clip: rect(1em, auto, 0.5px, 2000em)
|
||||
Pass clip: auto
|
||||
Pass clip: inherit
|
||||
Pass color: black
|
||||
|
||||
Reference in New Issue
Block a user