summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.idl
AgeCommit message (Collapse)Author
2021-04-15LibWeb: Add a naive implemention of CanvasRenderingContext2D::fill_textIdan Horowitz
This doesnt actually account for several unimplemented attributes (like ltr/rtl, alignment, etc) yet, so this should be expanded in the future.
2021-04-15LibGfx+LibWeb: Wire up CanvasRenderingContext2D.ellipse()AnotherTest
Note that this is *extremely* naive, and not very good at being correct.
2021-04-14LibWeb: Implement the CanvasRenderingContext2D::rect path methodIdan Horowitz
This method adds a rectangle to the current 2D path.
2021-04-14LibWeb: Make CanvasRenderingContext2D::fill's fillRule argument optionalIdan Horowitz
As defined by the specification (and used by the website i am testing): interface mixin CanvasDrawPath { undefined fill(optional CanvasFillRule fillRule = "nonzero"); }
2021-03-15LibWeb: Add CanvasRenderingContext2D.clearRect()Andreas Kling
Similar to fillRect, except this API fills with transparent black.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling