Re: [csswg-drafts] [css-backgrounds-3][css-borders-4] The shape of box-shadow should be a circle for a box with border-radius:50% and big spread (#7103)

Actually, Noam's proposal isn't more complex than mine. Refactoring a bit, it boils down to just this diff

```diff
                                        return value + testCase.spread;
                                }
                                let r = 1 - value / testCase.spread;
-                               return value + testCase.spread * (1 - r**3 * (1 - coverage));
+                               return value + testCase.spread * (1 - r**3 * (1 - coverage ** 3));
                        });
                }
        }
```

-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7103#issuecomment-3355277243 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 1 October 2025 08:27:13 UTC