summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/canvas/canvas2d/canvas_rendering_context_2d_settings.idl
blob: 93c38d72a27b89efbfaafcc5d28845101aaa1c40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://github.com/WICG/canvas-color-space/blob/master/CanvasColorSpaceProposal.md

[PermissiveDictionaryConversion]
dictionary CanvasRenderingContext2DSettings {
    boolean alpha = true;
    [RuntimeEnabled=CanvasColorManagement] CanvasColorSpace colorSpace = "srgb";
    [RuntimeEnabled=CanvasColorManagement] CanvasPixelFormat pixelFormat = "uint8";
};