summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/overflow/hidden-html-hidden-body.html
blob: 4fdeeacc38efdefcd6892d09d19a171ad09637a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html style="overflow:hidden; background:white; color:black;">
    <head>
        <title>Hidden overflow on HTML, hidden overflow on BODY</title>
    </head>
    <body style="overflow:hidden; width:20em; height:20em; background:cyan;">
        <p>This text should be inside a cyan box. There should be no red.</p>
        <p>The viewport should not have scrollbars.</p>
        <div style="width:30em;">
            <div style="float:right; width:10em; height:20em; background:red;">FAIL</div>
        </div>
        <div style="width:300vw; height:300vh;"></div>
    </body>
</html>