summaryrefslogtreecommitdiffstats
path: root/layout/reftests/layers/opacity-background-1-ref.html
blob: c80ed888666be52434a8436214032dd59e923cb0 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">

<style>
.main {
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    position: absolute;
    background-color: red;
}

.background {
    background-color: white;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.9;
}

.container {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    overflow: scroll;
}

.message {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 101%;
    height: 101%;
}
</style>
</head>

<body>
<div class="main">
    <div class="background"></div>
    <div class="container">
        <div class="message">foo</div>
    </div>
</div>

</body>
</html>