| OLD | NEW |
| 1 Test that setting and getting grid-definition-columns and grid-definition-rows w
orks as expected | 1 Test that setting and getting grid-definition-columns and grid-definition-rows w
orks 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-definition-columns and grid-definition-rows set through CSS | 6 Test getting grid-definition-columns and grid-definition-rows set through CSS |
| 7 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-de
finition-columns') is "first 10px" | 7 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-de
finition-columns') is "first 10px" |
| 8 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-de
finition-rows') is "first 15px" | 8 PASS window.getComputedStyle(gridWithFixedElement, '').getPropertyValue('grid-de
finition-rows') is "first 15px" |
| 9 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
definition-columns') is "424px last" | 9 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
definition-columns') is "424px last" |
| 10 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
definition-rows') is "162px last" | 10 PASS window.getComputedStyle(gridWithPercentElement, '').getPropertyValue('grid-
definition-rows') is "162px last" |
| 11 PASS window.getComputedStyle(gridWithPercentWithoutSize, '').getPropertyValue('g
rid-definition-columns') is "0px last" |
| 12 PASS window.getComputedStyle(gridWithPercentWithoutSize, '').getPropertyValue('g
rid-definition-rows') is "0px last" |
| 13 PASS window.getComputedStyle(gridWithPercentWithoutSizeWithChildren, '').getProp
ertyValue('grid-definition-columns') is "77px last" |
| 14 PASS window.getComputedStyle(gridWithPercentWithoutSizeWithChildren, '').getProp
ertyValue('grid-definition-rows') is "22px last" |
| 11 PASS window.getComputedStyle(gridWithAutoElement, '').getPropertyValue('grid-def
inition-columns') is "first 0px" | 15 PASS window.getComputedStyle(gridWithAutoElement, '').getPropertyValue('grid-def
inition-columns') is "first 0px" |
| 12 PASS window.getComputedStyle(gridWithAutoElement, '').getPropertyValue('grid-def
inition-rows') is "0px last" | 16 PASS window.getComputedStyle(gridWithAutoElement, '').getPropertyValue('grid-def
inition-rows') is "0px last" |
| 13 PASS window.getComputedStyle(gridWithAutoWithChildrenElement, '').getPropertyVal
ue('grid-definition-columns') is "first 77px" | 17 PASS window.getComputedStyle(gridWithAutoWithChildrenElement, '').getPropertyVal
ue('grid-definition-columns') is "first 77px" |
| 14 PASS window.getComputedStyle(gridWithAutoWithChildrenElement, '').getPropertyVal
ue('grid-definition-rows') is "22px last" | 18 PASS window.getComputedStyle(gridWithAutoWithChildrenElement, '').getPropertyVal
ue('grid-definition-rows') is "22px last" |
| 15 PASS window.getComputedStyle(gridWithMinMax, '').getPropertyValue('grid-definiti
on-columns') is "first 80px" | 19 PASS window.getComputedStyle(gridWithMinMax, '').getPropertyValue('grid-definiti
on-columns') is "first 80px" |
| 16 PASS window.getComputedStyle(gridWithMinMax, '').getPropertyValue('grid-definiti
on-rows') is "300px last" | 20 PASS window.getComputedStyle(gridWithMinMax, '').getPropertyValue('grid-definiti
on-rows') is "300px last" |
| 17 PASS window.getComputedStyle(gridWithFixedMultiple, '').getPropertyValue('grid-d
efinition-columns') is "first nav 10px last" | 21 PASS window.getComputedStyle(gridWithFixedMultiple, '').getPropertyValue('grid-d
efinition-columns') is "first nav 10px last" |
| 18 PASS window.getComputedStyle(gridWithFixedMultiple, '').getPropertyValue('grid-d
efinition-rows') is "first nav 15px last" | 22 PASS window.getComputedStyle(gridWithFixedMultiple, '').getPropertyValue('grid-d
efinition-rows') is "first nav 15px last" |
| 19 PASS window.getComputedStyle(gridWithPercentageSameStringMultipleTimes, '').getP
ropertyValue('grid-definition-columns') is "first nav 80px nav 120px last" | 23 PASS window.getComputedStyle(gridWithPercentageSameStringMultipleTimes, '').getP
ropertyValue('grid-definition-columns') is "first nav 80px nav 120px last" |
| 20 PASS window.getComputedStyle(gridWithPercentageSameStringMultipleTimes, '').getP
ropertyValue('grid-definition-rows') is "first nav2 150px nav2 450px last" | 24 PASS window.getComputedStyle(gridWithPercentageSameStringMultipleTimes, '').getP
ropertyValue('grid-definition-rows') is "first nav2 150px nav2 450px last" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 75 |
| 72 Test getting and setting invalid grid-definition-columns and grid-definition-row
s through JS | 76 Test getting and setting invalid grid-definition-columns and grid-definition-row
s through JS |
| 73 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-columns') i
s "none" | 77 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-columns') i
s "none" |
| 74 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-rows') is "
none" | 78 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-rows') is "
none" |
| 75 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-columns') i
s "none" | 79 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-columns') i
s "none" |
| 76 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-rows') is "
none" | 80 PASS getComputedStyle(element, '').getPropertyValue('grid-definition-rows') is "
none" |
| 77 PASS successfullyParsed is true | 81 PASS successfullyParsed is true |
| 78 | 82 |
| 79 TEST COMPLETE | 83 TEST COMPLETE |
| 80 | 84 |
| OLD | NEW |