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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .inlineGrid {
4 display: inline-grid;
5 grid-template-rows: minmax(100%, max-content);
6 }
7 </style>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 </script>
12 <body>
13 <p>The test works as expected if it does not crash.</p>
14 <div class="inlineGrid"></div>
15 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698