summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/overflow/start-end-overflow-hidden-horizontal-writing-mode-tb.html
blob: f9b14cb7978410d6db7a3fbd606b080decb17514 (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#startOverflow {
        background-color: red;
        position: relative;
        left: -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="startOverflow"></div>
</div>
</body>
</html>