summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/327694.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/crashtests/327694.html')
-rw-r--r--dom/base/crashtests/327694.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/dom/base/crashtests/327694.html b/dom/base/crashtests/327694.html
new file mode 100644
index 0000000000..132c02cf82
--- /dev/null
+++ b/dom/base/crashtests/327694.html
@@ -0,0 +1,17 @@
+<html> <head>
+
+<script>
+
+function init()
+{
+ var y = document.getElementById("tt");
+ var z = y.firstChild;
+ y.removeChild(z);
+ z.text;
+}
+
+window.addEventListener("load", init);
+
+</script>
+ </head> <body> <div id="tt"><a href="http://www.mozilla.org">Foo</a></div>
+ </body> </html>