mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
7 lines
279 B
Plaintext
7 lines
279 B
Plaintext
// 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")
|
|
};
|