summaryrefslogtreecommitdiff
path: root/Base/home/anon/www/canvas-path.html
AgeCommit message (Collapse)Author
2020-06-17Base: Move all the HTML test content into /res/html/miscAndreas Kling
2020-05-26LibWeb: Add document.querySelector()Linus Groh
2020-04-23Base: Close head tag in canvas-path.html and give the document a titleEmanuele Torre
2020-04-16LibWeb: Add some basic path drawing functionality to the canvas elementAndreas Kling
This patch adds the following methods to CanvasRenderingContext2D: - beginPath() - moveTo(x, y) - lineTo(x, y) - closePath() - stroke() We also add the lineWidth property. :^)