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

Side by Side Diff: LayoutTests/fast/css-grid-layout/flex-column-use-available-width.html

Issue 146833018: [CSS Grid Layout] Fix missing layout in flexible and content sized columns (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 type="text/css">
6 .grid {
7 grid-definition-columns: 1fr;
8 }
9 </style>
10 </head>
11 <body>
12 <p>Flex column should use all the available width and you should not see the grid background (grey at the end).</p>
13 <div class="grid">
14 <div class="firstRowFirstColumn">grid item</div>
15 </div>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698