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

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

Issue 60633008: [CSS Grid Layout] Percentages of indefinite sizes should compute to "auto" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use isIntrinsicOrAuto() + tests updated Created 7 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 {
7 display: grid;
8 background-color: grey;
9 width: -webkit-min-content;
10 height: auto;
11 }
12
6 .inline-grid { 13 .inline-grid {
7 display: inline-grid; 14 display: inline-grid;
8 background-color: grey; 15 background-color: grey;
9 } 16 }
10 17
11 .firstRowFirstColumn { 18 .firstRowFirstColumn {
12 background-color: blue; 19 background-color: blue;
13 grid-column: 1; 20 grid-column: 1;
14 grid-row: 1; 21 grid-row: 1;
15 } 22 }
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 -webkit-writing-mode: vertical-lr; 161 -webkit-writing-mode: vertical-lr;
155 } 162 }
156 163
157 .horizontalBT { 164 .horizontalBT {
158 -webkit-writing-mode: horizontal-bt; 165 -webkit-writing-mode: horizontal-bt;
159 } 166 }
160 167
161 .directionRTL { 168 .directionRTL {
162 direction: rtl; 169 direction: rtl;
163 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698