OLD | NEW |
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 Loading... |
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> |
OLD | NEW |