summaryrefslogtreecommitdiffstats
path: root/dom/security/test/https-only/file_websocket_exceptions_iframe.html
blob: 23c6af2d45d407e359f913b9093005aa464a06ed (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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<script>

window.addEventListener("message", receiveMessage);
function receiveMessage(event) {
  window.removeEventListener("message", receiveMessage);

  var mySocket = new WebSocket("ws://example.com/tests/dom/security/test/https-only/file_upgrade_insecure");
  mySocket.onopen = function(e) {
    parent.dispatchEvent(new CustomEvent("WebSocketEnded", {
      detail: { url: mySocket.url, state: "onopen" }
    }));
    mySocket.close();
  };
  mySocket.onerror = function(e) {
    parent.dispatchEvent(new CustomEvent("WebSocketEnded", {
      detail: { url: mySocket.url, state: "onerror" }
    }));
    mySocket.close();
  };
}
</script>
</head>
<body>
  Https-Only: WebSocket exemption test in iframe</br>
</body>
</html>