| OLD | NEW |
| 1 This test checks that grid-template-areas is properly parsed. | 1 This test checks that grid-template-areas is properly parsed. |
| 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-areas set through CSS. | 6 Test getting grid-template-areas set through CSS. |
| 7 PASS window.getComputedStyle(gridWithDefaultTemplate).getPropertyValue('grid-tem
plate-areas') is "none" | 7 PASS window.getComputedStyle(gridWithDefaultTemplate).getPropertyValue('grid-tem
plate-areas') is "none" |
| 8 PASS window.getComputedStyle(gridWithSingleStringTemplate).getPropertyValue('gri
d-template-areas') is "\"area\"" | 8 PASS window.getComputedStyle(gridWithSingleStringTemplate).getPropertyValue('gri
d-template-areas') is "\"area\"" |
| 9 PASS window.getComputedStyle(gridWithTwoColumnsTemplate).getPropertyValue('grid-
template-areas') is "\"first second\"" | 9 PASS window.getComputedStyle(gridWithTwoColumnsTemplate).getPropertyValue('grid-
template-areas') is "\"first second\"" |
| 10 PASS window.getComputedStyle(gridWithTwoRowsTemplate).getPropertyValue('grid-tem
plate-areas') is "\"first\" \"second\"" | 10 PASS window.getComputedStyle(gridWithTwoRowsTemplate).getPropertyValue('grid-tem
plate-areas') is "\"first\" \"second\"" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is
"none" | 22 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is
"none" |
| 23 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is
"none" | 23 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is
"none" |
| 24 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is
"none" | 24 PASS window.getComputedStyle(element).getPropertyValue('grid-template-areas') is
"none" |
| 25 | 25 |
| 26 FIXME: We currently don't validate that the named grid areas are <indent>. | 26 FIXME: We currently don't validate that the named grid areas are <indent>. |
| 27 FAIL window.getComputedStyle(element).getPropertyValue('grid-template-areas') sh
ould be none. Was "nav-up". | 27 FAIL window.getComputedStyle(element).getPropertyValue('grid-template-areas') sh
ould be none. Was "nav-up". |
| 28 PASS successfullyParsed is true | 28 PASS successfullyParsed is true |
| 29 | 29 |
| 30 TEST COMPLETE | 30 TEST COMPLETE |
| 31 | 31 |
| OLD | NEW |