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

Side by Side Diff: LayoutTests/fast/multicol/pageLogicalOffset-vertical.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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
1 <style> 1 <style>
2 .container { 2 .container {
3 background-color: lightblue; 3 background-color: lightblue;
4 height: 200px; 4 height: 200px;
5 width: 100px; 5 width: 100px;
6 -webkit-columns: 2; 6 -webkit-columns: 2;
7 -webkit-column-gap: 0; 7 -webkit-column-gap: 0;
8 -webkit-column-fill: auto;
9 columns: 2;
10 column-gap: 0;
11 column-fill: auto;
8 margin: 8px; 12 margin: 8px;
9 } 13 }
10 14
11 .margin-before { 15 .margin-before {
12 -webkit-margin-before: 30px; 16 -webkit-margin-before: 30px;
13 width: 60px; 17 width: 60px;
14 } 18 }
15 19
16 .test { 20 .test {
17 font: 20px ahem; 21 font: 20px ahem;
18 background-color: yellow; 22 background-color: yellow;
19 } 23 }
20 </style> 24 </style>
21 <div class="container" style="-webkit-writing-mode: vertical-rl;"> 25 <div class="container" style="-webkit-writing-mode: vertical-rl;">
22 <div> 26 <div>
23 <div class="margin-before"></div> 27 <div class="margin-before"></div>
24 <div class="test">Test</div> 28 <div class="test">Test</div>
25 </div> 29 </div>
26 </div> 30 </div>
27 31
28 <div class="container" style="-webkit-writing-mode: vertical-lr;"> 32 <div class="container" style="-webkit-writing-mode: vertical-lr;">
29 <div> 33 <div>
30 <div class="margin-before"></div> 34 <div class="margin-before"></div>
31 <div class="test">Test</div> 35 <div class="test">Test</div>
32 </div> 36 </div>
33 </div> 37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698