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 -webkit-auto-flow set through CSS | 6 Test getting auto-flow set through CSS |
7 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f
low') is 'none' | 7 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f
low') is 'none' |
8 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto
-flow') is 'column' | 8 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto
-flow') is 'column' |
9 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl
ow') is 'row' | 9 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl
ow') is 'row' |
10 PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-aut
o-flow') is 'none' | 10 PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-aut
o-flow') is 'none' |
11 PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-f
low') is 'none' | 11 PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-f
low') is 'none' |
12 PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-aut
o-flow') is 'column' | 12 PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-aut
o-flow') is 'column' |
13 PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-a
uto-flow') is 'none' | 13 PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-a
uto-flow') is 'none' |
14 | 14 |
15 Test the initial value | 15 Test the initial value |
16 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'none' | 16 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'none' |
17 | 17 |
18 Test getting and setting grid-auto-flow through JS | 18 Test getting and setting grid-auto-flow through JS |
19 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column' | 19 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column' |
20 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 20 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
21 | 21 |
22 Test getting and setting bad values for grid-auto-flow through JS | 22 Test getting and setting bad values for grid-auto-flow through JS |
23 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 23 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
24 | 24 |
25 Test setting grid-auto-flow to 'initial' through JS | 25 Test setting grid-auto-flow to 'initial' through JS |
26 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'none' | 26 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'none' |
27 PASS successfullyParsed is true | 27 PASS successfullyParsed is true |
28 | 28 |
29 TEST COMPLETE | 29 TEST COMPLETE |
30 | 30 |
OLD | NEW |