Chromium Code Reviews| Index: LayoutTests/fast/multicol/float-avoidance-expected.html |
| diff --git a/LayoutTests/fast/multicol/float-avoidance-expected.html b/LayoutTests/fast/multicol/float-avoidance-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..15e006b81200c4d975d0c0c4150fdaebad006643 |
| --- /dev/null |
| +++ b/LayoutTests/fast/multicol/float-avoidance-expected.html |
| @@ -0,0 +1,36 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + .float { |
| + float: left; |
| + width: 200px; |
| + height: 100px; |
| + background-color: lime; |
| + } |
| + .multicol { |
| + width: 400px; |
| + border: 10px solid black; |
| + line-height: 20px; |
| + display: inline-block; |
| + } |
| + .multicol > div { |
| + display: inline-block; |
|
mstensho (USE GERRIT)
2014/10/20 20:35:02
Can use float:left instead of display:inline-block
andersr
2014/10/21 08:58:03
Done.
|
| + width: 200px; |
| + } |
| +</style> |
| +<div class="float"> |
| +</div> |
| +<div class="multicol"> |
| + <div> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + </div><div> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + </div> |
| +</div> |