mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
39 lines
982 B
HTML
39 lines
982 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
|
|
<script type="application/javascript" src="blacksilence.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
createHTML({
|
|
title: "Test getUserMedia peerIdentity Constraint",
|
|
bug: "942367"
|
|
});
|
|
function theTest() {
|
|
function testPeerIdentityConstraint(withConstraint) {
|
|
var config = { audio: true, video: true };
|
|
if (withConstraint) {
|
|
config.peerIdentity = 'user@example.com';
|
|
}
|
|
info('getting media with constraints: ' + JSON.stringify(config));
|
|
return getUserMedia(config)
|
|
.then(stream => Promise.all([
|
|
audioIsSilence(withConstraint, stream),
|
|
videoIsBlack(withConstraint, stream)
|
|
]));
|
|
};
|
|
|
|
// both without and with the constraint
|
|
return testPeerIdentityConstraint(false)
|
|
.then(() => testPeerIdentityConstraint(true));
|
|
}
|
|
|
|
runTest(theTest);
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|