Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/animations/set-animation-end-2.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class="reftest-wait">
<title>After animation has finished the shape should return to its unanimated state</title>
<link rel="match" href="../struct/reftests/reference/green-100x100.html">
<script src="/common/reftest-wait.js"></script>
<script src="/common/rendering-utils.js"></script>
<svg>
<style>
.green {
fill: green;
}
.other+rect {
fill:red;
}
</style>
<rect width="100" height="50" fill="green">
<set attributeName="class" to="other" dur="2s" onbegin="test()"/>
</rect>
<rect y="50" width="100" height="50" class="green"/>
<script>
function test() {
document.getElementsByTagName('svg')[0].setCurrentTime(2);
takeScreenshot();
}
</script>
</svg>