| <canvas id="canvas" width="100" height="100"> |
| const canvas = document.getElementById("canvas"); |
| const ctx = canvas.getContext("2d"); |
| const { width, height } = canvas; |
| ctx.fillRect(0, 0, width, height); |
| function drawImage(image, scale) { |
| ctx.scale(1 / scale, 1 / scale); |
| ctx.drawImage(image, 0, 0, 1000, 1000, 0, 0, width * scale, height * scale); |
| testRunner.waitUntilDone(); |
| const image = new Image(); |
| image.src = `data:image/svg+xml, |
| <svg xmlns='http://www.w3.org/2000/svg' width='1000' height='1000'> |
| <rect width='1000' height='1000' fill='green'/> |