mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
18 lines
720 B
HTML
18 lines
720 B
HTML
<!doctype html>
|
|
<head>
|
|
<title>Test selectAudioOutput() without user activation</title>
|
|
<link rel="help" href="https://w3c.github.io/mediacapture-output/#dom-mediadevices-selectaudiooutput">
|
|
</head>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<script>
|
|
'use strict';
|
|
promise_test(t => {
|
|
const p = navigator.mediaDevices.selectAudioOutput();
|
|
// Race a settled promise to check that the returned promise is already
|
|
// rejected.
|
|
return promise_rejects_dom(
|
|
t, 'InvalidStateError', Promise.race([p, Promise.resolve()]),
|
|
'selectAudioOutput should have returned an already-rejected promise.');
|
|
}, `selectAudioOutput() before user activation`);
|
|
</script>
|