[wpt-sync] Sync PR 20327 - [css-grid] Exclude implicit grid tracks from the resolved value
Categories
(Core :: Layout: Grid, task, P4)
Tracking
()
| Tracking | Status | |
|---|---|---|
| firefox74 | --- | fixed |
People
(Reporter: wpt-sync, Unassigned)
References
()
Details
(Whiteboard: [wptsync downstream])
Sync web-platform-tests PR 20327 into mozilla-central (this bug is closed when the sync is complete).
PR: https://github.com/web-platform-tests/wpt/pull/20327
Details from upstream follow.
Oriol Brufau <obrufau@igalia.com> wrote:
[css-grid] Exclude implicit grid tracks from the resolved value
https://github.com/w3c/csswg-drafts/issues/4475 resolved to try to stop
including implicit tracks in the resolved value of grid-template-columns
and grid-template-rows.This implies that the resolved values will have less information now,
which affects lots of tests. I have edited them depending on the case:
- When the size of the track was irrelevant (e.g. just checking whether
some value was syntactically valid), I have just updated the expected
value.- When the size of the track was relevant, but it wasn't important for
the tracks to be implicit, I have made them explicit in order to get
the same value.- When the test was about the sizes of implicit tracks, I have added
new checks for the size and position of the grid items.Intent to Implement and Ship:
https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/EKvyx2lZJXISpec: https://drafts.csswg.org/css-grid/#resolved-track-list
Bug: 1024927
Change-Id: I4677c184be263eaab08d4aee95bb868306d58228
Reviewed-on: https://chromium-review.googlesource.com/1897931
WPT-Export-Revision: b10a168d0d833efd773aa69faaaa6bdcebe8b7b3
| Assignee | ||
Updated•6 years ago
|
| Assignee | ||
Comment 1•6 years ago
|
||
| Assignee | ||
Comment 2•6 years ago
|
||
CI Results
Ran 0 Firefox configurations based on mozilla-central, and Firefox, Chrome, and Safari on GitHub CI
Total 13 tests and 44 subtests
Status Summary
Firefox
OK : 13
PASS: 646
FAIL: 156
Chrome
OK : 13
PASS: 637
FAIL: 165
Safari
OK : 13
PASS: 646
FAIL: 156
Links
Details
New Tests That Don't Pass
/css/css-grid/parsing/grid-template-columns-computed-withcontent.html
Property grid-template-columns value 'none': FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-grid-template-columns-rows-001.html
'grid' with: grid-template-columns: minmax(100px, 200px, 300px); and grid-template-rows: minmax(100px, 200px, 300px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px, 200px; and grid-template-rows: 300px, 400px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: none; and grid-template-rows: none;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: foo; and grid-template-rows: bar;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto none; and grid-template-rows: none auto;: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-named-grid-lines-001.html
'grid' with: grid-template-columns: [a auto [b]; and grid-template-rows: [a auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [#a] auto [$b]; and grid-template-rows: [#a] auto [$b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [inherit] auto; and grid-template-rows: [inherit] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 'a' auto 'b'; and grid-template-rows: 'a' auto 'b';: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a]; and grid-template-rows: [a];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a [b]] auto [c]; and grid-template-rows: [a [b]] auto [c];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] auto [[b]]; and grid-template-rows: [a] auto [[b]];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b] auto [c d] [e]; and grid-template-rows: [a] [b] auto [c d] [e];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [initial] auto; and grid-template-rows: [initial] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 50%] auto [b]; and grid-template-rows: [a 50%] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a, b] auto [a, b]; and grid-template-rows: [a, b] auto [a, b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] none [b]; and grid-template-rows: [a] none [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (a) auto (b); and grid-template-rows: (a) auto (b);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 100px] auto [b]; and grid-template-rows: [a 100px] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a b]; and grid-template-rows: [a b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b]; and grid-template-rows: [a] [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: a auto b; and grid-template-rows: a auto b;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a.] auto [b*]; and grid-template-rows: [a.] auto [b*];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [5] auto [10]; and grid-template-rows: [5] auto [10];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [default] auto; and grid-template-rows: [default] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: "a" auto "b"; and grid-template-rows: "a" auto "b";: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-template-columns-rows-resolved-values-001.html
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: auto auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto auto; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/parsing/grid-template-rows-computed-withcontent.html
Property grid-template-rows value 'none': FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-named-grid-lines-001.html
'grid' with: grid-template-columns: [a auto [b]; and grid-template-rows: [a auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [#a] auto [$b]; and grid-template-rows: [#a] auto [$b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [inherit] auto; and grid-template-rows: [inherit] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 'a' auto 'b'; and grid-template-rows: 'a' auto 'b';: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a]; and grid-template-rows: [a];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a [b]] auto [c]; and grid-template-rows: [a [b]] auto [c];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] auto [[b]]; and grid-template-rows: [a] auto [[b]];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b] auto [c d] [e]; and grid-template-rows: [a] [b] auto [c d] [e];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [initial] auto; and grid-template-rows: [initial] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 50%] auto [b]; and grid-template-rows: [a 50%] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a, b] auto [a, b]; and grid-template-rows: [a, b] auto [a, b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] none [b]; and grid-template-rows: [a] none [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (a) auto (b); and grid-template-rows: (a) auto (b);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 100px] auto [b]; and grid-template-rows: [a 100px] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a b]; and grid-template-rows: [a b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b]; and grid-template-rows: [a] [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: a auto b; and grid-template-rows: a auto b;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a.] auto [b*]; and grid-template-rows: [a.] auto [b*];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [5] auto [10]; and grid-template-rows: [5] auto [10];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [default] auto; and grid-template-rows: [default] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: "a" auto "b"; and grid-template-rows: "a" auto "b";: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-flexible-lengths-001.html
'grid' with: grid-template-columns: -2fr; and grid-template-rows: -2fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1free-space; and grid-template-rows: 1free-space;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (1fr) auto; and grid-template-rows: (1fr) auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 0,5fr; and grid-template-rows: 0,5fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: fr; and grid-template-rows: fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: calc(1fr + 100px); and grid-template-rows: calc(1fr + 100px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1 fr; and grid-template-rows: 1 fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: minmax(1fr, 1000px); and grid-template-rows: minmax(1fr, 700px);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-repeat-001.html
'grid' with: grid-template-columns: 100px (repeat 2, auto); and grid-template-rows: (repeat 2, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2, 50px repeat(2, 100px)); and grid-template-rows: repeat(2, 50px repeat(2, 100px));: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat 2, auto; and grid-template-rows: repeat 2, auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(-1, auto); and grid-template-rows: repeat(-1, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px repeat(2, [a]); and grid-template-rows: 100px repeat(2, [a]);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(auto, 2); and grid-template-rows: repeat(auto, 2);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2 auto); and grid-template-rows: repeat(2 auto);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-flexible-lengths-001.html
'grid' with: grid-template-columns: -2fr; and grid-template-rows: -2fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1free-space; and grid-template-rows: 1free-space;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (1fr) auto; and grid-template-rows: (1fr) auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 0,5fr; and grid-template-rows: 0,5fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: fr; and grid-template-rows: fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: calc(1fr + 100px); and grid-template-rows: calc(1fr + 100px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1 fr; and grid-template-rows: 1 fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: minmax(1fr, 1000px); and grid-template-rows: minmax(1fr, 700px);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-repeat-001.html
'grid' with: grid-template-columns: 100px (repeat 2, auto); and grid-template-rows: (repeat 2, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2, 50px repeat(2, 100px)); and grid-template-rows: repeat(2, 50px repeat(2, 100px));: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat 2, auto; and grid-template-rows: repeat 2, auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(-1, auto); and grid-template-rows: repeat(-1, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px repeat(2, [a]); and grid-template-rows: 100px repeat(2, [a]);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(auto, 2); and grid-template-rows: repeat(auto, 2);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2 auto); and grid-template-rows: repeat(2 auto);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-template-columns-rows-resolved-values-001.html
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: auto auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto auto; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-grid-template-columns-rows-001.html
'grid' with: grid-template-columns: minmax(100px, 200px, 300px); and grid-template-rows: minmax(100px, 200px, 300px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px, 200px; and grid-template-rows: 300px, 400px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: none; and grid-template-rows: none;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: foo; and grid-template-rows: bar;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto none; and grid-template-rows: none auto;: FAIL (Chrome: FAIL, Safari: FAIL)
| Assignee | ||
Comment 3•6 years ago
|
||
CI Results
Ran 13 Firefox configurations based on mozilla-central, and Firefox, Chrome, and Safari on GitHub CI
Total 52 tests
Status Summary
Firefox
OK : 13
PASS: 646[['GitHub']] 685[[u'Gecko-android-em-7.0-x86_64-debug-geckoview', u'Gecko-android-em-7.0-x86_64-opt-geckoview', u'Gecko-linux64-asan-opt', u'Gecko-linux64-debug', u'Gecko-linux64-opt', u'Gecko-linux64-qr-debug', u'Gecko-linux64-qr-opt', u'Gecko-windows10-64-debug', u'Gecko-windows10-64-opt', u'Gecko-windows10-64-qr-debug', u'Gecko-windows10-64-qr-opt', u'Gecko-windows7-32-debug', u'Gecko-windows7-32-opt']]
FAIL: 156
Chrome
OK : 13
PASS: 637
FAIL: 165
Safari
OK : 13
PASS: 646
FAIL: 156
Links
Gecko CI (Treeherder)
GitHub PR Head
GitHub PR Base
Details
New Tests That Don't Pass
/css/css-grid/grid-definition/grid-support-grid-template-columns-rows-001.html
'grid' with: grid-template-columns: minmax(100px, 200px, 300px); and grid-template-rows: minmax(100px, 200px, 300px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px, 200px; and grid-template-rows: 300px, 400px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: none; and grid-template-rows: none;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: foo; and grid-template-rows: bar;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto none; and grid-template-rows: none auto;: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-template-columns-rows-resolved-values-001.html
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: auto auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto auto; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/parsing/grid-template-rows-computed-withcontent.html
Property grid-template-rows value 'none': FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-repeat-001.html
'grid' with: grid-template-columns: 100px (repeat 2, auto); and grid-template-rows: (repeat 2, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2, 50px repeat(2, 100px)); and grid-template-rows: repeat(2, 50px repeat(2, 100px));: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat 2, auto; and grid-template-rows: repeat 2, auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(-1, auto); and grid-template-rows: repeat(-1, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px repeat(2, [a]); and grid-template-rows: 100px repeat(2, [a]);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(auto, 2); and grid-template-rows: repeat(auto, 2);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2 auto); and grid-template-rows: repeat(2 auto);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-repeat-001.html
'grid' with: grid-template-columns: 100px (repeat 2, auto); and grid-template-rows: (repeat 2, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2, 50px repeat(2, 100px)); and grid-template-rows: repeat(2, 50px repeat(2, 100px));: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat 2, auto; and grid-template-rows: repeat 2, auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(-1, auto); and grid-template-rows: repeat(-1, auto);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px repeat(2, [a]); and grid-template-rows: 100px repeat(2, [a]);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(auto, 2); and grid-template-rows: repeat(auto, 2);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: repeat(2 auto); and grid-template-rows: repeat(2 auto);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-named-grid-lines-001.html
'grid' with: grid-template-columns: [a auto [b]; and grid-template-rows: [a auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [#a] auto [$b]; and grid-template-rows: [#a] auto [$b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [inherit] auto; and grid-template-rows: [inherit] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 'a' auto 'b'; and grid-template-rows: 'a' auto 'b';: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a]; and grid-template-rows: [a];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a [b]] auto [c]; and grid-template-rows: [a [b]] auto [c];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] auto [[b]]; and grid-template-rows: [a] auto [[b]];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b] auto [c d] [e]; and grid-template-rows: [a] [b] auto [c d] [e];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [initial] auto; and grid-template-rows: [initial] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 50%] auto [b]; and grid-template-rows: [a 50%] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a, b] auto [a, b]; and grid-template-rows: [a, b] auto [a, b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] none [b]; and grid-template-rows: [a] none [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (a) auto (b); and grid-template-rows: (a) auto (b);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 100px] auto [b]; and grid-template-rows: [a 100px] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a b]; and grid-template-rows: [a b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b]; and grid-template-rows: [a] [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: a auto b; and grid-template-rows: a auto b;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a.] auto [b*]; and grid-template-rows: [a.] auto [b*];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [5] auto [10]; and grid-template-rows: [5] auto [10];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [default] auto; and grid-template-rows: [default] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: "a" auto "b"; and grid-template-rows: "a" auto "b";: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-flexible-lengths-001.html
'grid' with: grid-template-columns: -2fr; and grid-template-rows: -2fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1free-space; and grid-template-rows: 1free-space;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (1fr) auto; and grid-template-rows: (1fr) auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 0,5fr; and grid-template-rows: 0,5fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: fr; and grid-template-rows: fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: calc(1fr + 100px); and grid-template-rows: calc(1fr + 100px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1 fr; and grid-template-rows: 1 fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: minmax(1fr, 1000px); and grid-template-rows: minmax(1fr, 700px);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-flexible-lengths-001.html
'grid' with: grid-template-columns: -2fr; and grid-template-rows: -2fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1free-space; and grid-template-rows: 1free-space;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (1fr) auto; and grid-template-rows: (1fr) auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 0,5fr; and grid-template-rows: 0,5fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: fr; and grid-template-rows: fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: calc(1fr + 100px); and grid-template-rows: calc(1fr + 100px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 1 fr; and grid-template-rows: 1 fr;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: minmax(1fr, 1000px); and grid-template-rows: minmax(1fr, 700px);: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-template-columns-rows-resolved-values-001.html
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: auto auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto auto; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px 50px; and grid-template-rows: 60px 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: ; and grid-template-rows: 50px 30px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 60px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px 70px; and grid-template-rows: ;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumn' with: grid-template-columns: 100px 60px; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridAutoFlowColumnItemsPositions' with: grid-template-columns: 60px; and grid-template-rows: 60px 70px;: FAIL (Chrome: FAIL, Safari: FAIL)
'gridItemsPositions' with: grid-template-columns: ; and grid-template-rows: 60px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: ; and grid-template-rows: 50px;: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-support-named-grid-lines-001.html
'grid' with: grid-template-columns: [a auto [b]; and grid-template-rows: [a auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [#a] auto [$b]; and grid-template-rows: [#a] auto [$b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [inherit] auto; and grid-template-rows: [inherit] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 'a' auto 'b'; and grid-template-rows: 'a' auto 'b';: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a]; and grid-template-rows: [a];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a [b]] auto [c]; and grid-template-rows: [a [b]] auto [c];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] auto [[b]]; and grid-template-rows: [a] auto [[b]];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b] auto [c d] [e]; and grid-template-rows: [a] [b] auto [c d] [e];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [initial] auto; and grid-template-rows: [initial] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 50%] auto [b]; and grid-template-rows: [a 50%] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a, b] auto [a, b]; and grid-template-rows: [a, b] auto [a, b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] none [b]; and grid-template-rows: [a] none [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: (a) auto (b); and grid-template-rows: (a) auto (b);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a 100px] auto [b]; and grid-template-rows: [a 100px] auto [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a b]; and grid-template-rows: [a b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a] [b]; and grid-template-rows: [a] [b];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: a auto b; and grid-template-rows: a auto b;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [a.] auto [b*]; and grid-template-rows: [a.] auto [b*];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [5] auto [10]; and grid-template-rows: [5] auto [10];: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: [default] auto; and grid-template-rows: [default] auto;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: "a" auto "b"; and grid-template-rows: "a" auto "b";: FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/parsing/grid-template-columns-computed-withcontent.html
Property grid-template-columns value 'none': FAIL (Chrome: FAIL, Safari: FAIL)
/css/css-grid/grid-definition/grid-inline-support-grid-template-columns-rows-001.html
'grid' with: grid-template-columns: minmax(100px, 200px, 300px); and grid-template-rows: minmax(100px, 200px, 300px);: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: 100px, 200px; and grid-template-rows: 300px, 400px;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: none; and grid-template-rows: none;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: foo; and grid-template-rows: bar;: FAIL (Chrome: FAIL, Safari: FAIL)
'grid' with: grid-template-columns: auto none; and grid-template-rows: none auto;: FAIL (Chrome: FAIL, Safari: FAIL)
Comment 5•6 years ago
|
||
| bugherder | ||
https://hg.mozilla.org/mozilla-central/rev/18ce38ba83f9
https://hg.mozilla.org/mozilla-central/rev/9c3d04e35a61
Description
•