| Index: LayoutTests/fast/multicol/positioned-split-expected.html
|
| diff --git a/LayoutTests/fast/multicol/positioned-split-expected.html b/LayoutTests/fast/multicol/positioned-split-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b6135c267265c1c0b83b479cf8b3c24dcd1628ce
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/positioned-split-expected.html
|
| @@ -0,0 +1,33 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + .columns {
|
| + position: relative;
|
| + border: 2px solid black;
|
| + height: 300px;
|
| + line-height: 20px;
|
| + }
|
| + .abs1, .abs2 {
|
| + position: absolute;
|
| + background-color: lightgray;
|
| + width: 300px;
|
| + }
|
| + .abs1 {
|
| + height: 50px;
|
| + bottom: 0;
|
| + }
|
| + .abs2 {
|
| + left: 50%;
|
| + }
|
| +</style>
|
| +<div class="columns">
|
| + <div class="abs1">
|
| + This text should be in the first column.<br>
|
| + This text should be in the first column.<br>
|
| + </div>
|
| + <div class="abs2">
|
| + This text should be in the second column.<br>
|
| + This text should be in the second column.<br>
|
| + This text should be in the second column.<br>
|
| + This text should be in the second column.<br>
|
| + </div>
|
| +</div>
|
|
|