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

Unified Diff: LayoutTests/fast/css-grid-layout/percent-of-indefinite-track-size-in-minmax-crash.html

Issue 450093004: [CSS Grid Layout] Handle percentages of indefinite sizes in minmax() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing v3 Created 6 years, 3 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: LayoutTests/fast/css-grid-layout/percent-of-indefinite-track-size-in-minmax-crash.html
diff --git a/LayoutTests/fast/css-grid-layout/percent-of-indefinite-track-size-in-minmax-crash.html b/LayoutTests/fast/css-grid-layout/percent-of-indefinite-track-size-in-minmax-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..97d6d556b88fbff64f157ff70646690c0e5faa07
--- /dev/null
+++ b/LayoutTests/fast/css-grid-layout/percent-of-indefinite-track-size-in-minmax-crash.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<style>
+.inlineGrid {
+ display: inline-grid;
+ grid-template-rows: minmax(100%, max-content);
+}
+</style>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<body>
+ <p>The test works as expected if it does not crash.</p>
+ <div class="inlineGrid"></div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698