Index: LayoutTests/fast/multicol/float-big-line.html |
diff --git a/LayoutTests/fast/multicol/float-big-line.html b/LayoutTests/fast/multicol/float-big-line.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9545ffc98c9cafe6460e615203ad765dc379b666 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/float-big-line.html |
@@ -0,0 +1,44 @@ |
+<!DOCTYPE html> |
+<style> |
+ .columns { |
+ -webkit-columns: 2; |
+ -webkit-column-gap: 0; |
+ column-fill: auto; |
+ border: 2px solid black; |
+ height: 400px; |
mstensho (USE GERRIT)
2014/11/03 13:45:45
You seem to be making assumptions about the line h
andersr
2014/11/04 11:24:24
Done.
|
+ } |
+ .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> |