summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1641769-1.html
blob: 7cc2cd10dff532cb176b440e825e93f52030de6e (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 lang="en-US">
<head>
    <meta charset="UTF-8">
</head>
<body>
    <style>
    .filter {
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 1));
    }

    .perspective {
        perspective: 1000px;
    }

    .child {
        box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 1);
        will-change: transform;
        background-color: green;
        width: 100px;
        height: 100px;
    }
    </style>
    <div class="filter">
        <div class="perspective">
            <div class="child">
            </div>
        </div>
    </div>
</body>
</html>