summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/audio-output/removeTrack-after-setSinkId.https.html
blob: 97db5f81e29ade84871f816a982724359da5e105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
  <title>Test source track removal after setSinkId does not crash</title>
</head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/common/gc.js"></script>
<script>
'use strict';
// This could be a crashtest, except that testdriver.bless() is not functional
// in crashtests.  promise_test() is more elegant than class="test-wait" anyway.
promise_test(async t => {
  await test_driver.bless('transient activation');
  const {deviceId, label} = await navigator.mediaDevices.selectAudioOutput();
  const audio = new Audio();
  await audio.setSinkId(deviceId);
  audio.srcObject = new AudioContext().createMediaStreamDestination().stream;
  audio.play();
  await new Promise(r => t.step_timeout(r, 0));
  audio.srcObject.removeTrack(audio.srcObject.getTracks()[0]);
  await garbageCollect();
});
</script>
</html>