mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c7317b404d
--HG-- rename : content/media/test/test_play.html => content/media/test/test_play_events.html rename : content/media/test/test_progress2.html => content/media/test/test_progress.html rename : content/media/test/test_onloadedmetadata.html => content/media/test/test_replay_metadata.html rename : content/media/test/test_wav_trunc_seek.html => content/media/test/test_seek_out_of_range.html rename : content/media/test/test_bug495319.html => content/media/test/test_timeupdate_small_files.html rename : content/media/test/test_bug486646.html => content/media/test/test_video_to_canvas.html
103 lines
3.3 KiB
HTML
103 lines
3.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test playback of media files that should play OK</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
<script type="text/javascript" src="manifest.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
var PARALLEL_TESTS = 2;
|
|
|
|
var testIndex = 0;
|
|
var videos = [];
|
|
|
|
var testsWaiting = 0;
|
|
|
|
function startTests() {
|
|
for (var i = 0; i < videos.length; ++i) {
|
|
document.body.removeChild(videos[i]);
|
|
}
|
|
videos = [];
|
|
while (videos.length < PARALLEL_TESTS && testIndex < gPlayTests.length) {
|
|
var v = document.createElement('video');
|
|
var test = gPlayTests[testIndex];
|
|
++testIndex;
|
|
if (!v.canPlayType(test.type))
|
|
continue;
|
|
|
|
v.src = test.name;
|
|
v.name = test.name;
|
|
var check = function(test, v) { return function() {
|
|
is(test.name, v.name, "Name should match test.name #1");
|
|
checkMetadata(test.name, v, test);
|
|
}}(test, v);
|
|
var noLoad = function(test, v) { return function() {
|
|
ok(false, test.name + " should not fire 'load' event");
|
|
}}(test, v);
|
|
var checkEnded = function(test, v) { return function() {
|
|
if (test.duration) {
|
|
ok(Math.abs(v.currentTime - test.duration) < 0.1,
|
|
test.name + " current time at end: " + v.currentTime + " should be: " + test.duration);
|
|
}
|
|
is(test.name, v.name, "Name should match test.name #2");
|
|
is(v.readyState, v.HAVE_CURRENT_DATA, test.name + " checking readyState");
|
|
ok(v.readyState != v.NETWORK_LOADED, test.name + " shouldn't report NETWORK_LOADED");
|
|
ok(v.ended, test.name + " checking playback has ended");
|
|
--testsWaiting;
|
|
if (testsWaiting == 0) {
|
|
setTimeout(startTests, 0);
|
|
}
|
|
}}(test, v);
|
|
var checkSuspended = function(test, v) { return function() {
|
|
is(test.name, v.name, "Name should match test.name #3");
|
|
if (v.seenSuspend)
|
|
return;
|
|
|
|
v.seenSuspend = true;
|
|
ok(true, test.name + " got suspend");
|
|
--testsWaiting;
|
|
if (testsWaiting == 0) {
|
|
setTimeout(startTests, 0);
|
|
}
|
|
}}(test, v);
|
|
v.prevTime = 0;
|
|
var timeUpdate = function(test, v) { return function() {
|
|
is(test.name, v.name, "Name should match test.name #4");
|
|
checkMetadata(test.name, v, test);
|
|
ok(v.prevTime <= v.currentTime,
|
|
test.name + " time should run forwards: p=" +
|
|
v.prevTime + " c=" + v.currentTime);
|
|
v.prevTime = v.currentTime;
|
|
}}(test, v);
|
|
v.addEventListener("load", noLoad, false);
|
|
v.addEventListener("loadedmetadata", check, false);
|
|
v.addEventListener("timeupdate", timeUpdate, false);
|
|
|
|
// We should get "ended" and "suspend" events for every resource
|
|
v.addEventListener("ended", checkEnded, false);
|
|
v.addEventListener("suspend", checkSuspended, false);
|
|
testsWaiting += 2;
|
|
|
|
document.body.appendChild(v);
|
|
v.play();
|
|
videos.push(v);
|
|
}
|
|
if (videos.length == 0) {
|
|
// No new tests were spawned, perhaps the remaining tests on the list are
|
|
// not supported, or we just reached the end of the list.
|
|
SimpleTest.finish();
|
|
}
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addLoadEvent(startTests);
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|