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

Side by Side Diff: LayoutTests/css3/flexbox/flexbox-with-multi-column-property.html

Issue 488183003: Multi-column properties in a flexbox hide its content (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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>
rune 2014/08/22 13:25:09 Leave html/body elements out
harpreet.sk 2014/08/22 14:31:03 Done.
3 <link href="resources/flexbox.css" rel="stylesheet">
4 <style>
5 .flexbox, .inline-flexbox {
6 -webkit-column-count: 2;
7 -webkit-column-gap: 100px;
8 width: 20em;
9 }
10 </style>
11 <body>
12 <div class="flexbox">
13 AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
14 </div>
15
16 <div class="inline-flexbox">
17 AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
18 </div>
19 </body>
20 </html>
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698