https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a5e2ffecd7d0443521537130e8f5067437eef32f authored by ffxbld on 12 August 2015, 23:33:20 UTC
Added FIREFOX_40_0_2_RELEASE FIREFOX_40_0_2_BUILD1 tag(s) for changeset 072bc472145e. DONTBUILD CLOSED TREE a=release
Tip revision: a5e2ffe
796847-1.svg
<!--
     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>
back to top