Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/animations/reftests/discard-rect-with-anim-child-a.svg - WPT Dashboard Interop Dashboard
<svg onload="startTest()" xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml" class="reftest-wait">
<title>discard element removes its parent by default</title>
<h:link rel="match" href="reference/green-100x100.svg"/>
<h:script src="/common/rendering-utils.js"/>
<h:script src="/common/reftest-wait.js"/>
<rect width="100" height="100" fill="green"/>
<rect width="100" height="100" fill="blue">
<set attributeName="fill" to="red" begin="2s" fill="freeze" />
<discard id="discard1" begin="4s"/>
</rect>
<script>
function startTest() {
document.documentElement.setCurrentTime(4);
takeScreenshot();
}
</script>
</svg>