mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
26 lines
728 B
HTML
26 lines
728 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 Play Video Twice", bug: "822109" });
|
|
/**
|
|
* Run a test that we can complete a video playback cycle twice in a row.
|
|
*/
|
|
runTest(function () {
|
|
return getUserMedia({video: true}).then(stream => {
|
|
var testVideo = createMediaElement('video', 'testVideo');
|
|
var streamPlayback = new LocalMediaStreamPlayback(testVideo, stream);
|
|
|
|
return streamPlayback.playMediaWithoutStoppingTracks(false)
|
|
.then(() => streamPlayback.playMedia(true));
|
|
});
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|