blob: 82534caac7dd59d60bf24a3626b3c2b8f66f4331 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<script>
window.addEventListener('load', async () => {
const frame = document.createElement('frame')
document.documentElement.appendChild(frame)
const peer = new RTCPeerConnection()
await peer.setRemoteDescription({}, () => {}, async () => await peer.getIdentityAssertion())
peer.close()
})
</script>
</head>
</html>
|