mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02:00
8 lines
198 B
Plaintext
8 lines
198 B
Plaintext
// https://html.spec.whatwg.org/multipage/canvas.html#canvasstate
|
|
interface mixin CanvasState {
|
|
undefined save();
|
|
undefined restore();
|
|
undefined reset();
|
|
boolean isContextLost();
|
|
};
|