blob: 51ca043073fb8da3c44608de6a91feba20cff81e (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script>
const gConnections = [];
window.addEventListener("message", event => {
const ackTarget = window.parent ? window.parent : window;
switch (event.data) {
case "push-peer-connection":
gConnections.push(new RTCPeerConnection());
ackTarget.postMessage("ack", "*");
break;
case "pop-peer-connection":
gConnections.pop().close();
ackTarget.postMessage("ack", "*");
break;
}
});
window.addEventListener("DOMContentLoaded", function() {
document.getElementById("msg").innerText = location.host;
});
</script>
</head>
<body><div id="msg"></div></body>
</html>
|