Open
Bug 1841663
Opened 2 years ago
Updated 2 years ago
WPT failures in /css/css-grid/grid-layout-properties.html
Categories
(Core :: Layout: Grid, defect, P3)
Core
Layout: Grid
Tracking
()
NEW
People
(Reporter: twisniewski, Unassigned)
References
(Blocks 2 open bugs, )
Details
(Whiteboard: [wpt])
Attachments
(2 files)
Updated•2 years ago
|
Severity: -- → S3
Priority: -- → P3
Comment 1•2 years ago
|
||
wpt.live:
http://wpt.live/css/css-grid/grid-layout-properties.html
There are only 4 failures here as of today at least.
- The first case is:
grid-template-rows.<track-size>.<track-breadth>.<percentage>
assert_equals: <track-size>.<track-breadth>.<percentage> expected "150px 50px 50px" but got "50px 50px 50px"
...and that seems to be a case where we need to re-resolve percent values in grid-template-rows after we've done layout. I think that's tracked in another bug somewhere.
- The other three are cases where the test is checking the computed style of
grid-templateand expecting to get the resolved value (i.e. the actual track list that we use, given the content) but instead we're returningnone. We should pretty-easily be able to return the resolved value here, because we correctly report it for thegrid-template-rowsandgrid-template-columnslonghands...
Comment 2•2 years ago
|
||
Comment 3•2 years ago
|
||
| Reporter | ||
Updated•2 years ago
|
Blocks: interop-2024-layout
You need to log in
before you can comment on or make changes to this bug.
Description
•