| OLD | NEW |
| 1 Test that setting and getting grid-auto-flow works as expected | 1 Test that setting and getting grid-auto-flow 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 auto-flow set through CSS | 6 Test getting auto-flow set through CSS |
| 7 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto
-flow') is 'column' | 7 PASS window.getComputedStyle(gridAutoFlowColumnSparse, '').getPropertyValue('gri
d-auto-flow') is 'column' |
| 8 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl
ow') is 'row' | 8 PASS window.getComputedStyle(gridAutoFlowRowSparse, '').getPropertyValue('grid-a
uto-flow') is 'row' |
| 9 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid
-auto-flow') is 'column dense' | 9 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid
-auto-flow') is 'column dense' |
| 10 PASS window.getComputedStyle(gridAutoFlowRowDense, '').getPropertyValue('grid-au
to-flow') is 'row dense' | 10 PASS window.getComputedStyle(gridAutoFlowRowDense, '').getPropertyValue('grid-au
to-flow') is 'row dense' |
| 11 PASS window.getComputedStyle(gridAutoFlowDenseColumn, '').getPropertyValue('grid
-auto-flow') is 'column dense' | 11 PASS window.getComputedStyle(gridAutoFlowDenseColumn, '').getPropertyValue('grid
-auto-flow') is 'column dense' |
| 12 PASS window.getComputedStyle(gridAutoFlowDenseRow, '').getPropertyValue('grid-au
to-flow') is 'row dense' | 12 PASS window.getComputedStyle(gridAutoFlowDenseRow, '').getPropertyValue('grid-au
to-flow') is 'row dense' |
| 13 PASS window.getComputedStyle(gridAutoFlowStack, '').getPropertyValue('grid-auto-
flow') is 'stack row' | 13 PASS window.getComputedStyle(gridAutoFlowStack, '').getPropertyValue('grid-auto-
flow') is 'stack row' |
| 14 PASS window.getComputedStyle(gridAutoFlowStackColumn, '').getPropertyValue('grid
-auto-flow') is 'stack column' | 14 PASS window.getComputedStyle(gridAutoFlowStackColumn, '').getPropertyValue('grid
-auto-flow') is 'stack column' |
| 15 PASS window.getComputedStyle(gridAutoFlowStackRow, '').getPropertyValue('grid-au
to-flow') is 'stack row' | 15 PASS window.getComputedStyle(gridAutoFlowStackRow, '').getPropertyValue('grid-au
to-flow') is 'stack row' |
| 16 PASS window.getComputedStyle(gridAutoFlowColumnStack, '').getPropertyValue('grid
-auto-flow') is 'stack column' | 16 PASS window.getComputedStyle(gridAutoFlowColumnStack, '').getPropertyValue('grid
-auto-flow') is 'stack column' |
| 17 PASS window.getComputedStyle(gridAutoFlowRowStack, '').getPropertyValue('grid-au
to-flow') is 'stack row' | 17 PASS window.getComputedStyle(gridAutoFlowRowStack, '').getPropertyValue('grid-au
to-flow') is 'stack row' |
| 18 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f
low') is 'row' | 18 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f
low') is 'row' |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 PASS element.style.gridAutoFlow is '' | 68 PASS element.style.gridAutoFlow is '' |
| 69 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 69 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
| 70 | 70 |
| 71 Test setting grid-auto-flow to 'initial' through JS | 71 Test setting grid-auto-flow to 'initial' through JS |
| 72 PASS element.style.gridAutoFlow is 'initial' | 72 PASS element.style.gridAutoFlow is 'initial' |
| 73 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 73 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
| 74 PASS successfullyParsed is true | 74 PASS successfullyParsed is true |
| 75 | 75 |
| 76 TEST COMPLETE | 76 TEST COMPLETE |
| 77 | 77 |
| OLD | NEW |