Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /svg/animations/seeking-events-8.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Seeking backwards to a new interval dispatches both 'endEvent' and 'beginEvent'</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<svg>
<rect width="100" height="100" fill="red">
<set id="anim1" attributeName="fill" to="green" begin="2s; 6s" dur="1s" repeatCount="2" fill="freeze"/>
</rect>
</svg>
<script>
const SMIL_EVENTS = ['beginEvent', 'repeatEvent', 'endEvent'];
promise_test(function(t) {
let svg = document.querySelector('svg');
svg.pauseAnimations();
svg.setCurrentTime(6.5);
let anim1_watcher = new EventWatcher(t, document.getElementById('anim1'), SMIL_EVENTS);
return anim1_watcher.wait_for('beginEvent').then(() => {
svg.setCurrentTime(2.5);
return anim1_watcher.wait_for(['endEvent', 'beginEvent']);
});
});
</script>