mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
36 lines
787 B
HTML
36 lines
787 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=791330
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>PeerConnection test - operate on closed connection</title>
|
|
<script type="application/javascript">
|
|
function finish() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
function runTest() {
|
|
var pc = new mozRTCPeerConnection();
|
|
pc.close();
|
|
|
|
navigator.mozGetUserMedia({audio: true, fake: true}, function (stream) {
|
|
try {
|
|
pc.addStream(stream);
|
|
pc.createOffer(function (offer) {});
|
|
}
|
|
finally {
|
|
stream.stop();
|
|
|
|
finish();
|
|
}
|
|
}, function () {});
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(runTest, 100)">
|
|
</body>
|
|
</html>
|