Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-template-shorthand-get-set-expected.txt

Issue 1885913002: [css-grid] Use grid-template-areas to determine the explicit grid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 This test checks that the 'grid-template' shorthand is properly parsed and the l onghand properties correctly assigned. 1 This test checks that the 'grid-template' shorthand is properly parsed and the l onghand properties 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 grid-template-areas set through CSS. 6 Test getting grid-template-areas set through CSS.
7 PASS window.getComputedStyle(gridTemplateWithNone, '').getPropertyValue('grid-te mplate-columns') is "none" 7 PASS window.getComputedStyle(gridTemplateWithNone, '').getPropertyValue('grid-te mplate-columns') is "none"
8 PASS window.getComputedStyle(gridTemplateWithNone, '').getPropertyValue('grid-te mplate-rows') is "none" 8 PASS window.getComputedStyle(gridTemplateWithNone, '').getPropertyValue('grid-te mplate-rows') is "none"
9 PASS window.getComputedStyle(gridTemplateWithNone, '').getPropertyValue('grid-te mplate-areas') is "none" 9 PASS window.getComputedStyle(gridTemplateWithNone, '').getPropertyValue('grid-te mplate-areas') is "none"
10 PASS window.getComputedStyle(gridTemplateSimpleForm, '').getPropertyValue('grid- template-columns') is "10px" 10 PASS window.getComputedStyle(gridTemplateSimpleForm, '').getPropertyValue('grid- template-columns') is "10px"
(...skipping 10 matching lines...) Expand all
21 PASS window.getComputedStyle(gridTemplateSimpleFormWithNone, '').getPropertyValu e('grid-template-areas') is "none" 21 PASS window.getComputedStyle(gridTemplateSimpleFormWithNone, '').getPropertyValu e('grid-template-areas') is "none"
22 PASS window.getComputedStyle(gridTemplateComplexForm, '').getPropertyValue('grid -template-columns') is "10px" 22 PASS window.getComputedStyle(gridTemplateComplexForm, '').getPropertyValue('grid -template-columns') is "10px"
23 PASS window.getComputedStyle(gridTemplateComplexForm, '').getPropertyValue('grid -template-rows') is "15px" 23 PASS window.getComputedStyle(gridTemplateComplexForm, '').getPropertyValue('grid -template-rows') is "15px"
24 PASS window.getComputedStyle(gridTemplateComplexForm, '').getPropertyValue('grid -template-areas') is "\"a\"" 24 PASS window.getComputedStyle(gridTemplateComplexForm, '').getPropertyValue('grid -template-areas') is "\"a\""
25 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNames, '').getProper tyValue('grid-template-columns') is "10px" 25 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNames, '').getProper tyValue('grid-template-columns') is "10px"
26 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNames, '').getProper tyValue('grid-template-rows') is "[head] 15px [tail]" 26 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNames, '').getProper tyValue('grid-template-rows') is "[head] 15px [tail]"
27 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNames, '').getProper tyValue('grid-template-areas') is "\"a\"" 27 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNames, '').getProper tyValue('grid-template-areas') is "\"a\""
28 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesWithoutRowSize, '').getPropertyValue('grid-template-columns') is "10px" 28 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesWithoutRowSize, '').getPropertyValue('grid-template-columns') is "10px"
29 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesWithoutRowSize, '').getPropertyValue('grid-template-rows') is "[head] 0px [tail]" 29 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesWithoutRowSize, '').getPropertyValue('grid-template-rows') is "[head] 0px [tail]"
30 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesWithoutRowSize, '').getPropertyValue('grid-template-areas') is "\"a\"" 30 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesWithoutRowSize, '').getPropertyValue('grid-template-areas') is "\"a\""
31 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns , '').getPropertyValue('grid-template-columns') is "10px" 31 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns , '').getPropertyValue('grid-template-columns') is "10px 20px"
32 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns , '').getPropertyValue('grid-template-rows') is "[head] 15px [tail]" 32 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns , '').getPropertyValue('grid-template-rows') is "[head] 15px [tail]"
33 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns , '').getPropertyValue('grid-template-areas') is "\"a b\"" 33 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns , '').getPropertyValue('grid-template-areas') is "\"a b\""
34 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns WithoutRowSize, '').getPropertyValue('grid-template-columns') is "10px" 34 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns WithoutRowSize, '').getPropertyValue('grid-template-columns') is "10px 20px"
35 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns WithoutRowSize, '').getPropertyValue('grid-template-rows') is "[head] 0px [tail] " 35 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns WithoutRowSize, '').getPropertyValue('grid-template-rows') is "[head] 0px [tail] "
36 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns WithoutRowSize, '').getPropertyValue('grid-template-areas') is "\"a b\"" 36 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleColumns WithoutRowSize, '').getPropertyValue('grid-template-areas') is "\"a b\""
37 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRows, ' ').getPropertyValue('grid-template-columns') is "10px" 37 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRows, ' ').getPropertyValue('grid-template-columns') is "10px"
38 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRows, ' ').getPropertyValue('grid-template-rows') is "[head1] 15px [tail1 head2] 20px [t ail2]" 38 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRows, ' ').getPropertyValue('grid-template-rows') is "[head1] 15px [tail1 head2] 20px [t ail2]"
39 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRows, ' ').getPropertyValue('grid-template-areas') is "\"a\" \"b\"" 39 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRows, ' ').getPropertyValue('grid-template-areas') is "\"a\" \"b\""
40 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsWit houtRowsSizes, '').getPropertyValue('grid-template-columns') is "10px" 40 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsWit houtRowsSizes, '').getPropertyValue('grid-template-columns') is "10px"
41 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsWit houtRowsSizes, '').getPropertyValue('grid-template-rows') is "[head1] 0px [tail1 head2] 0px [tail2]" 41 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsWit houtRowsSizes, '').getPropertyValue('grid-template-rows') is "[head1] 0px [tail1 head2] 0px [tail2]"
42 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsWit houtRowsSizes, '').getPropertyValue('grid-template-areas') is "\"a\" \"b\"" 42 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsWit houtRowsSizes, '').getPropertyValue('grid-template-areas') is "\"a\" \"b\""
43 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsAnd Columns, '').getPropertyValue('grid-template-columns') is "[first] 10px [nav nav 2] 15px [nav nav2] 15px" 43 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsAnd Columns, '').getPropertyValue('grid-template-columns') is "[first] 10px [nav nav 2] 15px [nav nav2] 15px"
44 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsAnd Columns, '').getPropertyValue('grid-template-rows') is "100px [nav nav2] 25px [n av nav2] 25px [last]" 44 PASS window.getComputedStyle(gridTemplateComplexFormWithLineNamesMultipleRowsAnd Columns, '').getPropertyValue('grid-template-rows') is "100px [nav nav2] 25px [n av nav2] 25px [last]"
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none" 197 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
198 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "none" 198 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "none"
199 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-areas' ) is "none" 199 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-areas' ) is "none"
200 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none" 200 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
201 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "none" 201 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-rows') is "none"
202 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-areas' ) is "none" 202 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-areas' ) is "none"
203 PASS successfullyParsed is true 203 PASS successfullyParsed is true
204 204
205 TEST COMPLETE 205 TEST COMPLETE
206 206
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698