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-opacity-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="reftest-wait"
onload="setTimeAndSnapshot(101, false)">
<script xlink:href="smil-util.js" type="text/javascript"/>
<title>Testing that opacity changes are reflected in patterns</title>
<defs>
<pattern id="p" width="100%" height="100%">
<g>
<rect width="100%" height="100%" fill="lime" stroke="lime" stroke-width="1" opacity="0">
<animate attributeName="opacity" values="0;1" dur="1s" begin="99s" fill="freeze" />
</rect>
</g>
</pattern>
</defs>
<rect width="100%" height="100%" fill="red"/>
<rect width="100%" height="100%" fill="url(#p)"/>
</svg>