| OLD | NEW |
| 1 This test checks that the 'grid' shorthand is properly parsed and the longhand p
roperties correctly assigned. | 1 This test checks that the 'grid' shorthand is properly parsed and the longhand p
roperties correctly assigned. |
| 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 the longhand values when shorthand is set through CSS. | 6 Test getting the longhand values when shorthand is set through CSS. |
| 7 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-template-c
olumns') is "none" | 7 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-template-c
olumns') is "none" |
| 8 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-template-r
ows') is "none" | 8 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-template-r
ows') is "none" |
| 9 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-template-a
reas') is "none" | 9 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-template-a
reas') is "none" |
| 10 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-auto-flow'
) is "row" | 10 PASS window.getComputedStyle(gridWithNone, '').getPropertyValue('grid-auto-flow'
) is "row" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-template-ar
eas') is "none" | 21 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-template-ar
eas') is "none" |
| 22 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-flow')
is "row" | 22 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-flow')
is "row" |
| 23 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-column
s') is "auto" | 23 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-column
s') is "auto" |
| 24 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-rows')
is "auto" | 24 PASS window.getComputedStyle(gridInherit, '').getPropertyValue('grid-auto-rows')
is "auto" |
| 25 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-
columns') is "none" | 25 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-
columns') is "none" |
| 26 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-
rows') is "none" | 26 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-
rows') is "none" |
| 27 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-
areas') is "none" | 27 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-template-
areas') is "none" |
| 28 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-flow
') is "row" | 28 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-flow
') is "row" |
| 29 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-colu
mns') is "auto" | 29 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-colu
mns') is "auto" |
| 30 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-rows
') is "auto" | 30 PASS window.getComputedStyle(gridNoInherit, '').getPropertyValue('grid-auto-rows
') is "auto" |
| 31 PASS window.getComputedStyle(gridWithAutoFlowAndRows, '').getPropertyValue('grid
-template-columns') is "none" | 31 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRows, '').getPropertyValue('
grid-template-columns') is "none" |
| 32 PASS window.getComputedStyle(gridWithAutoFlowAndRows, '').getPropertyValue('grid
-template-rows') is "none" | 32 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRows, '').getPropertyValue('
grid-template-rows') is "none" |
| 33 PASS window.getComputedStyle(gridWithAutoFlowAndRows, '').getPropertyValue('grid
-template-areas') is "none" | 33 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRows, '').getPropertyValue('
grid-template-areas') is "none" |
| 34 PASS window.getComputedStyle(gridWithAutoFlowAndRows, '').getPropertyValue('grid
-auto-flow') is "column" | 34 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRows, '').getPropertyValue('
grid-auto-flow') is "row" |
| 35 PASS window.getComputedStyle(gridWithAutoFlowAndRows, '').getPropertyValue('grid
-auto-columns') is "10px" | 35 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRows, '').getPropertyValue('
grid-auto-columns') is "auto" |
| 36 PASS window.getComputedStyle(gridWithAutoFlowAndRows, '').getPropertyValue('grid
-auto-rows') is "10px" | 36 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRows, '').getPropertyValue('
grid-auto-rows') is "10px" |
| 37 PASS window.getComputedStyle(gridWithAutoFlowNone, '').getPropertyValue('grid-te
mplate-columns') is "none" | |
| 38 PASS window.getComputedStyle(gridWithAutoFlowNone, '').getPropertyValue('grid-te
mplate-rows') is "none" | |
| 39 PASS window.getComputedStyle(gridWithAutoFlowNone, '').getPropertyValue('grid-te
mplate-areas') is "none" | |
| 40 PASS window.getComputedStyle(gridWithAutoFlowNone, '').getPropertyValue('grid-au
to-flow') is "row" | |
| 41 PASS window.getComputedStyle(gridWithAutoFlowNone, '').getPropertyValue('grid-au
to-columns') is "auto" | |
| 42 PASS window.getComputedStyle(gridWithAutoFlowNone, '').getPropertyValue('grid-au
to-rows') is "auto" | |
| 43 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-template-columns') is "none" | 37 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-template-columns') is "none" |
| 44 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-template-rows') is "none" | 38 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-template-rows') is "none" |
| 45 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-template-areas') is "none" | 39 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-template-areas') is "none" |
| 46 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-auto-flow') is "column dense" | 40 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-auto-flow') is "column dense" |
| 47 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-auto-columns') is "10px" | 41 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-auto-columns') is "auto" |
| 48 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-auto-rows') is "10px" | 42 PASS window.getComputedStyle(gridWithAutoFlowColumnDense, '').getPropertyValue('
grid-auto-rows') is "auto" |
| 49 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-template-columns') is "none" | 43 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-template-columns') is "none" |
| 50 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-template-rows') is "none" | 44 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-template-rows') is "none" |
| 51 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-template-areas') is "none" | 45 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-template-areas') is "none" |
| 52 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-auto-flow') is "row dense" | 46 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-auto-flow') is "row dense" |
| 53 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-auto-columns') is "10px" | 47 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-auto-columns') is "auto" |
| 54 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-auto-rows') is "10px" | 48 PASS window.getComputedStyle(gridWithAutoFlowDenseRow, '').getPropertyValue('gri
d-auto-rows') is "auto" |
| 55 PASS window.getComputedStyle(gridWithAutoFlowAndRowsAndColumns, '').getPropertyV
alue('grid-template-columns') is "none" | 49 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRowsAndColumns, '').getPrope
rtyValue('grid-template-columns') is "20px" |
| 56 PASS window.getComputedStyle(gridWithAutoFlowAndRowsAndColumns, '').getPropertyV
alue('grid-template-rows') is "none" | 50 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRowsAndColumns, '').getPrope
rtyValue('grid-template-rows') is "none" |
| 57 PASS window.getComputedStyle(gridWithAutoFlowAndRowsAndColumns, '').getPropertyV
alue('grid-template-areas') is "none" | 51 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRowsAndColumns, '').getPrope
rtyValue('grid-template-areas') is "none" |
| 58 PASS window.getComputedStyle(gridWithAutoFlowAndRowsAndColumns, '').getPropertyV
alue('grid-auto-flow') is "column" | 52 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRowsAndColumns, '').getPrope
rtyValue('grid-auto-flow') is "row" |
| 59 PASS window.getComputedStyle(gridWithAutoFlowAndRowsAndColumns, '').getPropertyV
alue('grid-auto-columns') is "20px" | 53 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRowsAndColumns, '').getPrope
rtyValue('grid-auto-columns') is "auto" |
| 60 PASS window.getComputedStyle(gridWithAutoFlowAndRowsAndColumns, '').getPropertyV
alue('grid-auto-rows') is "10px" | 54 PASS window.getComputedStyle(gridWithAutoFlowAndAutoRowsAndColumns, '').getPrope
rtyValue('grid-auto-rows') is "10px" |
| 61 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-template-columns') is "none" | 55 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-template-columns') is "100px 50px" |
| 62 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-template-rows') is "none" | 56 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-template-rows') is "none" |
| 63 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-template-areas') is "none" | 57 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-template-areas') is "none" |
| 64 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-auto-flow') is "row" | 58 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-auto-flow') is "row" |
| 65 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-auto-columns') is "100px 10%" | 59 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-auto-columns') is "auto" |
| 66 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-auto-rows') is "20px 10px" | 60 PASS window.getComputedStyle(gridWithAutoFlowAndMultipleAutoTracks, '').getPrope
rtyValue('grid-auto-rows') is "20px 10px" |
| 61 PASS window.getComputedStyle(gridWithRowsAndAutoFlow, '').getPropertyValue('grid
-template-columns') is "none" |
| 62 PASS window.getComputedStyle(gridWithRowsAndAutoFlow, '').getPropertyValue('grid
-template-rows') is "10px" |
| 63 PASS window.getComputedStyle(gridWithRowsAndAutoFlow, '').getPropertyValue('grid
-template-areas') is "none" |
| 64 PASS window.getComputedStyle(gridWithRowsAndAutoFlow, '').getPropertyValue('grid
-auto-flow') is "column" |
| 65 PASS window.getComputedStyle(gridWithRowsAndAutoFlow, '').getPropertyValue('grid
-auto-columns') is "auto" |
| 66 PASS window.getComputedStyle(gridWithRowsAndAutoFlow, '').getPropertyValue('grid
-auto-rows') is "auto" |
| 67 PASS window.getComputedStyle(gridWithRowsNoneAndAutoFlowAndAutoColumn, '').getPr
opertyValue('grid-template-columns') is "none" |
| 68 PASS window.getComputedStyle(gridWithRowsNoneAndAutoFlowAndAutoColumn, '').getPr
opertyValue('grid-template-rows') is "none" |
| 69 PASS window.getComputedStyle(gridWithRowsNoneAndAutoFlowAndAutoColumn, '').getPr
opertyValue('grid-template-areas') is "none" |
| 70 PASS window.getComputedStyle(gridWithRowsNoneAndAutoFlowAndAutoColumn, '').getPr
opertyValue('grid-auto-flow') is "column" |
| 71 PASS window.getComputedStyle(gridWithRowsNoneAndAutoFlowAndAutoColumn, '').getPr
opertyValue('grid-auto-columns') is "10px" |
| 72 PASS window.getComputedStyle(gridWithRowsNoneAndAutoFlowAndAutoColumn, '').getPr
opertyValue('grid-auto-rows') is "auto" |
| 73 PASS window.getComputedStyle(gridWithRowsAndAutoFlowDenseColumn, '').getProperty
Value('grid-template-columns') is "none" |
| 74 PASS window.getComputedStyle(gridWithRowsAndAutoFlowDenseColumn, '').getProperty
Value('grid-template-rows') is "10px" |
| 75 PASS window.getComputedStyle(gridWithRowsAndAutoFlowDenseColumn, '').getProperty
Value('grid-template-areas') is "none" |
| 76 PASS window.getComputedStyle(gridWithRowsAndAutoFlowDenseColumn, '').getProperty
Value('grid-auto-flow') is "column dense" |
| 77 PASS window.getComputedStyle(gridWithRowsAndAutoFlowDenseColumn, '').getProperty
Value('grid-auto-columns') is "auto" |
| 78 PASS window.getComputedStyle(gridWithRowsAndAutoFlowDenseColumn, '').getProperty
Value('grid-auto-rows') is "auto" |
| 79 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndAutoColumns, '').getPrope
rtyValue('grid-template-columns') is "none" |
| 80 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndAutoColumns, '').getPrope
rtyValue('grid-template-rows') is "20px" |
| 81 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndAutoColumns, '').getPrope
rtyValue('grid-template-areas') is "none" |
| 82 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndAutoColumns, '').getPrope
rtyValue('grid-auto-flow') is "column" |
| 83 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndAutoColumns, '').getPrope
rtyValue('grid-auto-columns') is "10px" |
| 84 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndAutoColumns, '').getPrope
rtyValue('grid-auto-rows') is "auto" |
| 85 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndMultipleAutoTracks, '').g
etPropertyValue('grid-template-columns') is "none" |
| 86 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndMultipleAutoTracks, '').g
etPropertyValue('grid-template-rows') is "100px 50px" |
| 87 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndMultipleAutoTracks, '').g
etPropertyValue('grid-template-areas') is "none" |
| 88 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndMultipleAutoTracks, '').g
etPropertyValue('grid-auto-flow') is "column" |
| 89 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndMultipleAutoTracks, '').g
etPropertyValue('grid-auto-columns') is "20px 10px" |
| 90 PASS window.getComputedStyle(gridWithRowsAndAutoFlowAndMultipleAutoTracks, '').g
etPropertyValue('grid-auto-rows') is "auto" |
| 67 | 91 |
| 68 Test getting wrong values for 'grid' shorthand through CSS (they should resolve
to the default: 'none') | 92 Test getting wrong values for 'grid' shorthand through CSS (they should resolve
to the default: 'none') |
| 69 PASS window.getComputedStyle(gridWithExplicitAndImplicit, '').getPropertyValue('
grid-template-columns') is "none" | 93 PASS window.getComputedStyle(gridWithMisplacedAutoColumn, '').getPropertyValue('
grid-template-columns') is "none" |
| 70 PASS window.getComputedStyle(gridWithExplicitAndImplicit, '').getPropertyValue('
grid-template-rows') is "none" | 94 PASS window.getComputedStyle(gridWithMisplacedAutoColumn, '').getPropertyValue('
grid-template-rows') is "none" |
| 71 PASS window.getComputedStyle(gridWithExplicitAndImplicit, '').getPropertyValue('
grid-template-areas') is "none" | 95 PASS window.getComputedStyle(gridWithMisplacedAutoColumn, '').getPropertyValue('
grid-template-areas') is "none" |
| 72 PASS window.getComputedStyle(gridWithExplicitAndImplicit, '').getPropertyValue('
grid-auto-flow') is "row" | 96 PASS window.getComputedStyle(gridWithMisplacedAutoColumn, '').getPropertyValue('
grid-auto-flow') is "row" |
| 73 PASS window.getComputedStyle(gridWithExplicitAndImplicit, '').getPropertyValue('
grid-auto-columns') is "auto" | 97 PASS window.getComputedStyle(gridWithMisplacedAutoColumn, '').getPropertyValue('
grid-auto-columns') is "auto" |
| 74 PASS window.getComputedStyle(gridWithExplicitAndImplicit, '').getPropertyValue('
grid-auto-rows') is "auto" | 98 PASS window.getComputedStyle(gridWithMisplacedAutoColumn, '').getPropertyValue('
grid-auto-rows') is "auto" |
| 75 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
template-columns') is "none" | 99 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
template-columns') is "none" |
| 76 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
template-rows') is "none" | 100 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
template-rows') is "none" |
| 77 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
template-areas') is "none" | 101 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
template-areas') is "none" |
| 78 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
auto-flow') is "row" | 102 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
auto-flow') is "row" |
| 79 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
auto-columns') is "auto" | 103 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
auto-columns') is "auto" |
| 80 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
auto-rows') is "auto" | 104 PASS window.getComputedStyle(gridWithMisplacedNone1, '').getPropertyValue('grid-
auto-rows') is "auto" |
| 81 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
template-columns') is "none" | 105 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
template-columns') is "none" |
| 82 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
template-rows') is "none" | 106 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
template-rows') is "none" |
| 83 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
template-areas') is "none" | 107 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
template-areas') is "none" |
| 84 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
auto-flow') is "row" | 108 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
auto-flow') is "row" |
| 85 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
auto-columns') is "auto" | 109 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
auto-columns') is "auto" |
| 86 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
auto-rows') is "auto" | 110 PASS window.getComputedStyle(gridWithMisplacedNone2, '').getPropertyValue('grid-
auto-rows') is "auto" |
| 87 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
template-columns') is "none" | 111 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
template-columns') is "none" |
| 88 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
template-rows') is "none" | 112 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
template-rows') is "none" |
| 89 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
template-areas') is "none" | 113 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
template-areas') is "none" |
| 90 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
auto-flow') is "row" | 114 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
auto-flow') is "row" |
| 91 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
auto-columns') is "auto" | 115 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
auto-columns') is "auto" |
| 92 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
auto-rows') is "auto" | 116 PASS window.getComputedStyle(gridWithMisplacedDense, '').getPropertyValue('grid-
auto-rows') is "auto" |
| 117 PASS window.getComputedStyle(gridWithDuplicatedDense, '').getPropertyValue('grid
-template-columns') is "none" |
| 118 PASS window.getComputedStyle(gridWithDuplicatedDense, '').getPropertyValue('grid
-template-rows') is "none" |
| 119 PASS window.getComputedStyle(gridWithDuplicatedDense, '').getPropertyValue('grid
-template-areas') is "none" |
| 120 PASS window.getComputedStyle(gridWithDuplicatedDense, '').getPropertyValue('grid
-auto-flow') is "row" |
| 121 PASS window.getComputedStyle(gridWithDuplicatedDense, '').getPropertyValue('grid
-auto-columns') is "auto" |
| 122 PASS window.getComputedStyle(gridWithDuplicatedDense, '').getPropertyValue('grid
-auto-rows') is "auto" |
| 123 PASS window.getComputedStyle(gridWithoutColumnInfo, '').getPropertyValue('grid-t
emplate-columns') is "none" |
| 124 PASS window.getComputedStyle(gridWithoutColumnInfo, '').getPropertyValue('grid-t
emplate-rows') is "none" |
| 125 PASS window.getComputedStyle(gridWithoutColumnInfo, '').getPropertyValue('grid-t
emplate-areas') is "none" |
| 126 PASS window.getComputedStyle(gridWithoutColumnInfo, '').getPropertyValue('grid-a
uto-flow') is "row" |
| 127 PASS window.getComputedStyle(gridWithoutColumnInfo, '').getPropertyValue('grid-a
uto-columns') is "auto" |
| 128 PASS window.getComputedStyle(gridWithoutColumnInfo, '').getPropertyValue('grid-a
uto-rows') is "auto" |
| 129 PASS window.getComputedStyle(gridWithTwoAutoFlow, '').getPropertyValue('grid-tem
plate-columns') is "none" |
| 130 PASS window.getComputedStyle(gridWithTwoAutoFlow, '').getPropertyValue('grid-tem
plate-rows') is "none" |
| 131 PASS window.getComputedStyle(gridWithTwoAutoFlow, '').getPropertyValue('grid-tem
plate-areas') is "none" |
| 132 PASS window.getComputedStyle(gridWithTwoAutoFlow, '').getPropertyValue('grid-aut
o-flow') is "row" |
| 133 PASS window.getComputedStyle(gridWithTwoAutoFlow, '').getPropertyValue('grid-aut
o-columns') is "auto" |
| 134 PASS window.getComputedStyle(gridWithTwoAutoFlow, '').getPropertyValue('grid-aut
o-rows') is "auto" |
| 135 PASS window.getComputedStyle(gridWithImplicitAndNoExplicit, '').getPropertyValue
('grid-template-columns') is "none" |
| 136 PASS window.getComputedStyle(gridWithImplicitAndNoExplicit, '').getPropertyValue
('grid-template-rows') is "none" |
| 137 PASS window.getComputedStyle(gridWithImplicitAndNoExplicit, '').getPropertyValue
('grid-template-areas') is "none" |
| 138 PASS window.getComputedStyle(gridWithImplicitAndNoExplicit, '').getPropertyValue
('grid-auto-flow') is "row" |
| 139 PASS window.getComputedStyle(gridWithImplicitAndNoExplicit, '').getPropertyValue
('grid-auto-columns') is "auto" |
| 140 PASS window.getComputedStyle(gridWithImplicitAndNoExplicit, '').getPropertyValue
('grid-auto-rows') is "auto" |
| 141 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowColumn, '').getPropert
yValue('grid-template-columns') is "none" |
| 142 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowColumn, '').getPropert
yValue('grid-template-rows') is "none" |
| 143 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowColumn, '').getPropert
yValue('grid-template-areas') is "none" |
| 144 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowColumn, '').getPropert
yValue('grid-auto-flow') is "row" |
| 145 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowColumn, '').getPropert
yValue('grid-auto-columns') is "auto" |
| 146 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowColumn, '').getPropert
yValue('grid-auto-rows') is "auto" |
| 147 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowRow, '').getPropertyVa
lue('grid-template-columns') is "none" |
| 148 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowRow, '').getPropertyVa
lue('grid-template-rows') is "none" |
| 149 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowRow, '').getPropertyVa
lue('grid-template-areas') is "none" |
| 150 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowRow, '').getPropertyVa
lue('grid-auto-flow') is "row" |
| 151 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowRow, '').getPropertyVa
lue('grid-auto-columns') is "auto" |
| 152 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoFlowRow, '').getPropertyVa
lue('grid-auto-rows') is "auto" |
| 153 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoColumn, '').getPropertyVal
ue('grid-template-columns') is "none" |
| 154 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoColumn, '').getPropertyVal
ue('grid-template-rows') is "none" |
| 155 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoColumn, '').getPropertyVal
ue('grid-template-areas') is "none" |
| 156 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoColumn, '').getPropertyVal
ue('grid-auto-flow') is "row" |
| 157 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoColumn, '').getPropertyVal
ue('grid-auto-columns') is "auto" |
| 158 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoColumn, '').getPropertyVal
ue('grid-auto-rows') is "auto" |
| 159 PASS window.getComputedStyle(gridWithExtraIdAfterAutoColumn, '').getPropertyValu
e('grid-template-columns') is "none" |
| 160 PASS window.getComputedStyle(gridWithExtraIdAfterAutoColumn, '').getPropertyValu
e('grid-template-rows') is "none" |
| 161 PASS window.getComputedStyle(gridWithExtraIdAfterAutoColumn, '').getPropertyValu
e('grid-template-areas') is "none" |
| 162 PASS window.getComputedStyle(gridWithExtraIdAfterAutoColumn, '').getPropertyValu
e('grid-auto-flow') is "row" |
| 163 PASS window.getComputedStyle(gridWithExtraIdAfterAutoColumn, '').getPropertyValu
e('grid-auto-columns') is "auto" |
| 164 PASS window.getComputedStyle(gridWithExtraIdAfterAutoColumn, '').getPropertyValu
e('grid-auto-rows') is "auto" |
| 165 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoRow, '').getPropertyValue(
'grid-template-columns') is "none" |
| 166 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoRow, '').getPropertyValue(
'grid-template-rows') is "none" |
| 167 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoRow, '').getPropertyValue(
'grid-template-areas') is "none" |
| 168 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoRow, '').getPropertyValue(
'grid-auto-flow') is "row" |
| 169 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoRow, '').getPropertyValue(
'grid-auto-columns') is "auto" |
| 170 PASS window.getComputedStyle(gridWithExtraIdBeforeAutoRow, '').getPropertyValue(
'grid-auto-rows') is "auto" |
| 171 PASS window.getComputedStyle(gridWithExtraIdAfterAutoRow, '').getPropertyValue('
grid-template-columns') is "none" |
| 172 PASS window.getComputedStyle(gridWithExtraIdAfterAutoRow, '').getPropertyValue('
grid-template-rows') is "none" |
| 173 PASS window.getComputedStyle(gridWithExtraIdAfterAutoRow, '').getPropertyValue('
grid-template-areas') is "none" |
| 174 PASS window.getComputedStyle(gridWithExtraIdAfterAutoRow, '').getPropertyValue('
grid-auto-flow') is "row" |
| 175 PASS window.getComputedStyle(gridWithExtraIdAfterAutoRow, '').getPropertyValue('
grid-auto-columns') is "auto" |
| 176 PASS window.getComputedStyle(gridWithExtraIdAfterAutoRow, '').getPropertyValue('
grid-auto-rows') is "auto" |
| 93 | 177 |
| 94 Test getting and setting 'grid' shorthand through JS | 178 Test getting and setting 'grid' shorthand through JS |
| 95 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"10px" | 179 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"10px" |
| 96 PASS element.style.gridTemplateColumns is "10px" | 180 PASS element.style.gridTemplateColumns is "10px" |
| 97 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "20
px" | 181 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "20
px" |
| 98 PASS element.style.gridTemplateRows is "20px" | 182 PASS element.style.gridTemplateRows is "20px" |
| 99 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" | 183 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 100 PASS element.style.gridTemplateAreas is "none" | 184 PASS element.style.gridTemplateAreas is "none" |
| 101 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" | 185 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" |
| 102 PASS element.style.gridAutoFlow is "initial" | 186 PASS element.style.gridAutoFlow is "initial" |
| 103 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" | 187 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" |
| 104 PASS element.style.gridAutoColumns is "initial" | 188 PASS element.style.gridAutoColumns is "initial" |
| 105 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" | 189 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 106 PASS element.style.gridAutoRows is "initial" | 190 PASS element.style.gridAutoRows is "initial" |
| 107 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"10px" | 191 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"10px" |
| 108 PASS element.style.gridTemplateColumns is "10px" | 192 PASS element.style.gridTemplateColumns is "10px" |
| 109 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "[l
ine] 20px" | 193 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "[l
ine] 20px" |
| 110 PASS element.style.gridTemplateRows is "[line] 20px" | 194 PASS element.style.gridTemplateRows is "[line] 20px" |
| 111 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "\
"a\"" | 195 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "\
"a\"" |
| 112 PASS element.style.gridTemplateAreas is "\"a\"" | 196 PASS element.style.gridTemplateAreas is "\"a\"" |
| 113 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" | 197 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" |
| 114 PASS element.style.gridAutoFlow is "initial" | 198 PASS element.style.gridAutoFlow is "initial" |
| 115 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" | 199 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" |
| 116 PASS element.style.gridAutoColumns is "initial" | 200 PASS element.style.gridAutoColumns is "initial" |
| 117 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" | 201 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 118 PASS element.style.gridAutoRows is "initial" | 202 PASS element.style.gridAutoRows is "initial" |
| 119 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" | 203 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 120 PASS element.style.gridTemplateColumns is "initial" | 204 PASS element.style.gridTemplateColumns is "none" |
| 121 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" | 205 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" |
| 122 PASS element.style.gridTemplateRows is "initial" | 206 PASS element.style.gridTemplateRows is "initial" |
| 123 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" | 207 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 124 PASS element.style.gridTemplateAreas is "initial" | 208 PASS element.style.gridTemplateAreas is "initial" |
| 125 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row de
nse" | 209 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row de
nse" |
| 126 PASS element.style.gridAutoFlow is "row dense" | 210 PASS element.style.gridAutoFlow is "row dense" |
| 127 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "20p
x" | 211 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" |
| 128 PASS element.style.gridAutoColumns is "20px" | 212 PASS element.style.gridAutoColumns is "initial" |
| 129 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "20px" | 213 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "20px" |
| 130 PASS element.style.gridAutoRows is "20px" | 214 PASS element.style.gridAutoRows is "20px" |
| 131 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" | 215 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 132 PASS element.style.gridTemplateColumns is "initial" | 216 PASS element.style.gridTemplateColumns is "initial" |
| 133 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" | 217 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "20
px" |
| 134 PASS element.style.gridTemplateRows is "initial" | 218 PASS element.style.gridTemplateRows is "20px" |
| 135 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" | 219 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 136 PASS element.style.gridTemplateAreas is "initial" | 220 PASS element.style.gridTemplateAreas is "initial" |
| 137 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
" | 221 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
" |
| 138 PASS element.style.gridAutoFlow is "column" | 222 PASS element.style.gridAutoFlow is "column" |
| 139 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "10p
x" | 223 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "10p
x" |
| 140 PASS element.style.gridAutoColumns is "10px" | 224 PASS element.style.gridAutoColumns is "10px" |
| 141 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "20px" | 225 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 142 PASS element.style.gridAutoRows is "20px" | 226 PASS element.style.gridAutoRows is "initial" |
| 227 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 228 PASS element.style.gridTemplateColumns is "initial" |
| 229 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" |
| 230 PASS element.style.gridTemplateRows is "none" |
| 231 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 232 PASS element.style.gridTemplateAreas is "initial" |
| 233 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
dense" |
| 234 PASS element.style.gridAutoFlow is "column dense" |
| 235 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "20p
x" |
| 236 PASS element.style.gridAutoColumns is "20px" |
| 237 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 238 PASS element.style.gridAutoRows is "initial" |
| 239 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 240 PASS element.style.gridTemplateColumns is "initial" |
| 241 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "10
px" |
| 242 PASS element.style.gridTemplateRows is "10px" |
| 243 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 244 PASS element.style.gridTemplateAreas is "initial" |
| 245 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
" |
| 246 PASS element.style.gridAutoFlow is "column" |
| 247 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "20p
x" |
| 248 PASS element.style.gridAutoColumns is "20px" |
| 249 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 250 PASS element.style.gridAutoRows is "initial" |
| 143 | 251 |
| 144 Test the initial value | 252 Test the initial value |
| 145 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" | 253 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" |
| 146 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" | 254 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" |
| 147 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-areas'
) is "none" | 255 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-areas'
) is "none" |
| 148 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
"row" | 256 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is
"row" |
| 149 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-columns')
is "auto" | 257 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-columns')
is "auto" |
| 150 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is
"auto" | 258 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is
"auto" |
| 151 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
'none' | 259 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
'none' |
| 152 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is 'no
ne' | 260 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is 'no
ne' |
| 153 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is 'n
one' | 261 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is 'n
one' |
| 154 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' | 262 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
| 155 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is 'aut
o' | 263 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is 'aut
o' |
| 156 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is 'auto' | 264 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is 'auto' |
| 157 | 265 |
| 158 Test setting grid-template-columns and grid-template-rows back to 'none' through
JS | 266 Test setting grid-template-columns and grid-template-rows back to 'none' through
JS |
| 159 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" | 267 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 160 PASS element.style.gridTemplateColumns is "initial" | 268 PASS element.style.gridTemplateColumns is "initial" |
| 161 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" | 269 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "10
px" |
| 162 PASS element.style.gridTemplateRows is "initial" | 270 PASS element.style.gridTemplateRows is "10px" |
| 163 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" | 271 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 164 PASS element.style.gridTemplateAreas is "initial" | 272 PASS element.style.gridTemplateAreas is "initial" |
| 165 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
" | 273 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
" |
| 166 PASS element.style.gridAutoFlow is "column" | 274 PASS element.style.gridAutoFlow is "column" |
| 167 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "20p
x" | 275 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "20p
x" |
| 168 PASS element.style.gridAutoColumns is "20px" | 276 PASS element.style.gridAutoColumns is "20px" |
| 169 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "10px" | 277 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 170 PASS element.style.gridAutoRows is "10px" | 278 PASS element.style.gridAutoRows is "initial" |
| 171 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" | 279 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 172 PASS element.style.gridTemplateColumns is "none" | 280 PASS element.style.gridTemplateColumns is "none" |
| 173 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" | 281 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" |
| 282 PASS element.style.gridTemplateRows is "none" |
| 283 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 284 PASS element.style.gridTemplateAreas is "none" |
| 285 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" |
| 286 PASS element.style.gridAutoFlow is "initial" |
| 287 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" |
| 288 PASS element.style.gridAutoColumns is "initial" |
| 289 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 290 PASS element.style.gridAutoRows is "initial" |
| 291 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 292 PASS element.style.gridTemplateColumns is "initial" |
| 293 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "20
px" |
| 294 PASS element.style.gridTemplateRows is "20px" |
| 295 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 296 PASS element.style.gridTemplateAreas is "initial" |
| 297 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "column
" |
| 298 PASS element.style.gridAutoFlow is "column" |
| 299 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "10p
x" |
| 300 PASS element.style.gridAutoColumns is "10px" |
| 301 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 302 PASS element.style.gridAutoRows is "initial" |
| 303 PASS getComputedStyle(element, '').getPropertyValue('grid-template-columns') is
"none" |
| 304 PASS element.style.gridTemplateColumns is "none" |
| 305 PASS getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "no
ne" |
| 174 PASS element.style.gridTemplateRows is "none" | 306 PASS element.style.gridTemplateRows is "none" |
| 175 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" | 307 PASS getComputedStyle(element, '').getPropertyValue('grid-template-areas') is "n
one" |
| 176 PASS element.style.gridTemplateAreas is "none" | 308 PASS element.style.gridTemplateAreas is "none" |
| 177 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" | 309 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is "row" |
| 178 PASS element.style.gridAutoFlow is "initial" | 310 PASS element.style.gridAutoFlow is "initial" |
| 179 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" | 311 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-columns') is "aut
o" |
| 180 PASS element.style.gridAutoColumns is "initial" | 312 PASS element.style.gridAutoColumns is "initial" |
| 181 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" | 313 PASS getComputedStyle(element, '').getPropertyValue('grid-auto-rows') is "auto" |
| 182 PASS element.style.gridAutoRows is "initial" | 314 PASS element.style.gridAutoRows is "initial" |
| 183 | 315 |
| 184 Test the inherit value on reset-only subproperties (grid-*-gap) | 316 Test the inherit value on reset-only subproperties (grid-*-gap) |
| 185 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-column-gap') is
"0px" | 317 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-column-gap') is
"0px" |
| 186 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-row-gap') is "0
px" | 318 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-row-gap') is "0
px" |
| 187 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-column-gap') is
"20px" | 319 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-column-gap') is
"20px" |
| 188 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-row-gap') is "1
00px" | 320 PASS getComputedStyle(anotherElement, '').getPropertyValue('grid-row-gap') is "1
00px" |
| 189 PASS successfullyParsed is true | 321 PASS successfullyParsed is true |
| 190 | 322 |
| 191 TEST COMPLETE | 323 TEST COMPLETE |
| 192 | 324 |
| OLD | NEW |