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

Side by Side Diff: third_party/WebKit/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: Patch rebased. Created 5 years, 1 month 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 } 272 }
273 273
274 .verticalLR { 274 .verticalLR {
275 -webkit-writing-mode: vertical-lr; 275 -webkit-writing-mode: vertical-lr;
276 } 276 }
277 277
278 .horizontalBT { 278 .horizontalBT {
279 -webkit-writing-mode: horizontal-bt; 279 -webkit-writing-mode: horizontal-bt;
280 } 280 }
281 281
282 .horizontalTB {
283 -webkit-writing-mode: horizontal-tb;
cbiesinger 2015/11/13 03:25:48 fyi you don't need the -webkit-prefix anymore
284 }
285
282 .directionRTL { 286 .directionRTL {
283 direction: rtl; 287 direction: rtl;
284 } 288 }
285 289
286 .directionLTR { 290 .directionLTR {
287 direction: ltr; 291 direction: ltr;
288 } 292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698