Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / float-avoidance.html
index c8e1ff2..e20be38 100644 (file)
@@ -1,7 +1,30 @@
- <div style="float:left; width:200px; height:100px; background-color:lime"></div>
-   <div style="width:415px; -moz-column-width:200px; -webkit-column-width:200px; 
- 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.
\ No newline at end of file
+<!DOCTYPE html>
+<style>
+    .float {
+        float: left;
+        width: 200px;
+        height: 100px;
+        background-color: lime;
+    }
+    .multicol {
+        width: 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>