blob: 21c6c2c4c2c3887b97f3c232f7fa2c1e2d54d842 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
var onReply = function(id) {
chrome.test.runTests([
function testGetUserMedia() {
navigator.webkitGetUserMedia(
{
video:
{
'mandatory':
{
chromeMediaSource: 'tab',
chromeMediaSourceId: id
}
},
audio: false
}, chrome.test.fail, chrome.test.succeed);
}]);
};
chrome.test.notifyPass();
chrome.test.sendMessage('ready', onReply);