Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
    • /webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSource-mediaStreamAudioDestination-stream-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<script>
var context = new AudioContext();
var stream = (new MediaStreamAudioDestinationNode(context)).stream;
new MediaStreamAudioSourceNode(context,{mediaStream:stream}) ;
new MediaStreamAudioSourceNode(context,{mediaStream:stream});
</script>