mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 20:04:59 +00:00

NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
21 lines
830 B
Text
21 lines
830 B
Text
#import <HTML/CanvasRenderingContext2D.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
#import <WebGL/WebGLRenderingContext.idl>
|
|
|
|
typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmlcanvaselement
|
|
[Exposed=Window, UseDeprecatedAKString]
|
|
interface HTMLCanvasElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
RenderingContext? getContext(DOMString contextId, optional any options = null);
|
|
[CEReactions] attribute unsigned long width;
|
|
[CEReactions] attribute unsigned long height;
|
|
|
|
USVString toDataURL(optional DOMString type = "image/png", optional double quality);
|
|
undefined toBlob(BlobCallback _callback, optional DOMString type = "image/png", optional double quality);
|
|
};
|
|
|
|
callback BlobCallback = undefined (Blob? blob);
|