summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1553828-1-ref.html
blob: 9079b62abcce5c1ebb39e234f508727f215222ee (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>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Bug 1553828</title>
    <style type="text/css">
    .container {
        transform-style: preserve-3d;
        perspective: 1000px;
        width: 500px;
        background-color: white;
    }

    .child {
        width: 500px;
        height: 500px;
        background-color: red;
        transform: translateY(0px);
        mix-blend-mode: difference;
    }
    </style>
</head>

<body>
    <div class="container">
        <div class="child"></div>
    </div>
</body>

</html>