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