Source code

Revision control

Copy as Markdown

Other Tools

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/smil/anim-use-length-02.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
class="reftest-wait">
<title>Test animation of the "width" &amp; "height" &lt;length&gt; attributes on the "use" element</title>
<script type="text/javascript">
function doTest() {
// The use elements below reference symbols. Setting the value of the
// 'width' or 'height' disables/enables its rendering when zero/non-zero.
// We're checking that the use elements render as normal once the set
// is over because there's no fill="freeze" here, and that if the set
// is in place, the use elements don't render.
setTimeAndSnapshot(1, true);
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
<script xlink:href="smil-util.js" type="text/javascript"/>
<defs>
<symbol id="s1">
<rect width="100" height="50" fill="lime" />
</symbol>
<symbol id="s2">
<rect y="50" width="100" height="50" fill="lime" />
</symbol>
<symbol id="s3">
<rect x="100" width="100" height="50" fill="red" />
</symbol>
<symbol id="s4">
<rect x="100" y="50" width="100" height="50" fill="red" />
</symbol>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<rect width="100" height="100" fill="red" />
<use xlink:href="#s1">
<set attributeName="width"
to="0" begin="0s" dur="0.5s"/>
</use>
<use xlink:href="#s2">
<set attributeName="height"
to="0" begin="0s" dur="0.5s"/>
</use>
<use xlink:href="#s3">
<set attributeName="width"
to="0" begin="0s" dur="2s"/>
</use>
<use xlink:href="#s4">
<set attributeName="height"
to="0" begin="0s" dur="2s"/>
</use>
</svg>