mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,42 @@
|
|||
<!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 shall receive 'loadedmetadata' without play()ing",
|
||||
bug: "1149494"
|
||||
});
|
||||
/**
|
||||
* Run a test to verify that we will always get 'loadedmetadata' from a video
|
||||
* HTMLMediaElement playing a gUM MediaStream.
|
||||
*/
|
||||
runTest(() => {
|
||||
var testVideo = createMediaElement('video', 'testVideo');
|
||||
var constraints = {video: true};
|
||||
|
||||
return getUserMedia(constraints).then(stream => {
|
||||
var playback = new LocalMediaStreamPlayback(testVideo, stream);
|
||||
var video = playback.mediaElement;
|
||||
|
||||
video.srcObject = stream;
|
||||
return new Promise(resolve => {
|
||||
ok(playback.mediaElement.paused,
|
||||
"Media element should be paused before play()ing");
|
||||
video.addEventListener('loadedmetadata', function() {
|
||||
ok(video.videoWidth > 0, "Expected nonzero video width");
|
||||
ok(video.videoHeight > 0, "Expected nonzero video width");
|
||||
resolve();
|
||||
});
|
||||
})
|
||||
.then(() => stream.getTracks().forEach(t => t.stop()));
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue