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

Side by Side Diff: LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only.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 .grid { 5 .grid {
10 width: 100px; 6 width: 100px;
11 height: 200px; 7 height: 200px;
12 } 8 }
13 9
14 #grid1 { 10 #grid1 {
15 grid-template-columns: 30px; 11 grid-template-columns: 30px;
16 grid-template-rows: minmax(20px, 80px) 160px; 12 grid-template-rows: minmax(20px, 80px) 160px;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 <div class="secondRowFirstColumn" data-expected-height="30" data-expected-wi dth="10"></div> 84 <div class="secondRowFirstColumn" data-expected-height="30" data-expected-wi dth="10"></div>
89 </div> 85 </div>
90 86
91 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200 "> 87 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200 ">
92 <div class="firstRowFirstColumn" data-expected-height="90" data-expected-wid th="30"></div> 88 <div class="firstRowFirstColumn" data-expected-height="90" data-expected-wid th="30"></div>
93 <div class="secondRowFirstColumn" data-expected-height="110" data-expected-w idth="30"></div> 89 <div class="secondRowFirstColumn" data-expected-height="110" data-expected-w idth="30"></div>
94 </div> 90 </div>
95 91
96 </body> 92 </body>
97 </html> 93 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698