Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: !webrtc
- Manifest: dom/media/tests/crashtests/crashtests.list
<html>
<head>
<script>
function start () {
const context = new AudioContext();
const {stream} = new MediaStreamAudioDestinationNode(context);
const [track] = stream.getTracks();
track.stop();
context.createMediaStreamTrackSource(track);
}
document.addEventListener('DOMContentLoaded', start);
</script>
</head>
</html>