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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/absolute-positioning-definite-sizes.html

Issue 1317643005: [css-grid] Fix track sizing algo w/ size restrictions and intrinsic sizes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing. Removed unused params Created 5 years, 1 month 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/absolute-positioning-definite-sizes-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 <style>
4 .grid {
5 grid-template: 1fr / 50px 1fr;
6
7 position: absolute;
8 left: 50px;
9 top: 50px;
10
11 width: 200px;
12 height: 200px;
13
14 border: 7px solid #ccc;
15 font: 10px/1 Ahem;
16 }
17
18 .row1 {
19 grid-row-start: 1;
20 background-color: yellow;
21 }
22
23 .row2 {
24 grid-row-start: 2;
25 background-color: cyan;
26 }
27 </style>
28
29 <p>Items should extend to fill the width of the absolutely positioned grid conta iner.</p>
30 <script src="../../resources/check-layout.js"></script>
31 <body onload="checkLayout('.grid')">
32
33 <div class="grid">
34 <div class="row1" data-expected-height="50" data-expected-width="200">XXX X </div>
35 <div class="row2" data-expected-height="150" data-expected-width="200">XX XX X XX</div>
36 </div>
37
38 </body>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/absolute-positioning-definite-sizes-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698