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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-margin-resolution.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 <script src="../../resources/check-layout.js"></script> 3 <script src="../../resources/check-layout.js"></script>
4 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
5 <style> 5 <style>
6 .grid { 6 .grid {
7 grid-definition-rows: 100px 100px; 7 grid-template-rows: 100px 100px;
8 grid-definition-columns: 100px 100px; 8 grid-template-columns: 100px 100px;
9 width: 200px; 9 width: 200px;
10 } 10 }
11 11
12 .gridItem { 12 .gridItem {
13 margin: 20px 30px 40px 50px; 13 margin: 20px 30px 40px 50px;
14 width: 20px; 14 width: 20px;
15 height: 40px; 15 height: 40px;
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 <div class="grid horizontalBT directionRTL" data-expected-width="200" data-e xpected-height="200"> 88 <div class="grid horizontalBT directionRTL" data-expected-width="200" data-e xpected-height="200">
89 <div class="gridItem firstRowFirstColumn" data-offset-x="30" data-offset -y="120" data-expected-width="20" data-expected-height="40"></div> 89 <div class="gridItem firstRowFirstColumn" data-offset-x="30" data-offset -y="120" data-expected-width="20" data-expected-height="40"></div>
90 <div class="gridItem firstRowSecondColumn" data-offset-x="130" data-offs et-y="120" data-expected-width="20" data-expected-height="40"></div> 90 <div class="gridItem firstRowSecondColumn" data-offset-x="130" data-offs et-y="120" data-expected-width="20" data-expected-height="40"></div>
91 <div class="gridItem secondRowFirstColumn" data-offset-x="30" data-offse t-y="20" data-expected-width="20" data-expected-height="40"></div> 91 <div class="gridItem secondRowFirstColumn" data-offset-x="30" data-offse t-y="20" data-expected-width="20" data-expected-height="40"></div>
92 <div class="gridItem secondRowSecondColumn" data-offset-x="130" data-off set-y="20" data-expected-width="20" data-expected-height="40"></div> 92 <div class="gridItem secondRowSecondColumn" data-offset-x="130" data-off set-y="20" data-expected-width="20" data-expected-height="40"></div>
93 </div> 93 </div>
94 </div> 94 </div>
95 95
96 </body> 96 </body>
97 </html> 97 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698