Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/testing/web-platform/tests/svg/path/distance/pathlength-path-mutating.svg
<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>