ladybird/Userland/Libraries/LibWeb/HTML/HTMLCanvasElement.idl
2021-01-12 12:17:46 +01:00

7 lines
201 B
Text

interface HTMLCanvasElement : HTMLElement {
CanvasRenderingContext2D? getContext(DOMString contextId);
readonly attribute unsigned long width;
readonly attribute unsigned long height;
};