Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/smil/anim-feGaussianBlur-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
class="reftest-wait">
<title>Test animation of the "stdDeviation" &lt;number-optional-number&gt; attribute on "feGaussianBlur" elements</title>
<script xlink:href="smil-util.js" type="text/javascript"/>
<filter id="filter" x="0" y="0" width="1" height="1">
<feGaussianBlur stdDeviation="50">
<animate attributeName="stdDeviation"
calcMode="linear"
begin="0s" dur="2s"
from="100,100" to="0"
fill="freeze"/>
</feGaussianBlur>
</filter>
<rect width="100%" height="100%" fill="lime"/>
<g transform="translate(50, 0)">
<circle fill="red" cx="100" cy="100" r="98" transform="translate(50, 0)" filter="url(#filter)"/>
</g>
<circle fill="lime" cx="200" cy="100" r="100"/>
<script type="text/javascript">
function doTest() {
setTimeAndSnapshot(1.9999, true);
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</svg>