Bug 791330 - Crashtest for WebRTC crash [@ mozilla::NrIceCtx::GetGlobalAttributes], r=jesup

This commit is contained in:
Henrik Skupin 2012-10-23 16:18:09 -04:00
Родитель 4a3a65feec
Коммит 51c558ac59
2 изменённых файлов: 30 добавлений и 0 удалений

Просмотреть файл

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