mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
LibWeb/CSS: Add missing commas to rect() serialization
Gets us 1 WPT subtest pass.
This commit is contained in:
parent
5bcd9abc42
commit
8cdb8ca193
|
|
@ -18,7 +18,7 @@ ValueComparingNonnullRefPtr<RectStyleValue> RectStyleValue::create(EdgeRect rect
|
||||||
|
|
||||||
String RectStyleValue::to_string() const
|
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
|
Found 687 tests
|
||||||
|
|
||||||
462 Pass
|
463 Pass
|
||||||
225 Fail
|
224 Fail
|
||||||
Details
|
Details
|
||||||
Result Test Name MessagePass background-attachment: scroll
|
Result Test Name MessagePass background-attachment: scroll
|
||||||
Pass background-attachment: fixed
|
Pass background-attachment: fixed
|
||||||
|
|
@ -315,7 +315,7 @@ Pass clear: left
|
||||||
Pass clear: right
|
Pass clear: right
|
||||||
Pass clear: both
|
Pass clear: both
|
||||||
Pass clear: inherit
|
Pass clear: inherit
|
||||||
Fail clip: rect(1em, auto, 0.5px, 2000em)
|
Pass clip: rect(1em, auto, 0.5px, 2000em)
|
||||||
Pass clip: auto
|
Pass clip: auto
|
||||||
Pass clip: inherit
|
Pass clip: inherit
|
||||||
Pass color: black
|
Pass color: black
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user