summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/nested-auto-height.html
blob: b21ab9aacdeec91fce571433b4b34eeb4e5b9653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<style>
    .mc { -webkit-columns:2; -webkit-column-gap:0; }
</style>
<p>Basic test for multicol inside multicol, where the inner multicol crosses column boundaries in
    the outer multicol, so that it has to establish multiple rows / fragmentation groups.</p>
<p>Below, the word "PASS" should be seen, with large letter spacing on a lime background. No red should be seen.</p>
<div class="mc" style="width:4em; background:red;">
    <div class="mc" style="background:lime;">
        P<br>A<br>S<br>S
    </div>
</div>