// The data being used in these tests is specified in manifest.js.
// The functions to build the test array and to run a specific test are in
// seek_support.js.
PARALLEL_TESTS = 1;
const SEEK_TEST_NUMBER = 2;
function test_seek2(v, seekTime, is, ok, finish) {
// Test seeking works if current time is set before video is
// playing. var startPassed = false; var endPassed = false; var completed = false;
function startTest() {
if (completed)
return;
v.currentTime=seekTime;
v.play();
}
function seekStarted() {
if (completed)
return;
ok(v.currentTime >= seekTime - 0.1, "Video currentTime should be around " + seekTime + ": " + v.currentTime);
startPassed = true;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.