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

Side by Side Diff: LayoutTests/fast/multicol/widows-and-orphans.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Testing Widows and Orphans</title> 4 <title>Testing Widows and Orphans</title>
5 <style> 5 <style>
6 body.hide-containers .container { 6 body.hide-containers .container {
7 display: none; 7 display: none;
8 } 8 }
9 9
10 .container { 10 .container {
11 width: 600px; 11 width: 600px;
12 height: 200px; 12 height: 200px;
13 -webkit-columns: 3; 13 -webkit-columns: 3;
14 -webkit-column-fill: auto;
15 columns: 3;
16 column-fill: auto;
14 line-height: 20px; /* 10 lines per page */ 17 line-height: 20px; /* 10 lines per page */
15 font-size: 16px; 18 font-size: 16px;
16 margin: 0 0 20px 0; 19 margin: 0 0 20px 0;
17 padding: 0; 20 padding: 0;
18 overflow: hidden; 21 overflow: hidden;
19 } 22 }
20 23
21 .block { 24 .block {
22 margin: 0 0 15px 0; 25 margin: 0 0 15px 0;
23 padding: 0; 26 padding: 0;
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 </script> 198 </script>
196 </head> 199 </head>
197 <body> 200 <body>
198 <p> 201 <p>
199 Testing widows and orphans. Any green lines 202 Testing widows and orphans. Any green lines
200 should be at the bottom of pages/columns, and any red lines 203 should be at the bottom of pages/columns, and any red lines
201 should be at the top of pages/columns. 204 should be at the top of pages/columns.
202 </p> 205 </p>
203 </body> 206 </body>
204 </html> 207 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698