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-view-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
class="reftest-wait"
viewBox="0 0 100 100" preserveAspectRatio="none">
<title>Test animation of view on view overriding svg element</title>
<script xlink:href="smil-util.js" type="text/javascript"/>
<script>
window.addEventListener("MozReftestInvalidate", run, false);
setTimeout(run, 4000); // fallback for running outside reftest
function run() {
setTimeAndSnapshot(101, true);
}
</script>
<view id="view">
<animate attributeName="viewBox"
calcMode="linear"
begin="100s" dur="2s"
values="0 0 100 100;10 10 10 10;0 0 100 100"
fill="freeze"/>
</view>
<rect width="100%" height="100%" fill="red"/>
<rect x="10" y="10" width="10" height="10" fill="lime"/>
</svg>