summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/clip-path-invalidation-1b.html
blob: 09789e5efd5ca41e1e960decd43b01b337b39911 (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
42
43
44
45
46
47
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <meta charset="utf-8">
    <title>CSS Masking: clipPath invalidation.</title>
    <style type="text/css">
      div.outer {
        position: absolute;
        background-color: purple;
        border: solid purple;
        width: 10px;
        height: 10px;
        transform: scale(20);
        transform-origin: top left;
      }

      div.clipped {
        clip-path: url(#cp1);
      }

      div.inner {
        width: 5px;
        height: 5px;
        border: 1px solid transparent;
        will-change: transform;
      }
    </style>
  </head>
  <body>
    <div id="d1" class="outer clipped"><div class="inner"></div></div>
    <script type="text/javascript">
      function changeTransform()
      {
        document.getElementById("d1").style.transform = "scale(10)";
        document.documentElement.removeAttribute("class");
      }

      document.addEventListener("MozReftestInvalidate",
                                changeTransform);
    </script>
    <svg height="0">
      <clipPath id="cp1">
       <rect x="10" y="10" width="5" height="5"/>
      </clipPath>
    </svg>
  </body>
</html>