Chromium Code Reviews| Index: LayoutTests/fast/multicol/float-paginate-expected.html |
| diff --git a/LayoutTests/fast/multicol/float-paginate-expected.html b/LayoutTests/fast/multicol/float-paginate-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6cbb6d874e2a0af35de596d08d0d9ff0a94ee48d |
| --- /dev/null |
| +++ b/LayoutTests/fast/multicol/float-paginate-expected.html |
| @@ -0,0 +1,65 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + .columns { |
| + border: 2px solid black; |
| + overflow: auto; |
| + line-height: 20px; |
| + } |
| + .column1, .column2 { |
| + width: calc(50% - 10px); |
| + float: left; |
| + } |
| + .column1 { |
| + margin-right: 20px; |
| + } |
| + img { |
| + float: left; |
| + height: 320px; |
| + width: 150px; |
| + background-color: green; |
| + display: block; |
| + } |
| +</style> |
| +<p>There should be a green rectangle in the second column.</p> |
| +<div class="columns"> |
| + <div class="column1"> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + </div> |
| + <div class="column2"> |
| + <img> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + This is some text.<br> |
| + </div> |
| +</div> |