Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/animations/repeat-iteration-event-004.svg - WPT Dashboard Interop Dashboard
<title>Animation triggers on 'repeat(3)'</title>
<rect width="0" height="100" fill="green">
<animate id="anim" attributeName="visibility" to="visible" begin="0s" dur="2s" repeatCount="4"/>
<set attributeName="width" to="100" begin="anim.repeat(3)"/>
</rect>
<script>
promise_test(t => {
document.documentElement.setCurrentTime(5.995);
let set = document.querySelector("set");
return new EventWatcher(t, set, 'beginEvent').wait_for('beginEvent').then(() => {
assert_equals(set.parentNode.getBBox().width, 100);
});
});
</script>
</svg>