summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/594624-1-ref.html
blob: 710153806b69e4d61d53dbec33204aa587476057 (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
<html>
<head>
    <style>
        #TB_window
        {
            border: 1px solid red;
            position: fixed;
            top: 0;
            left: 0;
        }
        
        #TB_overlay {
            height: 200px;
            left: 10px;
            position: fixed;
            top: 80px;
            width: 200px;
            
            opacity: 0.1;

            background-color: green;
        }
    </style>
</head>
<body>
    SOME CONTENT
    <div id="TB_overlay">
    </div>
    <div id="TB_window"></div>

</body>
</html>