summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/overflow/before-after-overflow-hidden-horizontal-writing-mode-tb.html
blob: 88716938e340e2dd8d8eb9504bf34999637d02e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<style>
    div {
        height: 100px;
        width: 100px;
    }

    div#wrapper {
        margin-left: 100px;
        margin-top: 100px;
        background-color: green;
        overflow: hidden;
    }

    div#beforeOverflow {
        background-color: red;
        position: relative;
        top: -100px;
    }
</style>
<body>
<a href="https://bugs.webkit.org/show_bug.cgi?id=82129">82129</a>: REGRESSION (r110065-r110080): Content drawing outside overflow: hidden at ynet.co.il</a>
<p>Your shouldn't see any red on this page, just a green square.</p>
<div id="wrapper">
    <div id="beforeOverflow"></div>
</div>
</body>
</html>