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

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 and applied the suggested changes. Created 4 years, 9 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 .inline-grid { 6 .inline-grid {
7 display: inline-grid; 7 display: inline-grid;
8 background-color: grey; 8 background-color: grey;
9 } 9 }
10 10
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 262
263 .verticalRL { 263 .verticalRL {
264 writing-mode: vertical-rl; 264 writing-mode: vertical-rl;
265 -webkit-writing-mode: vertical-rl; 265 -webkit-writing-mode: vertical-rl;
266 } 266 }
267 .verticalLR { 267 .verticalLR {
268 writing-mode: vertical-lr; 268 writing-mode: vertical-lr;
269 -webkit-writing-mode: vertical-lr; 269 -webkit-writing-mode: vertical-lr;
270 } 270 }
271 .horizontalTB { 271 .horizontalTB {
272 -webkit-writing-mode: horizontal-tb;
272 writing-mode: horizontal-tb; 273 writing-mode: horizontal-tb;
273 -webkit-writing-mode: horizontal-tb;
274 }
275 .horizontalBT {
276 writing-mode: horizontal-bt;
277 -webkit-writing-mode: horizontal-bt;
278 } 274 }
279 .directionRTL { 275 .directionRTL {
280 direction: rtl; 276 direction: rtl;
281 } 277 }
282 .directionLTR { 278 .directionLTR {
283 direction: ltr; 279 direction: ltr;
284 } 280 }
285 281
286 282
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698