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

Side by Side Diff: LayoutTests/fast/alignment/parse-justify-items-expected.txt

Issue 333423005: [CSS Grid Layout] Implement 'justify-items' parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Suggested changes and additional test cases. Created 6 years, 6 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
(Empty)
1 Test that setting and getting justify-items works as expected
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Test getting justify-items set through CSS
7 PASS getComputedStyle(justifyItemsBaseline, '').getPropertyValue('justify-items' ) is 'baseline'
8 PASS getComputedStyle(justifyItemsStretch, '').getPropertyValue('justify-items') is 'stretch'
9 PASS getComputedStyle(justifyItemsStart, '').getPropertyValue('justify-items') i s 'start'
10 PASS getComputedStyle(justifyItemsEnd, '').getPropertyValue('justify-items') is 'end'
11 PASS getComputedStyle(justifyItemsCenter, '').getPropertyValue('justify-items') is 'center'
12 PASS getComputedStyle(justifyItemsItemsEnd, '').getPropertyValue('justify-items' ) is 'self-end'
13 PASS getComputedStyle(justifyItemsItemsStart, '').getPropertyValue('justify-item s') is 'self-start'
14 PASS getComputedStyle(justifyItemsLeft, '').getPropertyValue('justify-items') is 'left'
15 PASS getComputedStyle(justifyItemsRight, '').getPropertyValue('justify-items') i s 'right'
16 PASS getComputedStyle(justifyItemsEndTrue, '').getPropertyValue('justify-items') is 'end true'
17 PASS getComputedStyle(justifyItemsCenterTrue, '').getPropertyValue('justify-item s') is 'center true'
18 PASS getComputedStyle(justifyItemsItemsEndSafe, '').getPropertyValue('justify-it ems') is 'self-end safe'
19 PASS getComputedStyle(justifyItemsItemsStartSafe, '').getPropertyValue('justify- items') is 'self-start safe'
20 PASS getComputedStyle(justifyItemsRightSafe, '').getPropertyValue('justify-items ') is 'right safe'
21 PASS getComputedStyle(justifyItemsLeftTrue, '').getPropertyValue('justify-items' ) is 'left true'
22 PASS getComputedStyle(justifyItemsLegacyLeft, '').getPropertyValue('justify-item s') is 'legacy left'
23 PASS getComputedStyle(justifyItemsLegacyCenter, '').getPropertyValue('justify-it ems') is 'legacy center'
24 PASS getComputedStyle(justifyItemsLegacyRight, '').getPropertyValue('justify-ite ms') is 'legacy right'
25
26 Test initial value of justify-items through JS
27 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
28
29 Test getting and setting justify-items through JS
30 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'center'
31 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'start t rue'
32 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
33
34 Test bad combinaisons of justify-items
35 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
36 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
37 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
38 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
39 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
40 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
41 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
42 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
43 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
44 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
45 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
46 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
47 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
48 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
49 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
50 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
51 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
52 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
53 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
54 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
55 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
56 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
57
58 Test the value 'initial'
59 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'center'
60 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'auto'
61
62 Test the value 'inherit'
63 PASS getComputedStyle(parentElement, '').getPropertyValue('justify-items') is 'e nd'
64 PASS getComputedStyle(element, '').getPropertyValue('justify-items') is 'end'
65 PASS successfullyParsed is true
66
67 TEST COMPLETE
68
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698