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

Side by Side Diff: LayoutTests/fast/css-grid-layout/percent-intrinsic-track-breadth-crash.html

Issue 914993003: [CSS Grid Layout] Determine definite/indefinite size properly in nested grids (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 <html>
3 <head>
4 <link href="resources/grid.css" rel="stylesheet">
5 <style>
6 .intrinsic {
7 grid-template-rows: max-content;
8 grid-template-columns: max-content;
9 height: 500px;
10 width: 500px;
11 }
12
13 .percentage {
14 grid-template-rows: 100%;
15 grid-template-columns: 100%;
16 height: 100%;
17 width: 100%;
18 }
19 </style>
20 <script type="text/javascript">
21 if (window.testRunner)
22 testRunner.dumpAsText();
23 </script>
24 </head>
25 <body>
26 <p>This test checks that percentage track breadths of intrinsic size do not crash on debug.</p>
27 <div class="grid intrinsic">
28 <div class="grid percentage">
Julien - ping for review 2015/02/18 22:13:16 I assume we were also not resolving this correctly
Manuel Rego 2015/02/25 16:57:59 Yeah, I've changed to a check-layout test and real
29 </div>
30 </div>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698