1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

LibWeb: Implement CanvasRenderingContext2D.restore()

This commit is contained in:
Linus Groh 2021-12-27 14:32:31 +01:00 committed by Andreas Kling
parent 7d435b5ada
commit 3e0e965f24
3 changed files with 11 additions and 0 deletions

View file

@ -32,6 +32,7 @@ interface CanvasRenderingContext2D {
undefined putImageData(ImageData imagedata, double dx, double dy);
undefined save();
undefined restore();
readonly attribute HTMLCanvasElement canvas;