summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/flexbox-with-overflow-auto-child-crash.html
blob: c28efbfb215145d6914bd18036dfe8b0d23879b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();
</script>
<p>PASS if no crash or assertion failure.</p>
<div style="-webkit-column-count:3;">
    <div style="display:flex; outline-style:groove;">
        <ol>
            <div style="display:list-item; -webkit-column-count:2; -webkit-text-emphasis:filled gray;">
                <div style="overflow-y:auto;">
                    <div style="-webkit-column-span:all;"></div>
                    &nbsp;
                </div>
            </div>
        </ol>
    </div>
</div>