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

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

Issue 333563003: [CSS Grid Layout] Update grid-auto-flow to the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Attempt 2 to fix win_blink_rel Created 6 years, 5 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 grid-row: auto; 116 grid-row: auto;
117 } 117 }
118 118
119 .autoRowThirdColumn { 119 .autoRowThirdColumn {
120 background-color: magenta; 120 background-color: magenta;
121 grid-column: 3; 121 grid-column: 3;
122 grid-row: auto; 122 grid-row: auto;
123 } 123 }
124 124
125 /* Grid element flow. */ 125 /* Grid element flow. */
126 .gridAutoFlowNone { 126 .gridAutoFlowStack {
127 grid-auto-flow: none; 127 grid-auto-flow: stack;
128 } 128 }
129 129
130 .gridAutoFlowColumn { 130 .gridAutoFlowColumn {
131 grid-auto-flow: column; 131 grid-auto-flow: column;
132 } 132 }
133 133
134 .gridAutoFlowRow { 134 .gridAutoFlowRow {
135 grid-auto-flow: row; 135 grid-auto-flow: row;
136 } 136 }
137 137
(...skipping 23 matching lines...) Expand all
161 -webkit-writing-mode: vertical-lr; 161 -webkit-writing-mode: vertical-lr;
162 } 162 }
163 163
164 .horizontalBT { 164 .horizontalBT {
165 -webkit-writing-mode: horizontal-bt; 165 -webkit-writing-mode: horizontal-bt;
166 } 166 }
167 167
168 .directionRTL { 168 .directionRTL {
169 direction: rtl; 169 direction: rtl;
170 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698