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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/columns-shorthand-parsing.html

Issue 16943008: Column balancing support in the region based multicol implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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 <html> 1 <html>
2 <head> 2 <head>
3 <script>
4 if (window.internals)
5 internals.settings.setRegionBasedColumnsEnabled(true);
6 </script>
3 <style> 7 <style>
4 div { 8 div {
5 -webkit-columns: 2; 9 -webkit-columns: 2;
6 -moz-column-count: 2; 10 -moz-column-count: 2;
7 } 11 }
8 </style> 12 </style>
9 </head> 13 </head>
10 <body> 14 <body>
11 <div> 15 <div>
12 This content should be split into two columns. 16 This content should be split into two columns.
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 This content should be split into two columns. 99 This content should be split into two columns.
96 This content should be split into two columns. 100 This content should be split into two columns.
97 This content should be split into two columns. 101 This content should be split into two columns.
98 This content should be split into two columns. 102 This content should be split into two columns.
99 This content should be split into two columns. 103 This content should be split into two columns.
100 This content should be split into two columns. 104 This content should be split into two columns.
101 This content should be split into two columns. 105 This content should be split into two columns.
102 </div> 106 </div>
103 </body> 107 </body>
104 </html> 108 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698