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

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: 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 }
10 #item {
11 padding: 0.5px;
12 margin: 100000000px 0px;
13 min-height: max-content;
14 }
15 </style>
16 <p>crbug.com/697317 - height &gt;= 0 in LayoutBox.cpp</p>
17 <p>This test has PASSED if it does not CRASH.</p>
18 <div id="grid">
19 <div id="item"></a>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698