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

Side by Side Diff: LayoutTests/fast/multicol/progression-reverse-overflow.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 width: 100px; 3 width: 100px;
4 height: 100px; 4 height: 100px;
5 -webkit-column-width: 100px; 5 -webkit-column-width: 100px;
6 -webkit-column-gap: 0; 6 -webkit-column-gap: 0;
7 -webkit-column-fill: auto;
7 -webkit-column-progression: reverse; 8 -webkit-column-progression: reverse;
9 column-width: 100px;
10 column-gap: 0;
11 column-fill: auto;
8 overflow: hidden; 12 overflow: hidden;
9 } 13 }
10 14
11 div.test > div { 15 div.test > div {
12 -webkit-logical-height: 100%; 16 -webkit-logical-height: 100%;
13 } 17 }
14 18
15 div.test > div:first-child { 19 div.test > div:first-child {
16 background-color: red; 20 background-color: red;
17 } 21 }
(...skipping 25 matching lines...) Expand all
43 for (var i = 0; i < tests.length; ++i) { 47 for (var i = 0; i < tests.length; ++i) {
44 var test = tests[i]; 48 var test = tests[i];
45 if (test.scrollLeft) 49 if (test.scrollLeft)
46 test.scrollLeft = 0; 50 test.scrollLeft = 0;
47 else 51 else
48 test.scrollLeft = test.scrollWidth; 52 test.scrollLeft = test.scrollWidth;
49 if (test.scrollTop) 53 if (test.scrollTop)
50 test.scrollTop = 0; 54 test.scrollTop = 0;
51 } 55 }
52 </script> 56 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698