summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/973401.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/crashtests/973401.html')
-rw-r--r--dom/base/crashtests/973401.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/dom/base/crashtests/973401.html b/dom/base/crashtests/973401.html
new file mode 100644
index 0000000000..070548edd1
--- /dev/null
+++ b/dom/base/crashtests/973401.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<head>
+<script>
+
+function boom()
+{
+ var frame = document.createElement("iframe");
+ document.body.appendChild(frame);
+ var frameLoc = frame.contentWindow.location;
+ document.body.removeChild(frame)
+ frameLoc.origin;
+ document.documentElement.removeAttribute('class');
+}
+
+</script>
+</head>
+
+<body onload="boom();"></body>
+</html>