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

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

Issue 815833005: [css-grid] Handle min-content/max-content with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Solving positioning issues. Created 5 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
OLDNEW
1 .grid { 1 .grid {
2 display: grid; 2 display: grid;
3 background-color: grey; 3 background-color: grey;
4 } 4 }
5 5
6 .indefiniteSizeGrid { 6 .indefiniteSizeGrid {
7 display: grid; 7 display: grid;
8 background-color: grey; 8 background-color: grey;
9 width: -webkit-min-content; 9 width: -webkit-min-content;
10 height: auto; 10 height: auto;
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 } 220 }
221 221
222 .verticalLR { 222 .verticalLR {
223 -webkit-writing-mode: vertical-lr; 223 -webkit-writing-mode: vertical-lr;
224 } 224 }
225 225
226 .horizontalBT { 226 .horizontalBT {
227 -webkit-writing-mode: horizontal-bt; 227 -webkit-writing-mode: horizontal-bt;
228 } 228 }
229 229
230 .horizontalTB {
231 -webkit-writing-mode: horizontal-tb;
232 }
233
230 .directionRTL { 234 .directionRTL {
231 direction: rtl; 235 direction: rtl;
232 } 236 }
233 237
234 .directionLTR { 238 .directionLTR {
235 direction: ltr; 239 direction: ltr;
236 } 240 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698