trisquel-icecat/icecat/dom/media/tests/crashtests/1764915.html

14 lines
342 B
HTML

<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>