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