bug 799419 - crashtest for 2 peer connections create and close with fake video. r=jesup

This commit is contained in:
Jason Smith 2012-12-04 01:02:28 -08:00
parent 157805f7c8
commit 670f0ff137
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=799419
-->
<head>
<meta charset="utf-8">
<title>2 Peer Connections Create and Close + Fake Video</title>
<script type="application/javascript">
function boom() {
var v0 = mozRTCPeerConnection();
var v1 = mozRTCPeerConnection();
var v2 = document.getElementById("pc1video");
var v3 = document.getElementById("pc2video");
navigator.mozGetUserMedia({video:true, fake: true},
function(stream) {}, function() {});
v0.close();
v1.close();
}
</script>
<body onload="boom()">
<video id="pc1video" width="100" height="100" controls></video>
<video id="pc2video" width="100" height="100" controls></video>
</body>
</html>

View File

@ -4,6 +4,7 @@ load 780790.html
load 791270.html
load 791278.html
load 791330.html
load 799419.html
load 801227.html
load 802982.html
load 812785.html