summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/844280.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/crashtests/844280.html')
-rw-r--r--dom/canvas/crashtests/844280.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/844280.html b/dom/canvas/crashtests/844280.html
new file mode 100644
index 0000000000..5d1e2dceab
--- /dev/null
+++ b/dom/canvas/crashtests/844280.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ var canvas = document.createElement("canvas");
+ canvas.setAttribute("width", "7623");
+ canvas.setAttribute("height", "14064");
+ canvas.getContext("experimental-webgl");
+}
+
+</script>
+</head>
+
+<body onload="boom();"></body>
+</html>