Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / newmulticol / break-after-expected.html
1 <!DOCTYPE html>
2 <html>
3     <head>
4         <title>auto-height multicol with break</title>
5         <style>
6             .mc > div { padding:0 0.5em; }
7         </style>
8     </head>
9     <body style="min-width:40em;">
10         <div class="mc" style="-webkit-columns:3; -webkit-column-gap:1em; columns:3; column-gap:1em; orphans:1; widows:1; width:32em; background:olive;">
11             <div>
12                 first column<br>
13                 first column<br>
14                 first column<br>
15                 first column<br>
16                 second column<br>
17                 second column<br>
18                 second column<br>
19             </div>
20             <div style="-webkit-column-break-before:always; break-before:column;">
21                 third column<br>
22             </div>
23         </div>
24     </body>
25 </html>