summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/mask-opacity-invalidation-1.html
blob: d7b8de5fd49c3b0f62f269b67fd2e3dca1c27147 (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
40
41
<!DOCTYPE html>
<html lang="en" class="reftest-wait">
<head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title></title>
    <style>
    #mask {
      clip-path: circle(50%);
      width: 100px;
      height: 100px;
      opacity: 0.9;
    }

    #content {
      width: 100px;
      height: 100px;
      background-color: green;
    }
  </style>
</head>

<body>
    <div id="mask">
        <div id="content"></div>
    </div>

    <script type="text/javascript">
    function step1() {
      document.querySelector("#mask").style.opacity = 0.1;
      window.requestAnimationFrame(() => window.requestAnimationFrame(step2));
    };

    function step2() {
      document.querySelector("#mask").style.opacity = 0.5;
      document.documentElement.removeAttribute("class");
    }

    window.addEventListener("MozReftestInvalidate", step1);
    </script>
</body>
</html>