[Webkit-unassigned] [Bug 259646] CSS animation for SVG rect rx and ry has no effect
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Dec 12 06:26:49 PST 2023
https://bugs.webkit.org/show_bug.cgi?id=259646
--- Comment #2 from Antoine Quint <graouts at webkit.org> ---
Querying the computed style I can see that the animations is indeed applied through our style system. However, the rendering does not account for it. My guess is that we have a quick check for `rx` and `ry` being set on an element and not accounting for the RenderStyle.
In fact this seems unrelated to animations and strictly a CSS integration with SVG problem since:
… <rect width="50" height="50" rx="1" style="rx: 10px" />
will yield a rectangle with rounded corners while this:
<rect width="50" height="50" style="rx: 10px" />
… will not. Clearly having the `rx` attribute is important for rendering of the `rx` value set through CSS.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20231212/218a81b3/attachment-0001.htm>
More information about the webkit-unassigned
mailing list