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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.html

Issue 1979603002: [css-grid] Fix behavior of flexible track breadths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: New version fixing comment Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.html
index 931f2c48911094fd5e4e77cb47686bbb2bdd01f1..759731e36dfdbd1154880ee90e0b4fdb5beaa1a0 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.html
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-preferred-logical-widths.html
@@ -35,7 +35,7 @@
}
.gridFixedFraction {
- grid-template-columns: minmax(10px, 1fr) minmax(2fr, 20px);
+ grid-template-columns: minmax(10px, 1fr) minmax(20px, 2fr);
grid-template-rows: 10px;
}
@@ -103,7 +103,7 @@
<div class="firstRowSecondColumn">XX XX XX</div>
</div>
-<div class="grid gridFixedFraction min-content" data-expected-height="10" data-expected-width="10"></div>
+<div class="grid gridFixedFraction min-content" data-expected-height="10" data-expected-width="30"></div>
</div>
<div class="grid gridFixedFraction max-content" data-expected-height="10" data-expected-width="30"></div>
@@ -213,7 +213,7 @@
<div class="min-content grid gridFixedFraction minWidth70" data-expected-height="10" data-expected-width="70"></div>
-<div class="min-content grid gridFixedFraction maxWidth20" data-expected-height="10" data-expected-width="10"></div>
+<div class="min-content grid gridFixedFraction maxWidth20" data-expected-height="10" data-expected-width="20"></div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698