summaryrefslogtreecommitdiffstats
path: root/browser/components/originattributes/test/browser/test.html
blob: fe5c7a2cf7b2bd7091e7c5e89532c271fc5fca5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1260931</title>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script>
  window.onmessage = function(evt) {
    if (evt.data != "HI") {
      return;
    }

    window.parent.postMessage("OK", "https://example.net");
  };
  </script>
</head>
<body>
  Hello World.
</body>
</html>