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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-indefinite-size-auto-repeat-crash.html

Issue 2135703002: [css-grid] Fix crash when using auto repeat for indefinite widths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplest approach Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-indefinite-size-auto-repeat-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <link href="resources/grid.css" rel="stylesheet">
3 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel =stylesheet>
4 <link href="../css-intrinsic-dimensions/resources/height-keyword-classes.css" re l=stylesheet>
5 <style>
6 .autoFill { grid: repeat(auto-fill, 100px) / repeat(auto-fill, 100px); }
7 .autoFit { grid: repeat(auto-fit, 100px) / repeat(auto-fit, 100px); }
8 </style>
9
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 </script>
14
15 <div class="grid autoFill"></div>
16 <div class="grid autoFit"></div>
17
18 <div class="grid autoFill min-content"></div>
19 <div class="grid autoFit min-content"></div>
20
21 <div class="grid autoFill max-content"></div>
22 <div class="grid autoFit max-content"></div>
23
24 <div class="grid autoFill min-width-min-content min-height-min-content"></div>
25 <div class="grid autoFit min-width-min-content min-height-min-content"></div>
26
27 <div class="grid autoFill min-width-max-content min-height-max-content"></div>
28 <div class="grid autoFit min-width-max-content min-height-max-content"></div>
29
30 <p>This test checks that the computation of auto repeat tracks works when the gr id container width is indefinite.</p>
31 <p>This test has PASSED if it didn't CRASH.</p>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-indefinite-size-auto-repeat-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698