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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-stretching-must-not-depend-on-previous-layouts.html

Issue 2919473002: [css-grid] Apply flow-aware logic for margins during stretching (Closed)
Patch Set: Created 3 years, 6 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 <link rel="match" href="grid-item-stretching-must-not-depend-on-previous-layouts -expected.html">
3 <style>
4 .grid {
5 display: inline-grid;
6 border: solid thick;
7 grid: 100px / 100px;
8 align-items: start;
9 }
10 .item {
11 background: magenta;
12 writing-mode: vertical-lr;
13 margin-right: 25px;
14 }
15 </style>
16 <p>Check whether stretching logic is not affected by multiple layouts becuase of the grid item's override height.<br>The test passes if there is a margin-right of 25px.</p>
17 <div class="grid">
18 <div class="item">item</div>
19 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698