summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/746495.html
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/tests/crashtests/746495.html')
-rw-r--r--gfx/tests/crashtests/746495.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/gfx/tests/crashtests/746495.html b/gfx/tests/crashtests/746495.html
new file mode 100644
index 0000000000..d3a6f943b2
--- /dev/null
+++ b/gfx/tests/crashtests/746495.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ var ctx = document.querySelector("canvas").getContext('2d');
+ ctx.scale(69.25, 61);
+ ctx.transform(87.875, 89.5, 317.6666666666667, 86.5, 93, 196);
+ ctx.bezierCurveTo(30.142857142857142, 13926147670, 66.66666666666667, 243.66666666666666, 42.6, 85.5);
+ ctx.arc(1.6, 364955956612165500, 110.375, 15.1, 80.55555555555556, 0);
+ ctx.shadowColor = "green";
+ ctx.shadowOffsetY = 754;
+ ctx.lineJoin = 'round';
+ ctx.setTransform(95.125, 11, 834, 34.5, 265.3333333333333, 26.4);
+ ctx.stroke();
+}
+
+</script>
+</head>
+<body onload="boom();"><canvas width="100" height="100"></canvas></body>
+</html>