summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/transformed-line-stroke-ref.html
blob: f8860e6cce7236802b04c70350d759366c9a4408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<canvas id=c></canvas>
<script>
const canvas = document.getElementById("c");
const ctx = canvas.getContext("2d");

canvas.width = 600;
canvas.height = 300;


ctx.strokeStyle = "rgba(0, 0, 0, 1)";
ctx.beginPath();
ctx.moveTo(88, 137.5);
ctx.lineTo(736, 137.5);
ctx.stroke();
</script>