Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/path/distance/pathlength-path-mutating.svg - WPT Dashboard Interop Dashboard
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml" class="reftest-wait">
<title>Mutating the 'pathLength' attribute ('path' element)</title>
<h:link rel="match" href="reference/pathlength-path-mutating-ref.svg"/>
<path pathLength="800" d="M100,100h100v100h-100z" fill="none"
stroke="blue" stroke-width="20" stroke-dasharray="25"/>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.querySelector('path').setAttribute('pathLength', 200);
document.documentElement.classList.toggle("reftest-wait");
});
});
</script>
</svg>