Chromium Code Reviews| Index: LayoutTests/fast/multicol/column-break-with-balancing-expected.html |
| diff --git a/LayoutTests/fast/multicol/column-break-with-balancing-expected.html b/LayoutTests/fast/multicol/column-break-with-balancing-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c288b7f43506743330589dac9ecc94227d12f1ab |
| --- /dev/null |
| +++ b/LayoutTests/fast/multicol/column-break-with-balancing-expected.html |
| @@ -0,0 +1,52 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + .columns { |
| + width: 400px; |
| + border: 5px solid blue; |
| + margin-bottom: 1em; |
| + line-height: 20px; |
| + } |
| + .column { |
| + display: inline-block; |
|
mstensho (USE GERRIT)
2014/10/20 20:14:53
You could use float:left instead, so that you woul
andersr
2014/10/21 07:00:11
Done.
mstensho (USE GERRIT)
2014/10/21 07:35:09
Acknowledged.
|
| + width: 200px; |
| + vertical-align: top; |
| + } |
| +</style> |
| +<div class="columns"> |
| + <div class="column"> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + </div><div class="column"> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + </div> |
| +</div> |
| +<div class="columns"> |
| + <div class="column"> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + First column<br> |
| + </div><div class="column"> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + Second column<br> |
| + </div> |
| +</div> |