mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 02:54:54 +03:00
4fe0cbcf85
This improves the debuggability of many live web pages :^)
18 lines
676 B
Plaintext
18 lines
676 B
Plaintext
// https://html.spec.whatwg.org/multipage/canvas.html#imagedata
|
|
|
|
enum PredefinedColorSpace { "srgb", "display-p3" };
|
|
|
|
dictionary ImageDataSettings {
|
|
PredefinedColorSpace colorSpace;
|
|
};
|
|
|
|
[Exposed=(Window,Worker), Serializable]
|
|
interface ImageData {
|
|
constructor(unsigned long sw, unsigned long sh, optional ImageDataSettings settings = {});
|
|
constructor(Uint8ClampedArray data, unsigned long sw, optional unsigned long sh, optional ImageDataSettings settings = {});
|
|
readonly attribute unsigned long width;
|
|
readonly attribute unsigned long height;
|
|
readonly attribute Uint8ClampedArray data;
|
|
[FIXME] readonly attribute PredefinedColorSpace colorSpace;
|
|
};
|