mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
26e6c47d0a
The only IDL interface without a spec link is Internals
6 lines
185 B
Text
6 lines
185 B
Text
// https://html.spec.whatwg.org/#canvasgradient
|
|
[Exposed=(Window,Worker)]
|
|
interface CanvasGradient {
|
|
// opaque object
|
|
undefined addColorStop(double offset, DOMString color);
|
|
};
|