1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

LibWeb: Implement CanvasRenderingContext2D.transform

This commit is contained in:
Luke Wilde 2022-04-10 18:46:04 +01:00 committed by Andreas Kling
parent 40f584a2bb
commit df7a83ac0e
3 changed files with 19 additions and 0 deletions

View file

@ -55,4 +55,7 @@ interface CanvasRenderingContext2D {
CanvasGradient createLinearGradient(double x0, double y0, double x1, double y1);
CanvasGradient createConicGradient(double startAngle, double x, double y);
// FIXME: All these `double`s should be `unrestricted double`
undefined transform(double a, double b, double c, double d, double e, double f);
};