gecko-dev/dom/media/tests/crashtests/1185191.html
2017-10-26 09:05:03 -04:00

22 lines
295 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var a = new AudioContext();
var b = new BroadcastChannel("x");
a.addEventListener("statechange", bye, false);
}
function bye()
{
location = "data:text/html,2";
}
</script>
</head>
<body onload="boom();"></body>
</html>