summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/646184.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/crashtests/646184.html')
-rw-r--r--dom/base/crashtests/646184.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/dom/base/crashtests/646184.html b/dom/base/crashtests/646184.html
new file mode 100644
index 0000000000..a4a6ac4907
--- /dev/null
+++ b/dom/base/crashtests/646184.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ var f = document.getElementById("f");
+ var w = f.contentWindow;
+ f.remove();
+ w.localStorage;
+}
+
+</script>
+</head>
+<body onload="boom();"><iframe id="f" src="data:text/html,1"></iframe></body>
+</html>