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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-update.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 <head> 3 <head>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); 6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
7 </script> 7 </script>
8 <link href="resources/grid.css" rel="stylesheet"> 8 <link href="resources/grid.css" rel="stylesheet">
9 <style> 9 <style>
10 .grid { 10 .grid {
11 grid-definition-rows: 20px; 11 grid-template-rows: 20px;
12 grid-definition-columns: 10px; 12 grid-template-columns: 10px;
13 grid-auto-rows: 30px; 13 grid-auto-rows: 30px;
14 grid-auto-columns: 50px; 14 grid-auto-columns: 50px;
15 font: 10px/1 Ahem; 15 font: 10px/1 Ahem;
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
19 <script src="../../resources/check-layout.js"></script> 19 <script src="../../resources/check-layout.js"></script>
20 <script> 20 <script>
21 function updateAndCheck(gridElementID, defaultSizing, gridItemSize) 21 function updateAndCheck(gridElementID, defaultSizing, gridItemSize)
22 { 22 {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 </div> 83 </div>
84 84
85 <div class="constrainedContainer" style="position: relative;"> 85 <div class="constrainedContainer" style="position: relative;">
86 <div class="grid" id="constrainedGridUndefinedHeight"> 86 <div class="grid" id="constrainedGridUndefinedHeight">
87 <div class="sizedToGridArea secondRowSecondColumn" data-offset-x="10" da ta-offset-y="20" data-expected-width="50" data-expected-height="30">XXXXX XXXXXX </div> 87 <div class="sizedToGridArea secondRowSecondColumn" data-offset-x="10" da ta-offset-y="20" data-expected-width="50" data-expected-height="30">XXXXX XXXXXX </div>
88 </div> 88 </div>
89 </div> 89 </div>
90 90
91 </body> 91 </body>
92 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698