mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b8821fd30c
--HG-- extra : rebase_source : d54cf6d92a20a5f7e6ce66042c8d489dc93f0c7a
76 lines
2.0 KiB
HTML
76 lines
2.0 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 startTest() {
|
|
if (completed)
|
|
return false;
|
|
v = document.getElementById('v');
|
|
v.play();
|
|
return false;
|
|
}
|
|
|
|
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;
|
|
var check = function(test, v) { return function() {
|
|
checkMetadata(test.name, v, test);
|
|
}}(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);
|
|
}
|
|
ok(v.ended, test.name + " checking playback has ended");
|
|
--testsWaiting;
|
|
if (testsWaiting == 0) {
|
|
setTimeout(startTests, 0);
|
|
}
|
|
}}(test, v);
|
|
v.addEventListener("loadedmetadata", check, false);
|
|
v.addEventListener("ended", checkEnded, false);
|
|
++testsWaiting;
|
|
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>
|