summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/634232-1.html
blob: d85b0320219a78b9323993145d2aa5dc7030968a (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
<!DOCTYPE HTML>
<html>
<head>
<style>
    .wackeddiv {
        position: fixed;
        left: 20px;
        top: 20px;
        width: 50px;
        height: 50px;
        border: 2px solid highlight;
        background-color: transparent;
        transform: rotate(90deg); 
    }
    
    .posabssemitransparentblack {
        position:absolute;
        left: 0px;
        top: 50px;
        width: 100px;
        height: 100px;
        background: lime;
        opacity: 0.1;
    }
</style>
</head>
<body>
    <div class="posabssemitransparentblack"></div>
    <div class="wackeddiv"></div>
</body>
</html>