content/media/test/seek5.js

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

michael@0 1 function test_seek5(v, seekTime, is, ok, finish) {
michael@0 2
michael@0 3 // Test for a seek, followed by a play before the seek completes, ensure we play at the end of the seek.
michael@0 4 var startPassed = false;
michael@0 5 var endPassed = false;
michael@0 6 var completed = false;
michael@0 7
michael@0 8 function startTest() {
michael@0 9 if (completed)
michael@0 10 return;
michael@0 11
michael@0 12 v.currentTime=seekTime;
michael@0 13 }
michael@0 14
michael@0 15 function seekStarted() {
michael@0 16 if (completed)
michael@0 17 return;
michael@0 18 ok(v.currentTime >= seekTime - 0.1, "Video currentTime should be around " + seekTime + ": " + v.currentTime);
michael@0 19 startPassed = true;
michael@0 20 v.play();
michael@0 21 }
michael@0 22
michael@0 23 function seekEnded() {
michael@0 24 if (completed)
michael@0 25 return;
michael@0 26 endPassed = true;
michael@0 27 }
michael@0 28
michael@0 29 function playbackEnded() {
michael@0 30 if (completed)
michael@0 31 return;
michael@0 32 ok(startPassed, "Got seeking event");
michael@0 33 ok(endPassed, "Got seeked event");
michael@0 34 completed = true;
michael@0 35 finish();
michael@0 36 }
michael@0 37
michael@0 38 v.addEventListener("ended", playbackEnded, false);
michael@0 39 v.addEventListener("loadedmetadata", startTest, false);
michael@0 40 v.addEventListener("seeking", seekStarted, false);
michael@0 41 v.addEventListener("seeked", seekEnded, false);
michael@0 42
michael@0 43 }

mercurial