gecko/layout/reftests/svg/smil/event/event-seek-1.svg

20 lines
595 B
XML

<!-- Test a backwards seek with an event-generated time -->
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
id="svg"
class="reftest-wait"
onload="window.setTimeout(seek, 10)">
<script xlink:href="event-util.js" type="text/javascript"/>
<script type="text/javascript">
function seek()
{
document.documentElement.setCurrentTime(40);
finish(30);
}
</script>
<rect width="100" height="100" fill="red">
<set attributeName="fill" attributeType="CSS" to="green"
begin="svg.SVGLoad+20s"/>
</rect>
</svg>