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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/alignment/parse-align-self-expected.txt

Issue 1497403002: [css-align] Overflow alignment value 'true' renamed to 'unsafe' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed repaint tests issues. Created 5 years 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 align-self works as expected 1 Test that setting and getting align-self 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 align-self set through CSS 6 Test getting align-self set through CSS
7 PASS getComputedStyle(alignSelfBaseline, '').getPropertyValue('align-self') is ' baseline' 7 PASS getComputedStyle(alignSelfBaseline, '').getPropertyValue('align-self') is ' baseline'
8 PASS getComputedStyle(alignSelfLastBaseline, '').getPropertyValue('align-self') is 'last-baseline' 8 PASS getComputedStyle(alignSelfLastBaseline, '').getPropertyValue('align-self') is 'last-baseline'
9 PASS getComputedStyle(alignSelfStretch, '').getPropertyValue('align-self') is 's tretch' 9 PASS getComputedStyle(alignSelfStretch, '').getPropertyValue('align-self') is 's tretch'
10 PASS getComputedStyle(alignSelfStart, '').getPropertyValue('align-self') is 'sta rt' 10 PASS getComputedStyle(alignSelfStart, '').getPropertyValue('align-self') is 'sta rt'
11 PASS getComputedStyle(alignSelfEnd, '').getPropertyValue('align-self') is 'end' 11 PASS getComputedStyle(alignSelfEnd, '').getPropertyValue('align-self') is 'end'
12 PASS getComputedStyle(alignSelfCenter, '').getPropertyValue('align-self') is 'ce nter' 12 PASS getComputedStyle(alignSelfCenter, '').getPropertyValue('align-self') is 'ce nter'
13 PASS getComputedStyle(alignSelfSelfEnd, '').getPropertyValue('align-self') is 's elf-end' 13 PASS getComputedStyle(alignSelfSelfEnd, '').getPropertyValue('align-self') is 's elf-end'
14 PASS getComputedStyle(alignSelfSelfStart, '').getPropertyValue('align-self') is 'self-start' 14 PASS getComputedStyle(alignSelfSelfStart, '').getPropertyValue('align-self') is 'self-start'
15 PASS getComputedStyle(alignSelfLeft, '').getPropertyValue('align-self') is 'left ' 15 PASS getComputedStyle(alignSelfLeft, '').getPropertyValue('align-self') is 'left '
16 PASS getComputedStyle(alignSelfRight, '').getPropertyValue('align-self') is 'rig ht' 16 PASS getComputedStyle(alignSelfRight, '').getPropertyValue('align-self') is 'rig ht'
17 PASS getComputedStyle(alignSelfFlexStart, '').getPropertyValue('align-self') is 'flex-start' 17 PASS getComputedStyle(alignSelfFlexStart, '').getPropertyValue('align-self') is 'flex-start'
18 PASS getComputedStyle(alignSelfFlexEnd, '').getPropertyValue('align-self') is 'f lex-end' 18 PASS getComputedStyle(alignSelfFlexEnd, '').getPropertyValue('align-self') is 'f lex-end'
19 PASS getComputedStyle(alignSelfEndTrue, '').getPropertyValue('align-self') is 'e nd true' 19 PASS getComputedStyle(alignSelfEndUnsafe, '').getPropertyValue('align-self') is 'end unsafe'
20 PASS getComputedStyle(alignSelfCenterTrue, '').getPropertyValue('align-self') is 'center true' 20 PASS getComputedStyle(alignSelfCenterUnsafe, '').getPropertyValue('align-self') is 'center unsafe'
21 PASS getComputedStyle(alignSelfSelfEndSafe, '').getPropertyValue('align-self') i s 'self-end safe' 21 PASS getComputedStyle(alignSelfSelfEndSafe, '').getPropertyValue('align-self') i s 'self-end safe'
22 PASS getComputedStyle(alignSelfSelfStartSafe, '').getPropertyValue('align-self') is 'self-start safe' 22 PASS getComputedStyle(alignSelfSelfStartSafe, '').getPropertyValue('align-self') is 'self-start safe'
23 PASS getComputedStyle(alignSelfRightSafe, '').getPropertyValue('align-self') is 'right safe' 23 PASS getComputedStyle(alignSelfRightSafe, '').getPropertyValue('align-self') is 'right safe'
24 PASS getComputedStyle(alignSelfLeftTrue, '').getPropertyValue('align-self') is ' left true' 24 PASS getComputedStyle(alignSelfLeftUnsafe, '').getPropertyValue('align-self') is 'left unsafe'
25 PASS getComputedStyle(alignSelfFlexStartTrue, '').getPropertyValue('align-self') is 'flex-start true' 25 PASS getComputedStyle(alignSelfFlexStartUnsafe, '').getPropertyValue('align-self ') is 'flex-start unsafe'
26 PASS getComputedStyle(alignSelfFlexEndSafe, '').getPropertyValue('align-self') i s 'flex-end safe' 26 PASS getComputedStyle(alignSelfFlexEndSafe, '').getPropertyValue('align-self') i s 'flex-end safe'
27 27
28 Test initial value of align-self through JS 28 Test initial value of align-self through JS
29 PASS getComputedStyle(element, '').getPropertyValue('align-self') is 'start' 29 PASS getComputedStyle(element, '').getPropertyValue('align-self') is 'start'
30 30
31 Test getting and setting align-self through JS 31 Test getting and setting align-self through JS
32 PASS element.style.alignSelf is "center" 32 PASS element.style.alignSelf is "center"
33 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter" 33 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter"
34 PASS element.style.alignSelf is "start true" 34 PASS element.style.alignSelf is "start unsafe"
35 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sta rt true" 35 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sta rt unsafe"
36 PASS element.style.alignSelf is "flex-end safe" 36 PASS element.style.alignSelf is "flex-end safe"
37 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "fle x-end safe" 37 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "fle x-end safe"
38 PASS element.style.alignSelf is "right" 38 PASS element.style.alignSelf is "right"
39 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht" 39 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht"
40 PASS element.style.alignSelf is "center" 40 PASS element.style.alignSelf is "center"
41 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter" 41 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter"
42 PASS element.style.alignSelf is "self-start" 42 PASS element.style.alignSelf is "self-start"
43 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sel f-start" 43 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sel f-start"
44 PASS element.style.alignSelf is "auto" 44 PASS element.style.alignSelf is "auto"
45 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sta rt" 45 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sta rt"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 PASS element.style.alignSelf is "initial" 106 PASS element.style.alignSelf is "initial"
107 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sta rt" 107 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "sta rt"
108 108
109 Test the value 'initial' for grid containers 109 Test the value 'initial' for grid containers
110 PASS element.style.alignSelf is "left safe" 110 PASS element.style.alignSelf is "left safe"
111 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t safe" 111 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t safe"
112 PASS element.style.alignSelf is "initial" 112 PASS element.style.alignSelf is "initial"
113 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch" 113 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch"
114 114
115 Test the value 'initial' for flex containers 115 Test the value 'initial' for flex containers
116 PASS element.style.alignSelf is "right true" 116 PASS element.style.alignSelf is "right unsafe"
117 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht true" 117 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht unsafe"
118 PASS element.style.alignSelf is "initial" 118 PASS element.style.alignSelf is "initial"
119 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch" 119 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch"
120 120
121 Test the value 'initial' for positioned elements 121 Test the value 'initial' for positioned elements
122 PASS element.style.alignSelf is "left" 122 PASS element.style.alignSelf is "left"
123 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t" 123 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t"
124 PASS element.style.alignSelf is "initial" 124 PASS element.style.alignSelf is "initial"
125 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch" 125 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch"
126 126
127 Test the value 'initial' for positioned elements in grid containers 127 Test the value 'initial' for positioned elements in grid containers
(...skipping 10 matching lines...) Expand all
138 138
139 Test the value 'inherit' 139 Test the value 'inherit'
140 PASS element.style.alignSelf is "end" 140 PASS element.style.alignSelf is "end"
141 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "end " 141 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "end "
142 PASS element.style.alignSelf is "inherit" 142 PASS element.style.alignSelf is "inherit"
143 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "end " 143 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "end "
144 PASS element.style.alignSelf is "left safe" 144 PASS element.style.alignSelf is "left safe"
145 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t safe" 145 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t safe"
146 PASS element.style.alignSelf is "inherit" 146 PASS element.style.alignSelf is "inherit"
147 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t safe" 147 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "lef t safe"
148 PASS element.style.alignSelf is "center true" 148 PASS element.style.alignSelf is "center unsafe"
149 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter true" 149 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter unsafe"
150 PASS element.style.alignSelf is "inherit" 150 PASS element.style.alignSelf is "inherit"
151 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter true" 151 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter unsafe"
152 PASS successfullyParsed is true 152 PASS successfullyParsed is true
153 153
154 TEST COMPLETE 154 TEST COMPLETE
155 155
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698