summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/779426.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/crashtests/779426.html')
-rw-r--r--dom/canvas/crashtests/779426.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/779426.html b/dom/canvas/crashtests/779426.html
new file mode 100644
index 0000000000..ded3455b81
--- /dev/null
+++ b/dom/canvas/crashtests/779426.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ var canvas = document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas');
+ var canvas2d = canvas.getContext('2d');
+ canvas2d.rect(0, 0, 1, 1);
+ canvas2d.transform(1, 0, 0, 1, 0, 0);
+ canvas.setAttributeNS(null, "height", "99");
+ canvas2d.rect(0, 0, 1, 1);
+}
+
+</script>
+</head>
+<body onload="boom();"></body>
+</html>