summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1553828-1.html
blob: feaea66c20ff139084ac860be45d5ac005ccd59f (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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html class="reftest-wait">

<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: blue;
        transform: translateY(0px);
        mix-blend-mode: difference;
    }
    </style>
</head>

<body>
    <div class="container">
        <div class="child"></div>
    </div>
    <script type="text/javascript">
    function doTest() {
        document.querySelector(".child").style["background-color"] = "red";
        document.documentElement.className = "";
    }
    window.addEventListener("MozReftestInvalidate", doTest);
    // setTimeout(doTest, 5000);
    </script>
</body>

</html>