2012-11-27 20:06:07 -08:00
|
|
|
<!--
|
|
|
|
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">
|
2012-11-27 20:09:11 -08:00
|
|
|
<title>Test that the area that's covered by a filtered element is invalidated when content inside it changes</title>
|
2012-11-27 20:06:07 -08:00
|
|
|
<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>
|