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

Side by Side Diff: LayoutTests/fast/multicol/progression-reverse-overflow-expected.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; 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 column-width: 100px;
8 column-gap: 0;
9 column-fill: auto;
7 overflow: hidden; 10 overflow: hidden;
8 } 11 }
9 12
10 div.test > div { 13 div.test > div {
11 -webkit-logical-height: 100%; 14 -webkit-logical-height: 100%;
12 } 15 }
13 16
14 div.test > div:first-child { 17 div.test > div:first-child {
15 background-color: red; 18 background-color: red;
16 } 19 }
(...skipping 27 matching lines...) Expand all
44 if (test.scrollLeft) 47 if (test.scrollLeft)
45 test.scrollLeft = 0; 48 test.scrollLeft = 0;
46 else 49 else
47 test.scrollLeft = test.scrollWidth; 50 test.scrollLeft = test.scrollWidth;
48 if (test.scrollTop) 51 if (test.scrollTop)
49 test.scrollTop = 0; 52 test.scrollTop = 0;
50 else 53 else
51 test.scrollTop = test.scrollHeight; 54 test.scrollTop = test.scrollHeight;
52 } 55 }
53 </script> 56 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/progression-reverse-overflow.html ('k') | LayoutTests/fast/multicol/scrolling-overflow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698