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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css

Issue 842193004: [css-grid] Handle alignment with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@orthogonal-flows
Patch Set: Applied additional changes. Created 4 years, 5 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 /* align-self */ 1 /* align-self */
2 .alignSelfAuto { align-self: auto; } 2 .alignSelfAuto { align-self: auto; }
3 .alignSelfStretch { align-self: stretch; } 3 .alignSelfStretch { align-self: stretch; }
4 .alignSelfStart { align-self: start; } 4 .alignSelfStart { align-self: start; }
5 .alignSelfEnd { align-self: end; } 5 .alignSelfEnd { align-self: end; }
6 .alignSelfCenter { align-self: center; } 6 .alignSelfCenter { align-self: center; }
7 .alignSelfRight { align-self: right; } 7 .alignSelfRight { align-self: right; }
8 .alignSelfLeft { align-self: left; } 8 .alignSelfLeft { align-self: left; }
9 9
10 .alignSelfFlexStart { align-self: flex-start; } 10 .alignSelfFlexStart { align-self: flex-start; }
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 .itemsSelfEnd { 124 .itemsSelfEnd {
125 align-items: self-end; 125 align-items: self-end;
126 justify-items: self-end; 126 justify-items: self-end;
127 } 127 }
128 128
129 /* Both align-self and justify-self */ 129 /* Both align-self and justify-self */
130 .selfStretch { 130 .selfStretch {
131 align-self: stretch; 131 align-self: stretch;
132 justify-self: stretch; 132 justify-self: stretch;
133 } 133 }
134 .selfStart {
135 align-self: start;
136 justify-self: start;
137 }
138 .selfEnd {
139 align-self: end;
140 justify-self: end;
141 }
142 .selfCenter {
143 align-self: center;
144 justify-self: center;
145 }
146 .selfRight {
147 align-self: right;
148 justify-self: right;
149 }
150 .selfLeft {
151 align-self: left;
152 justify-self: left;
153 }
154 .selfSelfStart {
155 align-self: self-start;
156 justify-self: self-start;
157 }
158 .selfSelfEnd {
159 align-self: self-end;
160 justify-self: self-end;
161 }
134 162
135 /* Both align-content and justify-content */ 163 /* Both align-content and justify-content */
136 .contentStart { 164 .contentStart {
137 align-content: start; 165 align-content: start;
138 justify-content: start; 166 justify-content: start;
139 } 167 }
140 .contentCenter { 168 .contentCenter {
141 align-content: center; 169 align-content: center;
142 justify-content: center; 170 justify-content: center;
143 } 171 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 206
179 .contentSpaceEvenly { 207 .contentSpaceEvenly {
180 justify-content: space-evenly; 208 justify-content: space-evenly;
181 align-content: space-evenly; 209 align-content: space-evenly;
182 } 210 }
183 211
184 .contentStretch { 212 .contentStretch {
185 justify-content: stretch; 213 justify-content: stretch;
186 align-content: stretch; 214 align-content: stretch;
187 } 215 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698