OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |