Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: (os == 'mac')
- Manifest: dom/media/test/crashtests/crashtests.list
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
var a = new AudioContext();
var b = new BroadcastChannel("x");
a.addEventListener("statechange", bye, false);
}
function bye()
{
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();"></body>
</html>