| OLD | NEW |
| 1 This test checks that, getting the computed style of a grid with only absolutell
y positioned children and no tracks in some axis, does not CRASH on DEBUG builds
. | 1 This test checks that, getting the computed style of a grid with only absolutell
y positioned children and no tracks in some axis, does not CRASH on DEBUG builds
. |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 PASS successfullyParsed is true | 6 PASS successfullyParsed is true |
| 7 | 7 |
| 8 TEST COMPLETE | 8 TEST COMPLETE |
| 9 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-columns'
) is "none" | 9 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-columns'
) is "none" |
| 10 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-rows') i
s "20px" | 10 PASS window.getComputedStyle(grid1, '').getPropertyValue('grid-template-rows') i
s "20px" |
| 11 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-columns'
) is "10px" | 11 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-columns'
) is "10px" |
| 12 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-rows') i
s "none" | 12 PASS window.getComputedStyle(grid2, '').getPropertyValue('grid-template-rows') i
s "none" |
| 13 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-columns'
) is "none" | 13 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-columns'
) is "none" |
| 14 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-rows') i
s "none" | 14 PASS window.getComputedStyle(grid3, '').getPropertyValue('grid-template-rows') i
s "none" |
| 15 PASS window.getComputedStyle(grid4, '').getPropertyValue('grid-template-columns'
) is "[a] 0px [b a] 0px [b a] 0px [b a] 0px [b a] 0px [b]" |
| 16 PASS window.getComputedStyle(grid4, '').getPropertyValue('grid-template-rows') i
s "none" |
| 17 PASS window.getComputedStyle(grid5, '').getPropertyValue('grid-template-columns'
) is "none" |
| 18 PASS window.getComputedStyle(grid5, '').getPropertyValue('grid-template-rows') i
s "[a] 0px [b]" |
| 19 PASS window.getComputedStyle(grid6, '').getPropertyValue('grid-template-columns'
) is "[a] 0px [b a] 0px [b a] 0px [b] 10px 30px" |
| 20 PASS window.getComputedStyle(grid6, '').getPropertyValue('grid-template-rows') i
s "none" |
| 21 PASS window.getComputedStyle(grid7, '').getPropertyValue('grid-template-columns'
) is "none" |
| 22 PASS window.getComputedStyle(grid7, '').getPropertyValue('grid-template-rows') i
s "[a] 0px [b] 10px 30px" |
| 15 | 23 |
| OLD | NEW |