summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1552789-1.html
blob: d43610aa836b98de039bb104267f48dc15f59abf (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
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <meta charset="utf-8">
    <style>
    .outer {
        display: inline;
        position: relative;
    }

    .inner {
        position: absolute;
        top: 100%;
    }
    </style>
</head>

<body>
    <div class="outer">
        <div>You can see me.</div>
        <div class="inner">But you can't see me!</div>
    </div>
</body>
</html>