Status: FAIL | Duration: 27ms | Subtests: 0/1 | Open test on wpt.live | wpt.fyi
/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="help" href="https://w3c.github.io/svgwg/svg2-draft/paths.html#PathLengthAttribute"/> <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>