LibWeb: Implement CanvasRenderingContext2D.setTransform

This commit is contained in:
Luke Wilde 2022-04-10 18:46:30 +01:00 committed by Andreas Kling
commit 329e740c85
Notes: sideshowbarker 2024-07-17 14:11:09 +09:00
3 changed files with 16 additions and 0 deletions

View file

@ -57,5 +57,6 @@ interface CanvasRenderingContext2D {
// FIXME: All these `double`s should be `unrestricted double`
undefined transform(double a, double b, double c, double d, double e, double f);
undefined setTransform(double a, double b, double c, double d, double e, double f);
};