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

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

Issue 17090005: [CSS Grid Layout] Implement 'justify-self' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed a bug in parseColor uncovered by the patch Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 Test that setting and getting justify-self 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-self set through CSS
7 PASS getComputedStyle(justifySelfBaseline, '').getPropertyValue('justify-self') is 'baseline'
8 PASS getComputedStyle(justifySelfStretch, '').getPropertyValue('justify-self') i s 'stretch'
9 PASS getComputedStyle(justifySelfStart, '').getPropertyValue('justify-self') is 'start'
10 PASS getComputedStyle(justifySelfEnd, '').getPropertyValue('justify-self') is 'e nd'
11 PASS getComputedStyle(justifySelfCenter, '').getPropertyValue('justify-self') is 'center'
12 PASS getComputedStyle(justifySelfSelfEnd, '').getPropertyValue('justify-self') i s 'self-end'
13 PASS getComputedStyle(justifySelfSelfStart, '').getPropertyValue('justify-self') is 'self-start'
14 PASS getComputedStyle(justifySelfLeft, '').getPropertyValue('justify-self') is ' left'
15 PASS getComputedStyle(justifySelfRight, '').getPropertyValue('justify-self') is 'right'
16 PASS getComputedStyle(justifySelfEndTrue, '').getPropertyValue('justify-self') i s 'end true'
17 PASS getComputedStyle(justifySelfCenterTrue, '').getPropertyValue('justify-self' ) is 'center true'
18 PASS getComputedStyle(justifySelfSelfEndSafe, '').getPropertyValue('justify-self ') is 'self-end safe'
19 PASS getComputedStyle(justifySelfSelfStartSafe, '').getPropertyValue('justify-se lf') is 'self-start safe'
20 PASS getComputedStyle(justifySelfRightSafe, '').getPropertyValue('justify-self') is 'right safe'
21 PASS getComputedStyle(justifySelfLeftTrue, '').getPropertyValue('justify-self') is 'left true'
22
23 Test initial value of justify-self through JS
24 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
25
26 Test getting and setting justify-self through JS
27 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'center'
28 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'start tr ue'
29 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
30
31 Test bad combinaisons of justify-self
32 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
33 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
34 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
35 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
36 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
37 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
38 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
39 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
40 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
41 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
42 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
43 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
44 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
45 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
46 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
47 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
48 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
49 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
50
51 Test the value 'initial'
52 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'center'
53 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'auto'
54
55 Test the value 'inherit'
56 PASS getComputedStyle(parentElement, '').getPropertyValue('justify-self') is 'en d'
57 PASS getComputedStyle(element, '').getPropertyValue('justify-self') is 'end'
58 PASS successfullyParsed is true
59
60 TEST COMPLETE
61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698