Chromium Code Reviews| Index: LayoutTests/fast/multicol/vertical-lr/float-big-line.html |
| diff --git a/LayoutTests/fast/multicol/vertical-lr/float-big-line.html b/LayoutTests/fast/multicol/vertical-lr/float-big-line.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1518b1b892fb87607da9c910ec2366687906dfb2 |
| --- /dev/null |
| +++ b/LayoutTests/fast/multicol/vertical-lr/float-big-line.html |
| @@ -0,0 +1,51 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + body { |
| + -webkit-writing-mode: vertical-lr; |
| + } |
| + .columns { |
| + -webkit-columns: 2; |
| + -webkit-column-gap: 0; |
| + column-fill: auto; |
| + border: 2px solid black; |
| + width: 400px; |
| + line-height: 20px; |
| + } |
| + .big { |
| + font-size: 128px; |
| + line-height: initial; |
| + } |
| + .left { float: left; } |
| +</style> |
| +<div class="columns"> |
| + 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> |
| + <p> |
| + <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> |
| + </p> |
| +</div> |