mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 21:12:26 +00:00
LibWeb: Implement CanvasDrawPath::isPointInPath()
This commit is contained in:
parent
18bc5972f4
commit
259e798a26
Notes:
github-actions[bot]
2024-09-18 20:22:53 +00:00
Author: https://github.com/mierenhoop
Commit: 259e798a26
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1423
Reviewed-by: https://github.com/AtkinsSJ
4 changed files with 25 additions and 2 deletions
|
@ -18,8 +18,10 @@ interface mixin CanvasDrawPath {
|
|||
// FIXME: `DOMString` should be `CanvasFillRule`
|
||||
undefined clip(Path2D path, optional DOMString fillRule = "nonzero");
|
||||
|
||||
[FIXME] boolean isPointInPath(unrestricted double x, unrestricted double y, optional CanvasFillRule fillRule = "nonzero");
|
||||
[FIXME] boolean isPointInPath(Path2D path, unrestricted double x, unrestricted double y, optional CanvasFillRule fillRule = "nonzero");
|
||||
// FIXME: `DOMString` should be `CanvasFillRule`
|
||||
boolean isPointInPath(unrestricted double x, unrestricted double y, optional DOMString fillRule = "nonzero");
|
||||
// FIXME: `DOMString` should be `CanvasFillRule`
|
||||
boolean isPointInPath(Path2D path, unrestricted double x, unrestricted double y, optional DOMString fillRule = "nonzero");
|
||||
[FIXME] boolean isPointInStroke(unrestricted double x, unrestricted double y);
|
||||
[FIXME] boolean isPointInStroke(Path2D path, unrestricted double x, unrestricted double y);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue