summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/729116.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/crashtests/729116.html')
-rw-r--r--dom/canvas/crashtests/729116.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/729116.html b/dom/canvas/crashtests/729116.html
new file mode 100644
index 0000000000..679f9d2965
--- /dev/null
+++ b/dom/canvas/crashtests/729116.html
@@ -0,0 +1,18 @@
+<html>
+<script language=javascript>
+
+function draw() {
+ var canv = document.getElementById("canv");
+ var ctx = canv.getContext("2d");
+ try {
+ canv.width = 50000;
+ } catch (e) { }
+
+ ctx.clearRect(0, 0, 10, 10);
+}
+
+</script>
+<body onload="draw()">
+<canvas id="canv" width="5" height="5"></canvas>
+</body>
+</html>