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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.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 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel =stylesheet> 5 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel =stylesheet>
10 <style> 6 <style>
11 .gridMinContentFixed { 7 .gridMinContentFixed {
12 grid-template-columns: minmax(min-content, 40px) minmax(min-content, 40px); 8 grid-template-columns: minmax(min-content, 40px) minmax(min-content, 40px);
13 grid-template-rows: 10px; 9 grid-template-rows: 10px;
14 font: 10px/1 Ahem; 10 font: 10px/1 Ahem;
15 } 11 }
16 12
17 .gridFixedMinContent { 13 .gridFixedMinContent {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 <div class="firstRowFirstColumn">XX XX XX</div> 127 <div class="firstRowFirstColumn">XX XX XX</div>
132 <div class="firstRowBothColumn">XX XX XX</div> 128 <div class="firstRowBothColumn">XX XX XX</div>
133 </div> 129 </div>
134 <div class="grid gridAutoContent max-content" data-expected-height="10" data-exp ected-width="120"> 130 <div class="grid gridAutoContent max-content" data-expected-height="10" data-exp ected-width="120">
135 <div class="firstRowBothColumn">XX XX XX</div> 131 <div class="firstRowBothColumn">XX XX XX</div>
136 <div class="firstRowSecondColumn">XX XX XX</div> 132 <div class="firstRowSecondColumn">XX XX XX</div>
137 </div> 133 </div>
138 134
139 </body> 135 </body>
140 </html> 136 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698