summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1641769-1-ref.html
blob: f8bd907c1ccc6d96548071e1e01e45ae6dd49cd1 (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 lang="en-US">
<head>
    <meta charset="UTF-8">
</head>
<body>
    <style>
    .filter {
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 1));
    }
    .child {
        box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 1);
        background-color: green;
        width: 100px;
        height: 100px;
    }
    </style>
    <div class="filter">
        <div>
            <div class="child">
            </div>
        </div>
    </div>
</body>
</html>