Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /mediacapture-image/takePhoto-without-PhotoCapabilities.https.window.html - WPT Dashboard Interop Dashboard
promise_test(async t => {
const track = new MediaStreamTrackGenerator('video');
const capturer = new ImageCapture(track);
const settings = await capturer.getPhotoSettings();
await promise_rejects_dom(t, 'UnknownError', capturer.takePhoto(settings));
}, 'exercise takePhoto() on a track without PhotoCapabilities');