LibWeb: Implement CanvasPattern.setTransform()

This method applies the given transformation matrix to a pattern.
This commit is contained in:
Tim Ledbetter 2025-10-26 19:06:13 +00:00 committed by Jelle Raaijmakers
parent 9312a9f86f
commit e1ff1e2095
Notes: github-actions[bot] 2025-10-27 23:42:03 +00:00
10 changed files with 87 additions and 7 deletions

View file

@ -1,6 +1,8 @@
#import <Geometry/DOMMatrix.idl>
// https://html.spec.whatwg.org/multipage/canvas.html#canvaspattern
[Exposed=(Window,Worker)]
interface CanvasPattern {
// opaque object
[FIXME] undefined setTransform(optional DOMMatrix2DInit transform = {});
undefined setTransform(optional DOMMatrix2DInit transform = {});
};