2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/CanvasRenderingContext2D.idl>
|
|
|
|
#import <HTML/HTMLElement.idl>
|
2022-06-04 04:22:42 +01:00
|
|
|
#import <WebGL/WebGLRenderingContext.idl>
|
|
|
|
|
|
|
|
typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
2022-02-15 22:40:51 +03:30
|
|
|
|
2020-06-21 15:37:13 +02:00
|
|
|
interface HTMLCanvasElement : HTMLElement {
|
|
|
|
|
2022-06-04 04:22:42 +01:00
|
|
|
RenderingContext? getContext(DOMString contextId, optional any options = null);
|
2021-11-13 00:54:21 +01:00
|
|
|
attribute unsigned long width;
|
|
|
|
attribute unsigned long height;
|
2020-06-21 15:37:13 +02:00
|
|
|
|
2021-04-19 23:47:29 +02:00
|
|
|
USVString toDataURL(optional DOMString type = "image/png", optional double quality);
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|