summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_bug590870.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_bug590870.html')
-rw-r--r--dom/base/test/file_bug590870.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/dom/base/test/file_bug590870.html b/dom/base/test/file_bug590870.html
new file mode 100644
index 0000000000..4432b01d3c
--- /dev/null
+++ b/dom/base/test/file_bug590870.html
@@ -0,0 +1,16 @@
+<html>
+ <head>
+ <script>
+onload = function() {
+ var x = null;
+ try {
+ x = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "spacer");
+ } catch(ex) {}
+ window.parent.postMessage(x == null, "http://mochi.test:8888");
+}
+ </script>
+ </head>
+ <body>
+ Here be dragons!
+ </body>
+</html>