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

Side by Side Diff: LayoutTests/fast/css-grid-layout/place-cell-by-index.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> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); 5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
6 </script> 6 </script>
7 <link href="resources/grid.css" rel="stylesheet"> 7 <link href="resources/grid.css" rel="stylesheet">
8 <style> 8 <style>
9 .grid { 9 .grid {
10 grid-definition-columns: 50px 60px; 10 grid-template-columns: 50px 60px;
11 grid-definition-rows: 20px 30px; 11 grid-template-rows: 20px 30px;
12 max-width: 110px; 12 max-width: 110px;
13 } 13 }
14 14
15 .firstRowFirstColumn { 15 .firstRowFirstColumn {
16 width: 10px; 16 width: 10px;
17 height: 15px; 17 height: 15px;
18 } 18 }
19 19
20 .firstRowSecondColumn { 20 .firstRowSecondColumn {
21 width: 10px; 21 width: 10px;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <div class="grid" style="-webkit-writing-mode: vertical-lr; margin-bottom: 60px; " data-expected-width="50" data-expected-height="110"> 70 <div class="grid" style="-webkit-writing-mode: vertical-lr; margin-bottom: 60px; " data-expected-width="50" data-expected-height="110">
71 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0"></div> 71 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0"></div>
72 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="50"></div > 72 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="50"></div >
73 <div class="secondRowFirstColumn" data-offset-x="20" data-offset-y="0"></div > 73 <div class="secondRowFirstColumn" data-offset-x="20" data-offset-y="0"></div >
74 <div class="secondRowSecondColumn" data-offset-x="20" data-offset-y="50"></d iv> 74 <div class="secondRowSecondColumn" data-offset-x="20" data-offset-y="50"></d iv>
75 </div> 75 </div>
76 </div> 76 </div>
77 77
78 </body> 78 </body>
79 </html> 79 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698