Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / newmulticol / clipping-expected.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <title>Column clipping</title>
5     <style>
6       body {
7         width: 450px;
8         color: black;
9         background: white;
10       }
11       .mc {
12         columns: 3;
13         column-gap: 15px;
14         column-fill: auto;
15         -webkit-columns: 3;
16         -webkit-column-gap: 15px;
17         height: 100px;
18         box-sizing:border-box;
19         border:10px solid green;
20         background:white;
21       }
22     </style>
23   </head>
24   <body>
25     <p>There should be a rectangle with a solid 10px thick green border below, and no red.</p>
26     <div class="mc"></div>
27   </body>
28 </html>