Bug 1263738: Add fake:true to getUserMedia() use in a Crashtest r=jib

MozReview-Commit-ID: 2dLglIUFSVQ
This commit is contained in:
Randell Jesup 2016-04-11 17:30:37 -04:00
Родитель cb5f591b1b
Коммит ac06812534
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1,7 +1,7 @@
<html class="reftest-wait">
<audio id="testAudio" controls></audio>
<script type="text/javascript">
navigator.mozGetUserMedia({audio: true}, function(stream) {
navigator.mozGetUserMedia({audio: true, fake: true}, function(stream) {
stream.getAudioTracks()[0].enabled = false;
var testAudio = document.getElementById('testAudio');
// Wait some time for good measure