diff --git a/source b/source index 877761a9424..e0bedf006fd 100644 --- a/source +++ b/source @@ -3771,7 +3771,9 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
enum PredefinedColorSpace { "srgb", "display-p3" };
+ enum PredefinedColorSpace { "srgb", "srgb-linear", "display-p3", "display-p3-linear" };
The PredefinedColorSpace enumeration is used to specify the color space of the canvas's backing store.
The "srgb-linear" value indicates the
+ 'srgb-linear' color space.
The "display-p3" value indicates the
'display-p3' color space.
The "display-p3-linear" value indicates the
+ 'display-p3-linear' color space.
Color space conversion must be applied to the canvas's backing store when rendering the canvas to the output device.