From 8a1e88677f86ce2e64a00c7e30c35f5f4ce8695f Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Sat, 23 Mar 2024 21:56:03 +0100 Subject: [PATCH] LibWeb: Add FIXME comments to ImageData.idl Add FIXME comments for ImageData's missing constructor and attribute colorSpace. --- Userland/Libraries/LibWeb/HTML/ImageData.idl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/ImageData.idl b/Userland/Libraries/LibWeb/HTML/ImageData.idl index 7b1d90e636a..bf3208e9fd3 100644 --- a/Userland/Libraries/LibWeb/HTML/ImageData.idl +++ b/Userland/Libraries/LibWeb/HTML/ImageData.idl @@ -9,8 +9,9 @@ dictionary ImageDataSettings { [Exposed=(Window,Worker), Serializable] interface ImageData { constructor(unsigned long sw, unsigned long sh, optional ImageDataSettings settings = {}); + // FIXME: 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; };