Bug 822197 - Crashtest for assertion failure: cb_hdr and crash fim_process_event/FIM_DEBUG. r=ehugg

This commit is contained in:
Jason Smith 2013-01-28 10:38:06 -08:00
Родитель 469a4d48c5
Коммит 8c60c6f0b9
2 изменённых файлов: 24 добавлений и 0 удалений

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

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=822197
-->
<head>
<meta charset="utf-8">
<title>Bug 822197 - Many PeerConnections with CreateOffer</title>
<script type="application/javascript">
var pcArray = [];
function start() {
for(var i = 0; i < 70; i++) {
var pc = new mozRTCPeerConnection();
pc.createOffer(function() {}, function() {});
pcArray.push(pc);
}
}
</script>
</head>
<body onload="start();"></body>
</html>

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

@ -8,3 +8,4 @@ load 799419.html
load 801227.html load 801227.html
load 802982.html load 802982.html
load 812785.html load 812785.html
load 822197.html