summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug1292522_same_domain_with_different_port_number.html
blob: b7a443f6a77346a1e1e7567842f7686d62bb3575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1292522
If we set domain using document.domain = "...", a page and iframe must be
treated as the same domain if they differ in port number,
e.g. test1.example.org:8000 and test2.example.org:80 are the same domain if
document.domain = "example.org".
-->
<head>
  <title>Test for Bug 1292522</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>        
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
  <body>
    <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1292522">Mozilla Bug 1292522</a>
    <p id="display"></p>

    <pre id="test">
      <script class="testbody" type="text/javascript">

        if (navigator.platform.startsWith("Linux")) {
          SimpleTest.expectAssertions(0, 1);
        }
        SimpleTest.waitForExplicitFinish();
        window.addEventListener("message", onMessageReceived);

        var page;

        function onMessageReceived(event)
        {
          is(event.data, "testiframe", "Must be able to access the variable," +
                                       " because page and iframe are the " +
                                       "same domain.");
          page.close();
          SimpleTest.finish();
        }

        page = window.open("http://test1.example.org:8000/tests/dom/html/test/bug1292522_page.html");
      </script>
    </pre>
  </body>
</html>