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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html

Issue 180523004: [CSS Grid Layout] Remove legacy WebKitCSSGridLayoutEnabled flag from the Layout Tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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>
5 if (window.testRunner)
6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
7 </script>
8 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
9 <style> 5 <style>
10 .gridWithoutRepeat { 6 .gridWithoutRepeat {
11 grid-template-columns: (a) 50px (b) 100px (c) 200px (d); 7 grid-template-columns: (a) 50px (b) 100px (c) 200px (d);
12 grid-template-rows: (e) 50px (f) 100px (g) 200px (h); 8 grid-template-rows: (e) 50px (f) 100px (g) 200px (h);
13 } 9 }
14 10
15 .gridWithRepeat { 11 .gridWithRepeat {
16 grid-template-columns: (b) 50px (b) 100px (b) 200px (b); 12 grid-template-columns: (b) 50px (b) 100px (b) 200px (b);
17 grid-template-rows: (g) 50px (g) 100px (g) 200px (g); 13 grid-template-rows: (g) 50px (g) 100px (g) 200px (g);
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 </div> 148 </div>
153 149
154 <div style="position: relative"> 150 <div style="position: relative">
155 <div class="grid gridWithRepeat"> 151 <div class="grid gridWithRepeat">
156 <div class="sizedToGridArea gridItemSpan2GNegativeG" data-offset-x="0" d ata-offset-y="50" data-expected-width="50" data-expected-height="300"></div> 152 <div class="sizedToGridArea gridItemSpan2GNegativeG" data-offset-x="0" d ata-offset-y="50" data-expected-width="50" data-expected-height="300"></div>
157 </div> 153 </div>
158 </div> 154 </div>
159 155
160 </body> 156 </body>
161 </html> 157 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698