summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/transformed-line-stroke-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/transformed-line-stroke-ref.html')
-rw-r--r--layout/reftests/canvas/transformed-line-stroke-ref.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/canvas/transformed-line-stroke-ref.html b/layout/reftests/canvas/transformed-line-stroke-ref.html
new file mode 100644
index 0000000000..f8860e6cce
--- /dev/null
+++ b/layout/reftests/canvas/transformed-line-stroke-ref.html
@@ -0,0 +1,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>