summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/743499-negative-size.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/crashtests/743499-negative-size.html')
-rw-r--r--dom/canvas/crashtests/743499-negative-size.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/743499-negative-size.html b/dom/canvas/crashtests/743499-negative-size.html
new file mode 100644
index 0000000000..7cfcd55b2a
--- /dev/null
+++ b/dom/canvas/crashtests/743499-negative-size.html
@@ -0,0 +1,22 @@
+<html>
+<head>
+ <title></title>
+ <script type="text/javascript">
+ function go() {
+ var canvas = document.createElement("canvas");
+ var ctx = canvas.getContext('2d');
+ ctx.globalAlpha = 4
+ ctx.lineCap = "foo"
+ ctx.strokeRect(256,1024,8,4)
+ ctx.shadowColor = "black"
+ ctx.shadowOffsetY = 64
+ ctx.stroke()
+ ctx.moveTo(32,1024)
+ ctx.closePath()
+ }
+ </script>
+</head>
+<body onload="go()">
+<canvas id="canvas"></canvas>
+</body>
+</html> \ No newline at end of file