mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
809d74757c
--HG-- rename : content/media/test/test_seek1.html => content/media/test/seek1.js rename : content/media/test/test_seek3.html => content/media/test/seek2.js rename : content/media/test/test_seek4.html => content/media/test/seek3.js rename : content/media/test/test_seek5.html => content/media/test/seek4.js rename : content/media/test/test_seek6.html => content/media/test/seek5.js rename : content/media/test/test_seek7.html => content/media/test/seek6.js rename : content/media/test/test_seek8.html => content/media/test/seek7.js rename : content/media/test/test_seek9.html => content/media/test/seek8.js
21 lines
360 B
JavaScript
21 lines
360 B
JavaScript
function test_seek9(v, seekTime, is, ok, finish) {
|
|
|
|
var completed = false;
|
|
|
|
function startTest() {
|
|
v.currentTime = -1000;
|
|
}
|
|
|
|
function seekEnded() {
|
|
if (completed)
|
|
return false;
|
|
|
|
is(v.currentTime, 0, "currentTime clamped to 0");
|
|
finish();
|
|
}
|
|
|
|
v.addEventListener("loadedmetadata", startTest, false);
|
|
v.addEventListener("seeked", seekEnded, false);
|
|
|
|
}
|