Index: LayoutTests/fast/multicol/vertical-rl/float-avoidance.html |
diff --git a/LayoutTests/fast/multicol/vertical-rl/float-avoidance.html b/LayoutTests/fast/multicol/vertical-rl/float-avoidance.html |
index 0153b0f923b75c00c25e54a50f98d93e8ec30ab0..bf0cd05f9f3b38a9f9c936328dbc2f5ed5b9a6e2 100644 |
--- a/LayoutTests/fast/multicol/vertical-rl/float-avoidance.html |
+++ b/LayoutTests/fast/multicol/vertical-rl/float-avoidance.html |
@@ -1,8 +1,33 @@ |
-<body style="-webkit-writing-mode:vertical-rl"> |
- <div style="float:left; width:100px; height:200px; background-color:lime"></div> |
- <div style="height:415px; -moz-column-width:200px; -webkit-column-width:200px; column-width:200px; column-fill:auto; |
- text-align:justify; border:10px solid black"> |
-<p>This technology preview of our award winning next generation browser |
- is a sign of things to come from Mozilla. Powerful yet easy to use. This |
- maintenance release provides a few updates based on user feedback - including |
- changes to the Extension System and icon improvements. |
+<!DOCTYPE html> |
+<style> |
+ body { |
+ -webkit-writing-mode: vertical-rl; |
+ } |
+ .float { |
+ float: left; |
+ width: 100px; |
+ height: 200px; |
+ background-color: lime; |
+ } |
+ .multicol { |
+ height: 400px; |
+ -webkit-column-width: 200px; |
+ -webkit-column-gap: 0; |
+ border: 10px solid black; |
+ line-height: 20px; |
+ } |
+</style> |
+<div class="float"> |
+</div> |
+<div class="multicol"> |
+ First column<br> |
+ First column<br> |
+ First column<br> |
+ First column<br> |
+ First column<br> |
+ Second column<br> |
+ Second column<br> |
+ Second column<br> |
+ Second column<br> |
+ Second column<br> |
+</div> |