summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/dom-level0/child_ip_address.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/mochitest/dom-level0/child_ip_address.html')
-rw-r--r--dom/tests/mochitest/dom-level0/child_ip_address.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/dom/tests/mochitest/dom-level0/child_ip_address.html b/dom/tests/mochitest/dom-level0/child_ip_address.html
new file mode 100644
index 0000000000..24c1f0ba30
--- /dev/null
+++ b/dom/tests/mochitest/dom-level0/child_ip_address.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Child window at 127.0.0.1</title>
+ <script type="application/javascript">
+function run()
+{
+ var target = document.getElementById("location");
+ target.textContent = location.hostname + ":" + (location.port || 80);
+
+ var message = "child-response";
+
+ var domain = document.domain;
+ if (domain !== "127.0.0.1")
+ message += " wrong-initial-domain(" + domain + ")";
+
+ try
+ {
+ document.domain = "0.0.1";
+ domain = document.domain;
+ message += " ip-address-shortened-to(" + domain + ")";
+ }
+ catch (e)
+ {
+ domain = document.domain;
+ if (domain !== "127.0.0.1")
+ message += " ip-address-mutated-on-throw(" + domain + ")";
+ }
+
+ window.parent.postMessage(message, "http://mochi.test:8888");
+}
+
+window.addEventListener("load", run);
+ </script>
+</head>
+<body>
+<h1 id="location">Somewhere!</h1>
+</body>
+</html>