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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-element-min-max-height.html

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 .minHeightGrid { 5 .minHeightGrid {
6 min-height: 100px; 6 min-height: 100px;
7 grid-definition-columns: 40px; 7 grid-template-columns: 40px;
8 grid-definition-rows: 50px; 8 grid-template-rows: 50px;
9 } 9 }
10 .maxHeightGrid { 10 .maxHeightGrid {
11 max-height: 100px; 11 max-height: 100px;
12 grid-definition-columns: 40px; 12 grid-template-columns: 40px;
13 grid-definition-rows: 150px 50px; 13 grid-template-rows: 150px 50px;
14 } 14 }
15 15
16 .minHeightAutoGrid { 16 .minHeightAutoGrid {
17 min-height: 100px; 17 min-height: 100px;
18 } 18 }
19 19
20 .maxHeightAutoGrid { 20 .maxHeightAutoGrid {
21 max-height: 100px; 21 max-height: 100px;
22 } 22 }
23 </style> 23 </style>
(...skipping 25 matching lines...) Expand all
49 <div class="grid minHeightAutoGrid" data-expected-height="150" data-expected -width="1000"> 49 <div class="grid minHeightAutoGrid" data-expected-height="150" data-expected -width="1000">
50 <div style="height: 150px"></div> 50 <div style="height: 150px"></div>
51 </div> 51 </div>
52 <div class="grid maxHeightAutoGrid" data-expected-height="100" data-expected -width="1000"> 52 <div class="grid maxHeightAutoGrid" data-expected-height="100" data-expected -width="1000">
53 <div style="height: 300px"></div> 53 <div style="height: 300px"></div>
54 </div> 54 </div>
55 </div> 55 </div>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698