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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement.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 .grid { 5 .grid {
6 grid-definition-rows: 10px 20px; 6 grid-template-rows: 10px 20px;
7 grid-definition-columns: 30px 40px; 7 grid-template-columns: 30px 40px;
8 grid-auto-flow: row; 8 grid-auto-flow: row;
9 } 9 }
10 10
11 .bothNamedGridLineRow { 11 .bothNamedGridLineRow {
12 grid-row: nonExistentArea / nonExistentArea; 12 grid-row: nonExistentArea / nonExistentArea;
13 grid-column: 1; 13 grid-column: 1;
14 } 14 }
15 15
16 .bothNamedGridLineColumn { 16 .bothNamedGridLineColumn {
17 grid-row: 1; 17 grid-row: 1;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 <div style="position: relative"> 57 <div style="position: relative">
58 <div class="grid"> 58 <div class="grid">
59 <div class="sizedToGridArea firstRowFirstColumn" data-offset-x="0" data- offset-y="0" data-expected-width="30" data-expected-height="10"></div> 59 <div class="sizedToGridArea firstRowFirstColumn" data-offset-x="0" data- offset-y="0" data-expected-width="30" data-expected-height="10"></div>
60 <div class="sizedToGridArea namedGridLineSpanColumn" data-offset-x="30" data-offset-y="0" data-expected-width="40" data-expected-height="10"></div> 60 <div class="sizedToGridArea namedGridLineSpanColumn" data-offset-x="30" data-offset-y="0" data-expected-width="40" data-expected-height="10"></div>
61 </div> 61 </div>
62 </div> 62 </div>
63 63
64 </body> 64 </body>
65 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698