mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
54 lines
1.7 KiB
HTML
54 lines
1.7 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=822109
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>mozGetUserMedia Stop Video Stream With Followup Video</title>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="head.js"></script>
|
|
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=822109">mozGetUserMedia Stop Video Stream With Followup Video</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
<video id="testVideo"></video>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/**
|
|
* Run a test to verify that I can complete an audio gum playback in a media
|
|
* element, stop the stream, and then complete another audio gum playback
|
|
* in a media element.
|
|
*/
|
|
runTest(function () {
|
|
getUserMedia({video: true}, function(firstStream) {
|
|
var testVideo = document.getElementById('testVideo');
|
|
var streamPlayback = new LocalMediaStreamPlayback(testVideo,
|
|
firstStream);
|
|
|
|
streamPlayback.playMediaWithStreamStop(false, function() {
|
|
getUserMedia({video: true}, function(secondStream) {
|
|
streamPlayback.mediaStream = secondStream;
|
|
|
|
streamPlayback.playMedia(false, function() {
|
|
secondStream.stop();
|
|
SimpleTest.finish();
|
|
}, unexpectedCallbackAndFinish(new Error));
|
|
|
|
}, unexpectedCallbackAndFinish(new Error));
|
|
|
|
}, unexpectedCallbackAndFinish(new Error));
|
|
|
|
}, unexpectedCallbackAndFinish(new Error));
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|