mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 18:54:57 +00:00

Also add the CanvasRenderingContext2D APIs to go along with it. Note that it can't be used for anything yet.
5 lines
137 B
Text
5 lines
137 B
Text
[Exposed=(Window,Worker)]
|
|
interface CanvasGradient {
|
|
// opaque object
|
|
undefined addColorStop(double offset, DOMString color);
|
|
};
|