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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-crash-huge-margins-and-min-height-max-content.html

Issue 2744593002: [css-grid] Protect against negative values in applyStretchAlignmentToChildIfNeeded() (Closed)
Patch Set: Simplify test to make issue even clearer Created 3 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
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <style>
7 #grid {
8 display: grid;
9 grid: 100px / 100px;
10 }
11 #item {
12 padding: 10px;
13 margin: 50px 0px;
14 min-height: max-content;
15 }
16 </style>
17 <p>crbug.com/697317 - height &gt;= 0 in LayoutBox.cpp</p>
18 <p>This test has PASSED if it does not CRASH.</p>
19 <div id="grid">
20 <div id="item"></a>
21 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-crash-huge-margins-and-min-height-max-content-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698