I got an image created in js with a clip-path css attribute. I'm also creating an svg with a clip-path in svg, with a circle used as mask. Rendered it looks like this :
`<svg id="ayads-bubble-svg" height="0" width="0">
<defs>
<clipPath id="bubble-path">
<circle cx="188" cy="117" r="229">
</circle>
</clipPath>
</defs>
</svg>`
I'm changing circle r attribute on scroll, but my image clip isn't updated (while if I disable and enable clip-path in inspector it works).
I'll be really please if you guys have an idea Thanks a lot !