summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/796847-1.svg
blob: d040f2929e96618e2be68d4b4be69d4c0f61e61c (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
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="reftest-wait">
  <title>Test that the area that's covered by a filtered element is invalidated when content inside it changes</title>
  <filter id="f" x="0" y="0" width="100%" height="100%">
    <feGaussianBlur in="SourceGraphic" stdDeviation="0.1"/>
  </filter>
  <script type="text/javascript">//<![CDATA[

function doTest()
{
  var e = document.getElementsByTagName("rect")[0];
  e.style.fill = "lime";
  document.documentElement.removeAttribute('class');
}

document.addEventListener("MozReftestInvalidate", doTest, false);

  //]]></script>
  <g filter="url(#f)">
    <rect x="0" y="0" width="100" height="100" style="fill: red;"/>
  </g>
</svg>