summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/1494062-blob-image-wraplist-clip.html
blob: 670cb2551e7f6173f4f43ffceb0fb8255865e29c (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
<html class="reftest-wait">
<head>
<script type="text/javascript">
window.addEventListener("MozReftestInvalidate", function() {
  window.requestAnimationFrame(function() {
    var xmlns = "http://www.w3.org/2000/svg";
    var circleElm = document.getElementById("green_circle");
    circleElm.setAttribute("clip-path", "url(#quarter)");
    window.requestAnimationFrame(function() {
      document.documentElement.removeAttribute('class');
    });
  });
});
</script>
</head>
<body>
<svg width="200" height="200" id="root">
<defs>
<clipPath id="quarter">
<rect x="0" y="0" width="50" height="50"/>
</clipPath>
</defs>
<circle cx="50" cy="50" r="40" fill="green" id="green_circle"/>
<rect x="150" y="150" width="10" height="10" fill="red"/>
</svg>
</body>
</html>