ladybird/Userland/Libraries/LibWeb/HTML/HTMLCanvasElement.idl

8 lines
201 B
Text
Raw Normal View History

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