blob: 2e65d3aba6773bbd76404d1c955326181d602449 (
plain)
1
2
3
4
5
6
7
|
interface HTMLCanvasElement : HTMLElement {
CanvasRenderingContext2D? getContext(DOMString contextId);
readonly attribute unsigned long width;
readonly attribute unsigned long height;
}
|