mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 802982 - Crash test for excessive getUserMedia calls. r=jesup
This commit is contained in:
parent
930c7a9679
commit
4daa5fc68b
22
dom/media/tests/crashtests/802982.html
Normal file
22
dom/media/tests/crashtests/802982.html
Normal 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>
|
@ -5,3 +5,4 @@ load 791270.html
|
||||
load 791278.html
|
||||
load 791330.html
|
||||
load 801227.html
|
||||
load 802982.html
|
||||
|
Loading…
Reference in New Issue
Block a user