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

Side by Side Diff: LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-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: minmax(20px, 80px) 60px; 11 grid-template-columns: minmax(20px, 80px) 60px;
16 grid-template-rows: 30px; 12 grid-template-rows: 30px;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 <div class="firstRowSecondColumn" data-expected-height="100" data-expected-w idth="30"></div> 85 <div class="firstRowSecondColumn" data-expected-height="100" data-expected-w idth="30"></div>
90 </div> 86 </div>
91 87
92 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200 "> 88 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200 ">
93 <div class="firstRowFirstColumn" data-expected-height="30" data-expected-wid th="40"></div> 89 <div class="firstRowFirstColumn" data-expected-height="30" data-expected-wid th="40"></div>
94 <div class="firstRowSecondColumn" data-expected-height="30" data-expected-wi dth="60"></div> 90 <div class="firstRowSecondColumn" data-expected-height="30" data-expected-wi dth="60"></div>
95 </div> 91 </div>
96 92
97 </body> 93 </body>
98 </html> 94 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698