mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 11:24:58 +00:00
6 lines
282 B
Text
6 lines
282 B
Text
// https://html.spec.whatwg.org/multipage/canvas.html#canvascompositing
|
|
interface mixin CanvasCompositing {
|
|
// compositing
|
|
attribute unrestricted double globalAlpha; // (default 1.0)
|
|
// FIXME: attribute DOMString globalCompositeOperation; // (default "source-over")
|
|
};
|