Recently, starting from 2022, I have encountered an issue with a circular svg that was functioning perfectly well in the past. Strangely, this problem seems to occur only on Chrome.
Edge
https://i.sstatic.net/oXG2d.png
Firefox
https://i.sstatic.net/eWwv9.png
Opera/Chrome
https://i.sstatic.net/OPITY.png
Here is the code snippet causing the issue:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 300 300" class="a-scrollIndicator__text">
<defs>
<path id="txt-path" d=" M 150, 150 m -60, 0 a 60,60 0 0,1 120,0 a 60,60 0 0,1 -120,0 "></path>
</defs>
<text dy="0" font-size="15">
<textPath startOffset="0" xlink:href="#txt-path" side="left" method="align" style="fill:transparent;text-align:center;font-weight: bold;font-family: MonumentBold;stroke: white;stroke-width: 0.3;">
SCROLL • SCROLL •
</textPath>
<textPath startOffset="50%" xlink:href="#txt-path" side="left" method="align" style="fill:transparent;text-align:center;font-weight: bold;font-family: MonumentBold;stroke: white;stroke-width: 0.3;">
SCROLL • SCROLL •
</textPath>
</text>
</svg>