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
  • opaque black
  • transparent black
  • 'srgb' color space
  • +
  • 'srgb-linear' color space
  • 'display-p3' color space
  • +
  • 'display-p3-linear' color space
  • 'relative-colorimetric' rendering intent
  • parse a CSS <color> value
  • serialize a CSS <color> value including HTML-compatible serialization is requested
  • @@ -75526,7 +75528,7 @@ interface OffscreenCanvasRenderingContext2D {
    Color spaces and color space conversion
    -
    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.

    @@ -75535,10 +75537,18 @@ interface OffscreenCanvasRenderingContext2D { data-x="dom-PredefinedColorSpace-srgb">srgb" value indicates the 'srgb' color space.

    +

    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.