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

Side by Side Diff: LayoutTests/fast/css-grid-layout/flex-content-resolution-rows.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 <script>
4 if (window.testRunner)
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
6 </script>
7 <link href="resources/grid.css" rel="stylesheet"> 3 <link href="resources/grid.css" rel="stylesheet">
8 <style> 4 <style>
9 .gridMinFlexContent { 5 .gridMinFlexContent {
10 grid-template-columns: 50px; 6 grid-template-columns: 50px;
11 grid-template-rows: minmax(1fr, 50px); 7 grid-template-rows: minmax(1fr, 50px);
12 } 8 }
13 .gridMaxFlexContent { 9 .gridMaxFlexContent {
14 grid-template-columns: 50px; 10 grid-template-columns: 50px;
15 grid-template-rows: minmax(30px, 2fr); 11 grid-template-rows: minmax(30px, 2fr);
16 } 12 }
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 168
173 <div style="width: 10px; height: 120px;"> 169 <div style="width: 10px; height: 120px;">
174 <div class="grid gridTwoDoubleMaxFlexContent"> 170 <div class="grid gridTwoDoubleMaxFlexContent">
175 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="50 " data-expected-height="10"></div> 171 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="50 " data-expected-height="10"></div>
176 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="5 0" data-expected-height="40"></div> 172 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="5 0" data-expected-height="40"></div>
177 </div> 173 </div>
178 </div> 174 </div>
179 175
180 </body> 176 </body>
181 </html> 177 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698