diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:46 +0100 |
commit | 13d7c09125f8eec703d0a43a9a87fc8aa08f7319 (patch) | |
tree | 70fd643c429cea5c1f9362c2674511d17a53f3b5 /Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl | |
parent | dc28c07fa526841e05e16161c74a6c23984f1dd5 (diff) | |
download | serenity-13d7c09125f8eec703d0a43a9a87fc8aa08f7319.zip |
Libraries: Move to Userland/Libraries/
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl b/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl new file mode 100644 index 0000000000..bcfa544c67 --- /dev/null +++ b/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl @@ -0,0 +1,29 @@ +interface CanvasRenderingContext2D { + + undefined fillRect(double x, double y, double w, double h); + undefined strokeRect(double x, double y, double w, double h); + + undefined scale(double x, double y); + undefined translate(double x, double y); + undefined rotate(double radians); + + undefined beginPath(); + undefined closePath(); + undefined fill(DOMString fillRule); + undefined stroke(); + undefined moveTo(double x, double y); + undefined lineTo(double x, double y); + undefined quadraticCurveTo(double cpx, double cpy, double x, double y); + + undefined drawImage(HTMLImageElement image, double dx, double dy); + + attribute DOMString fillStyle; + attribute DOMString strokeStyle; + attribute double lineWidth; + + ImageData createImageData(double sw, double sh); + undefined putImageData(ImageData imagedata, double dx, double dy); + + readonly attribute HTMLCanvasElement canvas; + +}; |