blob: 50a3cb8b156a527de050ae8cfa6ba6c5393af077 (
plain)
1
2
3
4
5
6
7
8
9
|
interface HTMLCanvasElement : HTMLElement {
CanvasRenderingContext2D? getContext(DOMString contextId);
attribute unsigned long width;
attribute unsigned long height;
USVString toDataURL(optional DOMString type = "image/png", optional double quality);
};
|