mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
7 lines
448 B
Plaintext
7 lines
448 B
Plaintext
// https://html.spec.whatwg.org/multipage/canvas.html#canvasrect
|
|
interface mixin CanvasRect {
|
|
undefined clearRect(unrestricted double x, unrestricted double y, unrestricted double w, unrestricted double h);
|
|
undefined fillRect(unrestricted double x, unrestricted double y, unrestricted double w, unrestricted double h);
|
|
undefined strokeRect(unrestricted double x, unrestricted double y, unrestricted double w, unrestricted double h);
|
|
};
|