summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/375775-1.svg
blob: cd17c85a949247e98168a51bd15941c48a54b178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(boom, 30);" class="reftest-wait">
     
<script type="text/javascript">

function boom()
{
  document.getElementById("filter").style.display = "none";
  document.getElementById("path").style.display = "none";

  document.documentElement.removeAttribute("class");
}

</script>

<filter id="filter" filterUnits="userSpaceOnUse" x="0" y="0" width="200" height="120" />

<g filter="url(#filter)">
  <path id="path"
        fill="black"
        d="M60,80 C30,80 30,40 60,40 L140,40 C170,40 170,80 140,80 z" />
</g>

</svg>