summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mediacapture-image/takePhoto-without-PhotoCapabilities.https.window.js
blob: 96eb253ccd37fb126a3790fd964e15c583724f38 (plain)
1
2
3
4
5
6
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');