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-as-href.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 the element it references</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 id="r2" width="100" height="100" fill="red"/>
<discard id="discard1" href="#r2" begin="2s"/>
<script>
function startTest() {
document.documentElement.setCurrentTime(4);
takeScreenshot();
}
</script>
</svg>