OLD | NEW |
1 Test that setting and getting grid-template-columns and grid-template-rows works
as expected | 1 Test that setting and getting grid-template-columns and grid-template-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-template-columns and grid-template-rows set through CSS | 6 Test getting grid-template-columns and grid-template-rows set through CSS |
7 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-te
mplate-columns') is "(first) 10px" | 7 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-te
mplate-columns') is "(first) 10px" |
8 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-te
mplate-rows') is "(first) 15px" | 8 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-te
mplate-rows') is "(first) 15px" |
9 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
template-columns') is "424px (last)" | 9 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
template-columns') is "424px (last)" |
10 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
template-rows') is "162px (last)" | 10 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
template-rows') is "162px (last)" |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" | 103 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" |
104 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" | 104 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" |
105 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" | 105 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" |
106 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" | 106 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" |
107 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" | 107 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column
s') is "none" |
108 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" | 108 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows')
is "none" |
109 PASS successfullyParsed is true | 109 PASS successfullyParsed is true |
110 | 110 |
111 TEST COMPLETE | 111 TEST COMPLETE |
112 | 112 |
OLD | NEW |