mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
LibWeb: Implemented shadows support for CanvasRenderingContext2D
This commit is contained in:
parent
6d68d6ddb2
commit
34f7bf979d
Notes:
github-actions[bot]
2024-10-23 18:44:55 +00:00
Author: https://github.com/uysalibov 🔰
Commit: 34f7bf979d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1848
Reviewed-by: https://github.com/kalenikaliaksandr ✅
5 changed files with 152 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
// https://html.spec.whatwg.org/multipage/canvas.html#canvasshadowstyles
|
||||
interface mixin CanvasShadowStyles {
|
||||
// shadows
|
||||
[FIXME] attribute unrestricted double shadowOffsetX; // (default 0)
|
||||
[FIXME] attribute unrestricted double shadowOffsetY; // (default 0)
|
||||
attribute unrestricted double shadowOffsetX; // (default 0)
|
||||
attribute unrestricted double shadowOffsetY; // (default 0)
|
||||
[FIXME] attribute unrestricted double shadowBlur; // (default 0)
|
||||
[FIXME] attribute DOMString shadowColor; // (default transparent black)
|
||||
attribute DOMString shadowColor; // (default transparent black)
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue