Merge pull request #4616 from deepak1556/media_device_enumeration_patch

browser: allow enumeration of media device labels
This commit is contained in:
Cheng Zhao 2016-02-26 22:07:35 +08:00
commit b25c8ca621
3 changed files with 25 additions and 0 deletions

View file

@ -87,6 +87,20 @@ describe('chromium feature', function() {
});
});
describe('navigator.mediaDevices', function() {
if (process.env.TRAVIS === 'true') {
return;
}
it('can return labels of enumerated devices', function(done) {
navigator.mediaDevices.enumerateDevices().then((devices) => {
const result = devices.some((device) => !!device.label);
if (result)
done();
});
});
});
describe('navigator.language', function() {
it('should not be empty', function() {
assert.notEqual(navigator.language, '');