// 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.
const SEEK_TEST_NUMBER = 4;
function test_seek4(v, seekTime, is, ok, finish) {
// Test for a seek, followed by another seek before the first is complete. var seekCount = 0; var completed = false;
function startTest() {
if (completed)
return;
v.currentTime=seekTime;
v._seekTarget=seekTime;
}
function seekStarted() {
if (completed)
return;
seekCount += 1;
ok(v.currentTime >= v._seekTarget - 0.1, "Video currentTime should be around " + v._seekTarget + ": " + v.currentTime);
if (seekCount == 1) {
v.currentTime=seekTime/2;
v._seekTarget=seekTime/2;
}
}
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.