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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-with-percent-height-in-auto-height-grid-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 <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 .gridMinMaxMinMax { 5 .gridMinMaxMinMax {
10 grid-template-columns: 50px 100px; 6 grid-template-columns: 50px 100px;
11 grid-template-rows: minmax(10px, min-content) minmax(50px, 100px); 7 grid-template-rows: minmax(10px, min-content) minmax(50px, 100px);
12 } 8 }
13 9
14 .gridAutoAuto { 10 .gridAutoAuto {
15 grid-template-columns: 50px 100px; 11 grid-template-columns: 50px 100px;
16 grid-template-rows: auto auto; 12 grid-template-rows: auto auto;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 <div class="grid gridAutoAuto"> 48 <div class="grid gridAutoAuto">
53 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="50" da ta-expected-height="30">XXXXX XXXXXX</div> 49 <div class="sizedToGridArea firstRowFirstColumn" data-expected-width="50" da ta-expected-height="30">XXXXX XXXXXX</div>
54 <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="100" data-expected-height="30">XXXXX XXXXX XXXXXX</div> 50 <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="100" data-expected-height="30">XXXXX XXXXX XXXXXX</div>
55 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="50" d ata-expected-height="40">XXXXX XXXXXX</div> 51 <div class="sizedToGridArea secondRowFirstColumn" data-expected-width="50" d ata-expected-height="40">XXXXX XXXXXX</div>
56 <div class="sizedToGridArea secondRowSecondColumn" data-expected-width="100" data-expected-height="40">XXXXX XXXXX XXXXX XXXXXX</div> 52 <div class="sizedToGridArea secondRowSecondColumn" data-expected-width="100" data-expected-height="40">XXXXX XXXXX XXXXX XXXXXX</div>
57 </div> 53 </div>
58 </div> 54 </div>
59 55
60 </body> 56 </body>
61 </html> 57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698