mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
function test_seek8(v, seekTime, is, ok, finish) {
|
|
|
|
function startTest() {
|
|
v.currentTime = 1000;
|
|
}
|
|
|
|
function seekEnded() {
|
|
ok(Math.abs(v.currentTime - v.duration) < 0.2,
|
|
"currentTime " + v.currentTime + " close to " + v.duration);
|
|
finish();
|
|
}
|
|
|
|
v.addEventListener("loadedmetadata", startTest, false);
|
|
v.addEventListener("seeked", seekEnded, false);
|
|
|
|
}
|