Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / positioned-split-expected.html
1 <!DOCTYPE html>
2 <style>
3     .columns {
4         position: relative;
5         border: 2px solid black;
6         height: 300px;
7         line-height: 20px;
8     }
9     .abs1, .abs2 {
10         position: absolute;
11         background-color: lightgray;
12         width: 300px;
13     }
14     .abs1 {
15         height: 50px;
16         bottom: 0;
17     }
18     .abs2 {
19         left: 50%;
20     }
21 </style>
22 <div class="columns">
23     <div class="abs1">
24         This text should be in the first column.<br>
25         This text should be in the first column.<br>
26     </div>
27     <div class="abs2">
28         This text should be in the second column.<br>
29         This text should be in the second column.<br>
30         This text should be in the second column.<br>
31         This text should be in the second column.<br>
32     </div>
33 </div>