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

Side by Side Diff: LayoutTests/fast/multicol/progression-reverse.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 div.test { 2 div.test {
3 border: solid silver; 3 border: solid silver;
4 -webkit-border-before-width: 2px; 4 -webkit-border-before-width: 2px;
5 -webkit-border-end-width: 4px; 5 -webkit-border-end-width: 4px;
6 -webkit-border-after-width: 1px; 6 -webkit-border-after-width: 1px;
7 -webkit-border-start-width: 3px; 7 -webkit-border-start-width: 3px;
8 -webkit-logical-width: 64px; 8 -webkit-logical-width: 64px;
9 -webkit-logical-height: 32px; 9 -webkit-logical-height: 32px;
10 -webkit-column-count: 2;
10 -webkit-column-gap: 4px; 11 -webkit-column-gap: 4px;
11 -webkit-column-count: 2;
12 -webkit-column-rule: 2px solid orange; 12 -webkit-column-rule: 2px solid orange;
13 -webkit-column-fill: auto;
13 -webkit-column-progression: reverse; 14 -webkit-column-progression: reverse;
15 column-count: 2;
16 column-gap: 4px;
17 column-rule: 2px solid orange;
18 column-fill: auto;
14 } 19 }
15 20
16 .writing-mode-lr div.test { 21 .writing-mode-lr div.test {
17 -webkit-writing-mode: vertical-lr; 22 -webkit-writing-mode: vertical-lr;
18 } 23 }
19 24
20 .writing-mode-rl div.test { 25 .writing-mode-rl div.test {
21 -webkit-writing-mode: vertical-rl; 26 -webkit-writing-mode: vertical-rl;
22 } 27 }
23 28
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 <div></div> 115 <div></div>
111 <div></div> 116 <div></div>
112 </div> 117 </div>
113 <div class="test axis-vertical"> 118 <div class="test axis-vertical">
114 <div></div> 119 <div></div>
115 <div></div> 120 <div></div>
116 <div></div> 121 <div></div>
117 <div></div> 122 <div></div>
118 </div> 123 </div>
119 </div> 124 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698