Chromium Code Reviews| Index: LayoutTests/fast/multicol/float-big-line-expected.html |
| diff --git a/LayoutTests/fast/multicol/float-big-line-expected.html b/LayoutTests/fast/multicol/float-big-line-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b6e96ed495074a2713be79568415163f451e5254 |
| --- /dev/null |
| +++ b/LayoutTests/fast/multicol/float-big-line-expected.html |
| @@ -0,0 +1,52 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + .columns { |
| + border: 2px solid black; |
| + height: 400px; |
| + line-height: 20px; |
| + } |
| + .column1, .column2 { |
| + float: left; |
| + width: 50%; |
| + } |
| + .big { |
| + font-size: 128px; |
| + line-height: initial; |
| + } |
| + .left { float: left; } |
| +</style> |
| +<p>There should be a big T 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> |
| + 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"> |
| + <span class="big left">T</span>his 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> |