You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In v63, the rect is not applying the fill-opacity. If the order of the rect and circle are switched, the circle does not apply the fill-opacity. Both are applied in browsers.
The text was updated successfully, but these errors were encountered:
This was working as expected and matching browser renderings in v62
<svg width="300" height="130" xmlns="http://www.w3.org/2000/svg"> <rect width="200" height="100" x="10" y="10" rx="20" ry="20" fill="#000" fill-opacity=".098" fill-rule="evenodd" /> <circle cx="50" cy="50" r="50" fill="#1c87c9" fill-opacity=".098" fill-rule="evenodd" /> </svg>
In v63, the rect is not applying the fill-opacity. If the order of the rect and circle are switched, the circle does not apply the fill-opacity. Both are applied in browsers.
The text was updated successfully, but these errors were encountered: