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

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: New approach (Step3) - Assumed row track's breadth for intrinsic size computation. Created 5 years 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 } 268 }
269 269
270 .verticalRL { 270 .verticalRL {
271 -webkit-writing-mode: vertical-rl; 271 -webkit-writing-mode: vertical-rl;
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 {
279 -webkit-writing-mode: horizontal-bt;
280 }
281
282 .horizontalTB {
283 -webkit-writing-mode: horizontal-tb;
284 }
285
278 .directionRTL { 286 .directionRTL {
279 direction: rtl; 287 direction: rtl;
280 } 288 }
281 289
282 .directionLTR { 290 .directionLTR {
283 direction: ltr; 291 direction: ltr;
284 } 292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698