summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/780392-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/crashtests/780392-1.html')
-rw-r--r--dom/canvas/crashtests/780392-1.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/780392-1.html b/dom/canvas/crashtests/780392-1.html
new file mode 100644
index 0000000000..2112c9a759
--- /dev/null
+++ b/dom/canvas/crashtests/780392-1.html
@@ -0,0 +1,10 @@
+<!doctype HTML>
+<html>
+<body>
+<canvas id="c" width="10000" height="10000"></canvas>
+<script>
+var ctx = document.getElementById("c").getContext("2d");
+ctx.fillText("Hello world!", 50, 50);
+</script>
+</body>
+</html>