summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/break-in-scrollable.html
blob: 2e5156ef73243f778ee13a3641ca8ca893cc5b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
    <head>
        <title>Forced break inside scrollable container</title>
    </head>
    <body>
        <p>The word 'PASS' should be seen on the left below. The scrollbars shouldn't be scrollable.</p>
        <div style="-webkit-columns:2; columns:2; orphans:1; widows:1;">
            <div style="overflow:scroll; height:10em;">
                &nbsp;
                <div style="-webkit-column-break-before:always; break-before:column;">PASS</div>
            </div>
        </div>
    </body>
</html>