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 grid-auto-flow set through CSS | 6 Test getting grid-auto-flow set through CSS |
7 PASS window.getComputedStyle(gridAutoFlowColumnSparse, '').getPropertyValue('gri
d-auto-flow') is 'column' | 7 PASS window.getComputedStyle(gridAutoFlowColumnSparse, '').getPropertyValue('gri
d-auto-flow') is 'column' |
8 PASS window.getComputedStyle(gridAutoFlowRowSparse, '').getPropertyValue('grid-a
uto-flow') is 'row' | 8 PASS window.getComputedStyle(gridAutoFlowRowSparse, '').getPropertyValue('grid-a
uto-flow') is 'row' |
9 PASS window.getComputedStyle(gridAutoFlowDense, '').getPropertyValue('grid-auto-
flow') is 'row dense' | 9 PASS window.getComputedStyle(gridAutoFlowDense, '').getPropertyValue('grid-auto-
flow') is 'row dense' |
10 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid
-auto-flow') is 'column dense' | 10 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid
-auto-flow') is 'column dense' |
(...skipping 17 matching lines...) Expand all Loading... |
28 Test the initial value | 28 Test the initial value |
29 PASS element.style.gridAutoFlow is '' | 29 PASS element.style.gridAutoFlow is '' |
30 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 30 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
31 Test getting and setting grid-auto-flow through JS | 31 Test getting and setting grid-auto-flow through JS |
32 PASS element.style.gridAutoFlow is 'column' | 32 PASS element.style.gridAutoFlow is 'column' |
33 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column' | 33 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column' |
34 PASS element.style.gridAutoFlow is 'column dense' | 34 PASS element.style.gridAutoFlow is 'column dense' |
35 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column dense' | 35 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column dense' |
36 PASS element.style.gridAutoFlow is 'row dense' | 36 PASS element.style.gridAutoFlow is 'row dense' |
37 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row dense' | 37 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row dense' |
38 PASS element.style.gridAutoFlow is 'dense column' | 38 PASS element.style.gridAutoFlow is 'column dense' |
39 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column dense' | 39 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'column dense' |
40 PASS element.style.gridAutoFlow is 'dense row' | 40 PASS element.style.gridAutoFlow is 'row dense' |
41 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row dense' | 41 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row dense' |
42 PASS element.style.gridAutoFlow is 'row' | 42 PASS element.style.gridAutoFlow is 'row' |
43 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 43 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
44 | 44 |
45 Test getting and setting bad values for grid-auto-flow through JS | 45 Test getting and setting bad values for grid-auto-flow through JS |
46 PASS element.style.gridAutoFlow is '' | 46 PASS element.style.gridAutoFlow is '' |
47 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 47 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
48 PASS element.style.gridAutoFlow is '' | 48 PASS element.style.gridAutoFlow is '' |
49 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 49 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
50 PASS element.style.gridAutoFlow is '' | 50 PASS element.style.gridAutoFlow is '' |
51 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 51 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
52 PASS element.style.gridAutoFlow is '' | 52 PASS element.style.gridAutoFlow is '' |
53 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 53 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
54 PASS element.style.gridAutoFlow is '' | 54 PASS element.style.gridAutoFlow is '' |
55 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 55 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
56 PASS element.style.gridAutoFlow is '' | 56 PASS element.style.gridAutoFlow is '' |
57 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 57 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
58 PASS element.style.gridAutoFlow is '' | 58 PASS element.style.gridAutoFlow is '' |
59 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 59 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
60 | 60 |
61 Test setting grid-auto-flow to 'initial' through JS | 61 Test setting grid-auto-flow to 'initial' through JS |
62 PASS element.style.gridAutoFlow is 'initial' | 62 PASS element.style.gridAutoFlow is 'initial' |
63 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' | 63 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
'row' |
64 PASS successfullyParsed is true | 64 PASS successfullyParsed is true |
65 | 65 |
66 TEST COMPLETE | 66 TEST COMPLETE |
67 | 67 |
OLD | NEW |