Bug 1537986 - Make deviceId constraints in MST-getSettings.https.html use `exact`. r=jib

Depends on D33470

Differential Revision: https://phabricator.services.mozilla.com/D33472

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andreas Pehrson 2019-06-03 18:16:35 +00:00
Родитель 392f3fdc59
Коммит 2215f24966
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -28,7 +28,7 @@
const mediaStream2 = await navigator.mediaDevices.getUserMedia({
video: {
deviceId: settings1.deviceId,
deviceId: {exact: settings1.deviceId},
},
audio: false
});
@ -48,7 +48,7 @@
const mediaStream2 = await navigator.mediaDevices.getUserMedia({
video: {
deviceId: settings1.deviceId,
deviceId: {exact: settings1.deviceId},
width: {
ideal: settings1.width / 2,
},