LibWeb+LibGfx: Implement shadowBlur for Canvas2D

This commit is contained in:
Lucien Fiorini 2024-12-03 21:22:44 +01:00 committed by Alexander Kalenik
commit e8cc0dc998
Notes: github-actions[bot] 2024-12-05 16:08:13 +00:00
8 changed files with 73 additions and 19 deletions

View file

@ -3,6 +3,6 @@ interface mixin CanvasShadowStyles {
// shadows
attribute unrestricted double shadowOffsetX; // (default 0)
attribute unrestricted double shadowOffsetY; // (default 0)
[FIXME] attribute unrestricted double shadowBlur; // (default 0)
attribute unrestricted double shadowBlur; // (default 0)
attribute DOMString shadowColor; // (default transparent black)
};