Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / positioned-split-expected.html
blobb6135c267265c1c0b83b479cf8b3c24dcd1628ce
1 <!DOCTYPE html>
2 <style>
3 .columns {
4 position: relative;
5 border: 2px solid black;
6 height: 300px;
7 line-height: 20px;
9 .abs1, .abs2 {
10 position: absolute;
11 background-color: lightgray;
12 width: 300px;
14 .abs1 {
15 height: 50px;
16 bottom: 0;
18 .abs2 {
19 left: 50%;
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>