Bug 791278 - Crash test for WebRTC crash [@sipcc::PeerConnectionImpl::SetLocalDescription]. r=jesup

This commit is contained in:
Henrik Skupin 2012-10-17 15:33:57 -04:00
Родитель 412ec49d18
Коммит fa81f0cb29
2 изменённых файлов: 21 добавлений и 0 удалений

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

@ -0,0 +1,20 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=791278
-->
<head>
<meta charset="utf-8">
<title>Simple PeerConnection Video Test - Invalid callback</title>
<script type="application/javascript">
var pc1 = new mozPeerConnection();
pc1.setLocalDescription(function() {});
var pc2 = new mozPeerConnection();
pc2.setRemoteDescription(function() {});
</script>
</head>
<body>
</body>
</html>

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

@ -1 +1,2 @@
pref(media.peerconnection.enabled,true) load 791270.html
pref(media.peerconnection.enabled,true) load 791278.html