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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-auto-placement-automatic-span.html

Issue 1168453002: [CSSGridLayout] Switch from parentheses to brackets for grid line names (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing v2 Created 5 years, 6 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <link href="resources/grid.css" rel="stylesheet"> 3 <link href="resources/grid.css" rel="stylesheet">
4 <style> 4 <style>
5 .grid { 5 .grid {
6 grid-auto-rows: 50px; 6 grid-auto-rows: 50px;
7 grid-auto-columns: 100px; 7 grid-auto-columns: 100px;
8 } 8 }
9 9
10 .gridNamedGridLinesColumns { 10 .gridNamedGridLinesColumns {
11 grid-template-columns: 50px 100px (line) 200px (line); 11 grid-template-columns: 50px 100px [line] 200px [line];
12 } 12 }
13 13
14 .gridNamedGridLinesRows { 14 .gridNamedGridLinesRows {
15 grid-template-rows: 50px 100px (line) 200px (line); 15 grid-template-rows: 50px 100px [line] 200px [line];
16 } 16 }
17 17
18 .autoRowAutoColumnSpanning3 { 18 .autoRowAutoColumnSpanning3 {
19 background-color: teal; 19 background-color: teal;
20 grid-column: span 3; 20 grid-column: span 3;
21 grid-row: auto; 21 grid-row: auto;
22 } 22 }
23 23
24 .autoRowSpanning2AutoColumn { 24 .autoRowSpanning2AutoColumn {
25 background-color: aqua; 25 background-color: aqua;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 <div class="sizedToGridArea firstRowAutoColumn" data-offset-x="300" data -offset-y="0" data-expected-width="100" data-expected-height="50"></div> 185 <div class="sizedToGridArea firstRowAutoColumn" data-offset-x="300" data -offset-y="0" data-expected-width="100" data-expected-height="50"></div>
186 <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x ="200" data-offset-y="50" data-expected-width="100" data-expected-height="100">< /div> 186 <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x ="200" data-offset-y="50" data-expected-width="100" data-expected-height="100">< /div>
187 <div class="sizedToGridArea thirdRowAutoColumn" data-offset-x="200" data -offset-y="150" data-expected-width="100" data-expected-height="200"></div> 187 <div class="sizedToGridArea thirdRowAutoColumn" data-offset-x="200" data -offset-y="150" data-expected-width="100" data-expected-height="200"></div>
188 <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x ="300" data-offset-y="50" data-expected-width="100" data-expected-height="100">< /div> 188 <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x ="300" data-offset-y="50" data-expected-width="100" data-expected-height="100">< /div>
189 <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x ="300" data-offset-y="150" data-expected-width="100" data-expected-height="200"> </div--> 189 <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x ="300" data-offset-y="150" data-expected-width="100" data-expected-height="200"> </div-->
190 </div> 190 </div>
191 </div> 191 </div>
192 192
193 </body> 193 </body>
194 </html> 194 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698