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

Side by Side Diff: LayoutTests/fast/multicol/vertical-rl/rules-with-border-before.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Put changes to problematic files (for the bots) back in. 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 div.test { 2 div.test {
3 width: 100px;
4 height: 100px;
3 -webkit-writing-mode: vertical-rl; 5 -webkit-writing-mode: vertical-rl;
4 -webkit-columns: 2; 6 -webkit-columns: 2;
5 width: 100px; 7 -webkit-column-rule: 50px solid orange;
6 -webkit-column-rule-style: solid;
7 -webkit-column-rule-width: 50px;
8 -webkit-column-rule-color: orange;
9 -webkit-column-gap: 50px; 8 -webkit-column-gap: 50px;
10 height: 100px; 9 columns: 2;
10 column-rule: 50px solid orange;
11 column-gap: 50px;
12 column-fill: auto;
11 } 13 }
12 14
13 div.test div { width: 200px; } 15 div.test div { width: 200px; }
14 </style> 16 </style>
15 <div class="test" style="-webkit-border-before: 50px solid blue;"><div></div></d iv> 17 <div class="test" style="-webkit-border-before: 50px solid blue;"><div></div></d iv>
16 <div class="test" style="-webkit-border-after: 50px solid blue;"><div></div></di v> 18 <div class="test" style="-webkit-border-after: 50px solid blue;"><div></div></di v>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698