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..0d9c1acce5061fb4cf1ddf218ff193abfc53a2b7 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/vertical-lr/float-big-line.html |
@@ -0,0 +1,47 @@ |
+<!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; |
+ } |
+ .big { font-size: 128px; } |
+ .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> |