зеркало из https://github.com/mozilla/gecko-dev.git
Bug 791330 - Crashtest for WebRTC crash [@ mozilla::NrIceCtx::GetGlobalAttributes], r=jesup
This commit is contained in:
Родитель
4a3a65feec
Коммит
51c558ac59
|
@ -0,0 +1,29 @@
|
|||
<!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 = mozRTCPeerConnection();
|
||||
pc.close();
|
||||
|
||||
navigator.mozGetUserMedia({audio: true, fake: true}, function (stream) {
|
||||
pc.addStream(stream);
|
||||
pc.createOffer(function (offer) {
|
||||
}, finish);
|
||||
}, function () {});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="setTimeout(runTest, 100)">
|
||||
</body>
|
||||
</html>
|
|
@ -1,3 +1,4 @@
|
|||
pref(media.peerconnection.enabled,true) load 780790.html
|
||||
pref(media.peerconnection.enabled,true) load 791270.html
|
||||
pref(media.peerconnection.enabled,true) load 791278.html
|
||||
pref(media.peerconnection.enabled,true) load 791330.html
|
||||
|
|
Загрузка…
Ссылка в новой задаче