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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-element-repeat-get-set-expected.txt

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 Test that setting and getting grid-definition-columns and grid-definition-rows w ith repeat() works as expected 1 Test that setting and getting grid-template-columns and grid-template-rows with repeat() 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-definition-columns and grid-definition-rows set through CSS 6 Test getting grid-template-columns and grid-template-rows set through CSS
7 PASS window.getComputedStyle(singleSingleTrackRepeatWithSize, '').getPropertyVal ue('grid-definition-columns') is "120px" 7 PASS window.getComputedStyle(singleSingleTrackRepeatWithSize, '').getPropertyVal ue('grid-template-columns') is "120px"
8 PASS window.getComputedStyle(singleSingleTrackRepeatWithSize, '').getPropertyVal ue('grid-definition-rows') is "18px" 8 PASS window.getComputedStyle(singleSingleTrackRepeatWithSize, '').getPropertyVal ue('grid-template-rows') is "18px"
9 PASS window.getComputedStyle(singleSingleTrackRepeatWithoutSize, '').getProperty Value('grid-definition-columns') is "0px" 9 PASS window.getComputedStyle(singleSingleTrackRepeatWithoutSize, '').getProperty Value('grid-template-columns') is "0px"
10 PASS window.getComputedStyle(singleSingleTrackRepeatWithoutSize, '').getProperty Value('grid-definition-rows') is "18px" 10 PASS window.getComputedStyle(singleSingleTrackRepeatWithoutSize, '').getProperty Value('grid-template-rows') is "18px"
11 PASS window.getComputedStyle(twoSingleTrackRepeat, '').getPropertyValue('grid-de finition-columns') is "400px 400px" 11 PASS window.getComputedStyle(twoSingleTrackRepeat, '').getPropertyValue('grid-te mplate-columns') is "400px 400px"
12 PASS window.getComputedStyle(twoSingleTrackRepeat, '').getPropertyValue('grid-de finition-rows') is "0px 0px" 12 PASS window.getComputedStyle(twoSingleTrackRepeat, '').getPropertyValue('grid-te mplate-rows') is "0px 0px"
13 PASS window.getComputedStyle(twoSingleTrackRepeatWithChildren, '').getPropertyVa lue('grid-definition-columns') is "400px 400px" 13 PASS window.getComputedStyle(twoSingleTrackRepeatWithChildren, '').getPropertyVa lue('grid-template-columns') is "400px 400px"
14 PASS window.getComputedStyle(twoSingleTrackRepeatWithChildren, '').getPropertyVa lue('grid-definition-rows') is "44px 77px" 14 PASS window.getComputedStyle(twoSingleTrackRepeatWithChildren, '').getPropertyVa lue('grid-template-rows') is "44px 77px"
15 PASS window.getComputedStyle(twoDoubleTrackRepeat, '').getPropertyValue('grid-de finition-columns') is "33px 120px 0px 120px" 15 PASS window.getComputedStyle(twoDoubleTrackRepeat, '').getPropertyValue('grid-te mplate-columns') is "33px 120px 0px 120px"
16 PASS window.getComputedStyle(twoDoubleTrackRepeat, '').getPropertyValue('grid-de finition-rows') is "10px 77px 10px 0px" 16 PASS window.getComputedStyle(twoDoubleTrackRepeat, '').getPropertyValue('grid-te mplate-rows') is "10px 77px 10px 0px"
17 PASS window.getComputedStyle(twoDoubleTrackWithNamedGridLineRepeat, '').getPrope rtyValue('grid-definition-columns') is "33px (middle) 250px (end) 0px (middle) 2 50px (end)" 17 PASS window.getComputedStyle(twoDoubleTrackWithNamedGridLineRepeat, '').getPrope rtyValue('grid-template-columns') is "33px (middle) 250px (end) 0px (middle) 250 px (end)"
18 PASS window.getComputedStyle(twoDoubleTrackWithNamedGridLineRepeat, '').getPrope rtyValue('grid-definition-rows') is "10px (start) 77px (end) 10px (start) 0px (e nd)" 18 PASS window.getComputedStyle(twoDoubleTrackWithNamedGridLineRepeat, '').getPrope rtyValue('grid-template-rows') is "10px (start) 77px (end) 10px (start) 0px (end )"
19 PASS window.getComputedStyle(twoDoubleTrackWithTrailingNamedGridLineRepeat, ''). getPropertyValue('grid-definition-columns') is "(before) 0px (before) 0px" 19 PASS window.getComputedStyle(twoDoubleTrackWithTrailingNamedGridLineRepeat, ''). getPropertyValue('grid-template-columns') is "(before) 0px (before) 0px"
20 PASS window.getComputedStyle(twoDoubleTrackWithTrailingNamedGridLineRepeat, ''). getPropertyValue('grid-definition-rows') is "(before) 10px (before) 10px" 20 PASS window.getComputedStyle(twoDoubleTrackWithTrailingNamedGridLineRepeat, ''). getPropertyValue('grid-template-rows') is "(before) 10px (before) 10px"
21 PASS window.getComputedStyle(trailingNamedGridLineRepeat, '').getPropertyValue(' grid-definition-columns') is "250px (end)" 21 PASS window.getComputedStyle(trailingNamedGridLineRepeat, '').getPropertyValue(' grid-template-columns') is "250px (end)"
22 PASS window.getComputedStyle(trailingNamedGridLineRepeat, '').getPropertyValue(' grid-definition-rows') is "10px (end)" 22 PASS window.getComputedStyle(trailingNamedGridLineRepeat, '').getPropertyValue(' grid-template-rows') is "10px (end)"
23 PASS window.getComputedStyle(leadingNamedGridLineRepeat, '').getPropertyValue('g rid-definition-columns') is "(start) 250px 250px" 23 PASS window.getComputedStyle(leadingNamedGridLineRepeat, '').getPropertyValue('g rid-template-columns') is "(start) 250px 250px"
24 PASS window.getComputedStyle(leadingNamedGridLineRepeat, '').getPropertyValue('g rid-definition-rows') is "(start) 10px 10px" 24 PASS window.getComputedStyle(leadingNamedGridLineRepeat, '').getPropertyValue('g rid-template-rows') is "(start) 10px 10px"
25 PASS window.getComputedStyle(mixRepeatAfterNonRepeat, '').getPropertyValue('grid -definition-columns') is "(start) 140px 250px 250px" 25 PASS window.getComputedStyle(mixRepeatAfterNonRepeat, '').getPropertyValue('grid -template-columns') is "(start) 140px 250px 250px"
26 PASS window.getComputedStyle(mixRepeatAfterNonRepeat, '').getPropertyValue('grid -definition-rows') is "44px 10px 10px" 26 PASS window.getComputedStyle(mixRepeatAfterNonRepeat, '').getPropertyValue('grid -template-rows') is "44px 10px 10px"
27 PASS window.getComputedStyle(mixNonRepeatAfterRepeat, '').getPropertyValue('grid -definition-columns') is "250px 250px 120px (last)" 27 PASS window.getComputedStyle(mixNonRepeatAfterRepeat, '').getPropertyValue('grid -template-columns') is "250px 250px 120px (last)"
28 PASS window.getComputedStyle(mixNonRepeatAfterRepeat, '').getPropertyValue('grid -definition-rows') is "10px 10px (end) 0px" 28 PASS window.getComputedStyle(mixNonRepeatAfterRepeat, '').getPropertyValue('grid -template-rows') is "10px 10px (end) 0px"
29 29
30 Test invalid repeat syntax. 30 Test invalid repeat syntax.
31 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 31 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
32 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 32 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
33 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 33 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
34 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 34 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
35 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 35 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
36 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 36 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
37 PASS window.getComputedStyle(element, '').getPropertyValue('grid-definition-colu mns') is "none" 37 PASS window.getComputedStyle(element, '').getPropertyValue('grid-template-column s') is "none"
38 PASS successfullyParsed is true 38 PASS successfullyParsed is true
39 39
40 TEST COMPLETE 40 TEST COMPLETE
41 41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698