Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE HTML>
<html class="reftest-wait">
<!--
-->
<head>
<meta charset="utf-8">
<title>Abort due to page reload</title>
<script type="application/javascript">
var pc = new RTCPeerConnection();
var index = localStorage.index || 0;
if (index < 3) {
localStorage.index = index + 1;
window.location.reload();
}
function finish() {
delete localStorage["index"];
pc.close();
document.documentElement.removeAttribute("class");
}
navigator.mozGetUserMedia({ audio: true, fake: true }, function (aStream) {
pc.addStream(aStream);
finish();
}, finish);
</script>
</head>
<body>
</body>
</html>