Bug 802982 - Crash test for excessive getUserMedia calls. r=jesup

This commit is contained in:
Jason Smith 2012-12-03 00:56:54 -08:00
parent 930c7a9679
commit 4daa5fc68b
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=802982
-->
<head>
<meta charset="utf-8">
<title>Excessive getUserMedia calls</title>
<script type="application/javascript">
function boom()
{
for (var j = 0; j < 100; ++j) {
navigator.mozGetUserMedia({}, {}, {});
}
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -5,3 +5,4 @@ load 791270.html
load 791278.html
load 791330.html
load 801227.html
load 802982.html