summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/transformed-path-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/transformed-path-ref.html')
-rw-r--r--layout/reftests/canvas/transformed-path-ref.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/canvas/transformed-path-ref.html b/layout/reftests/canvas/transformed-path-ref.html
new file mode 100644
index 0000000000..69134f20fe
--- /dev/null
+++ b/layout/reftests/canvas/transformed-path-ref.html
@@ -0,0 +1,19 @@
+<html>
+<body>
+ <canvas width="500" height="500"></canvas>
+<script>
+ var canvas = document.getElementsByTagName('canvas')[0];
+ var ctx = canvas.getContext('2d');
+ ctx.scale(0.5, 0.5);
+
+ ctx.translate(41, 41.);
+ ctx.rect(0, 0, 100, 100);
+ ctx.moveTo(100,0);
+ ctx.quadraticCurveTo(200, 100, 300,0);
+ ctx.moveTo(300,0);
+ ctx.bezierCurveTo(400, 100, 500, -100, 600,0);
+
+ ctx.stroke();
+</script>
+</body>
+</html>