summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/466607-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/test/crashtests/466607-1.html')
-rw-r--r--dom/media/test/crashtests/466607-1.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/466607-1.html b/dom/media/test/crashtests/466607-1.html
new file mode 100644
index 0000000000..e154223efe
--- /dev/null
+++ b/dom/media/test/crashtests/466607-1.html
@@ -0,0 +1,14 @@
+<html>
+<head>
+<script type="text/javascript">
+
+function boom()
+{
+ document.body.appendChild(document.createElementNS("bar", "audio"));
+ document.body.appendChild(document.createElementNS("bar", "video"));
+}
+
+</script>
+</head>
+<body onload="boom();"></body>
+</html>