| OLD | NEW |
| 1 Test that setting and getting grid-columns and grid-rows works as expected | 1 Test that setting and getting grid-columns and grid-rows works as expected |
| 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 Test getting grid-columns and grid-rows set through CSS | 6 Test getting grid-columns and grid-rows set through CSS |
| 7 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs
t 10px" | 7 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "firs
t 10px" |
| 8 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first 1
5px" | 8 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first 1
5px" |
| 9 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "53%
last" | 9 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "53%
last" |
| 10 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "27% las
t" | 10 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "27% las
t" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav
first minmax(-webkit-min-content, -webkit-max-content) last" | 39 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav
first minmax(-webkit-min-content, -webkit-max-content) last" |
| 40 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "nav fir
st minmax(-webkit-max-content, -webkit-min-content) last" | 40 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "nav fir
st minmax(-webkit-max-content, -webkit-min-content) last" |
| 41 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav
first minmax(-webkit-min-content, -webkit-max-content) nav auto last" | 41 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "nav
first minmax(-webkit-min-content, -webkit-max-content) nav auto last" |
| 42 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n
av2 minmax(-webkit-max-content, -webkit-min-content) nav2 minmax(10px, 15px) las
t" | 42 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "first n
av2 minmax(-webkit-max-content, -webkit-min-content) nav2 minmax(10px, 15px) las
t" |
| 43 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "foo
bar auto foo auto bar" | 43 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "foo
bar auto foo auto bar" |
| 44 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "foo bar
auto foo auto bar" | 44 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "foo bar
auto foo auto bar" |
| 45 | 45 |
| 46 Test getting and setting invalid grid-columns and grid-rows through JS | 46 Test getting and setting invalid grid-columns and grid-rows through JS |
| 47 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none
" | 47 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none
" |
| 48 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none" | 48 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none" |
| 49 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-columns') is "none
" |
| 50 PASS getComputedStyle(gridElement, '').getPropertyValue('grid-rows') is "none" |
| 49 PASS successfullyParsed is true | 51 PASS successfullyParsed is true |
| 50 | 52 |
| 51 TEST COMPLETE | 53 TEST COMPLETE |
| 52 | 54 |
| OLD | NEW |