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

Side by Side Diff: LayoutTests/fast/css-grid-layout/percent-intrinsic-track-breadth.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: Rename isRenderView() calls to isLayoutView() Created 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/percent-intrinsic-track-breadth-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 <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 </head>
21 <script src="../../resources/check-layout.js"></script>
22 <body onload="checkLayout('.percentage');">
23 <p>This test checks that percentage track breadths of intrinsic size are tre ated as auto.</p>
24 <div class="grid intrinsic">
25 <div class="grid percentage">
26 <div class="sizedToGridArea" data-expected-width="50" data-expected- height="10">XXXXX</div>
27 </div>
28 </div>
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/percent-intrinsic-track-breadth-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698