Bug 1604941 - Add crashtest. r=padenot

Depends on D56086

Differential Revision: https://phabricator.services.mozilla.com/D57695

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andreas Pehrson 2019-12-19 13:17:44 +00:00
Родитель 9c280bf166
Коммит fe6925d358
2 изменённых файлов: 23 добавлений и 0 удалений

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

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
async function boom()
{
await SpecialPowers.pushPrefEnv({"set": [
["media.cubeb.force_null_context", true],
]});
new Audio().mozCaptureStreamUntilEnded();
var ac = new window.AudioContext();
ac.resume();
ac.close();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();"></body>
</html>

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

@ -134,3 +134,4 @@ load 1575271.html
load 1577184.html
pref(media.autoplay.default,0) load 1587248.html
load 1594466.html
load 1604941.html