mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 18:38:36 +00:00
31 lines
759 B
HTML
31 lines
759 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<pre id="test">
|
||
|
<script type="application/javascript">
|
||
|
createHTML({
|
||
|
title: "getUserMedia Basic Video Test",
|
||
|
bug: "781534"
|
||
|
});
|
||
|
/**
|
||
|
* Run a test to verify that we can complete a start and stop media playback
|
||
|
* cycle for an video LocalMediaStream on a video HTMLMediaElement.
|
||
|
*/
|
||
|
runTest(function () {
|
||
|
var testVideo = createMediaElement('video', 'testVideo');
|
||
|
var constraints = {video: true};
|
||
|
|
||
|
return getUserMedia(constraints).then(stream => {
|
||
|
var playback = new LocalMediaStreamPlayback(testVideo, stream);
|
||
|
return playback.playMedia(false);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
</pre>
|
||
|
</body>
|
||
|
</html>
|