content/media/test/seek3.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_seek3(v, seekTime, is, ok, finish) {
michael@0 2
michael@0 3 // Test seeking works if current time is set but video is not played.
michael@0 4 var startPassed = false;
michael@0 5 var completed = false;
michael@0 6 var gotTimeupdate = 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 timeupdate() {
michael@0 16 gotTimeupdate = true;
michael@0 17 v.removeEventListener("timeupdate", timeupdate, false);
michael@0 18 }
michael@0 19
michael@0 20 function seekStarted() {
michael@0 21 if (completed)
michael@0 22 return;
michael@0 23
michael@0 24 ok(v.currentTime >= seekTime - 0.1, "Video currentTime should be around " + seekTime + ": " + v.currentTime);
michael@0 25 v.addEventListener("timeupdate", timeupdate, false);
michael@0 26 startPassed = true;
michael@0 27 }
michael@0 28
michael@0 29 function seekEnded() {
michael@0 30 if (completed)
michael@0 31 return;
michael@0 32
michael@0 33 var t = v.currentTime;
michael@0 34 ok(Math.abs(t - seekTime) <= 0.1, "Video currentTime should be around " + seekTime + ": " + t);
michael@0 35 ok(gotTimeupdate, "Should have got timeupdate between seeking and seekended");
michael@0 36 completed = true;
michael@0 37 finish();
michael@0 38 }
michael@0 39
michael@0 40 v.addEventListener("loadedmetadata", startTest, false);
michael@0 41 v.addEventListener("seeking", seekStarted, false);
michael@0 42 v.addEventListener("seeked", seekEnded, false);
michael@0 43
michael@0 44 }

mercurial