Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/animations/mpath-zero-radius-crash.html - WPT Dashboard Interop Dashboard
<html>
<head>
<script>
document.addEventListener("DOMContentLoaded", async () => {
document.documentElement.appendChild(frame)
frame.src = `data:text/html,` + encodeURIComponent(`<!doctype html>
<svg>
<ellipse id="id_8" ry="100pt"></ellipse>
<animateMotion>
<desc></desc>
<mpath xlink:href="#id_8"></mpath>
</animateMotion>
</svg>`);
})
</script>
</head>
</html>