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

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

Issue 1625993004: [css-align] Avoid the style Reattach whenever align-items changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applied suggested changes. Created 4 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 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'
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 Test the value 'initial' for flex containers 115 Test the value 'initial' for flex containers
116 PASS element.style.alignSelf is "right unsafe" 116 PASS element.style.alignSelf is "right unsafe"
117 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht unsafe" 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 "sta rt"
126 126
127 Test the value 'initial' for positioned elements in grid containers 127 Test the value 'initial' for positioned elements in grid containers
128 PASS element.style.alignSelf is "right" 128 PASS element.style.alignSelf is "right"
129 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht" 129 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "rig ht"
130 PASS element.style.alignSelf is "initial" 130 PASS element.style.alignSelf is "initial"
131 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch" 131 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "str etch"
132 132
133 Test the value 'initial' for positioned elements in grid containers 133 Test the value 'initial' for positioned elements in grid containers
134 PASS element.style.alignSelf is "end" 134 PASS element.style.alignSelf is "end"
135 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "end " 135 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "end "
(...skipping 10 matching lines...) Expand all
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 unsafe" 148 PASS element.style.alignSelf is "center unsafe"
149 PASS window.getComputedStyle(element, '').getPropertyValue('align-self') is "cen ter unsafe" 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 unsafe" 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