Fri, 16 Jan 2015 04:50:19 +0100
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_seek12(v, seekTime, is, ok, finish) { |
michael@0 | 2 | var completed = false; |
michael@0 | 3 | |
michael@0 | 4 | function startTest() { |
michael@0 | 5 | if (completed) |
michael@0 | 6 | return; |
michael@0 | 7 | ok(!v.seeking, "seeking should default to false"); |
michael@0 | 8 | v.currentTime = seekTime; |
michael@0 | 9 | is(v.currentTime, seekTime, "currentTime must report seek target immediately"); |
michael@0 | 10 | is(v.seeking, true, "seeking flag on start should be true"); |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | function seekStarted() { |
michael@0 | 14 | if (completed) |
michael@0 | 15 | return; |
michael@0 | 16 | //is(v.currentTime, seekTime, "seeking: currentTime must be seekTime"); |
michael@0 | 17 | ok(Math.abs(v.currentTime - seekTime) < 0.01, "seeking: currentTime must be seekTime"); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function seekEnded() { |
michael@0 | 21 | if (completed) |
michael@0 | 22 | return; |
michael@0 | 23 | completed = true; |
michael@0 | 24 | //is(v.currentTime, seekTime, "seeked: currentTime must be seekTime"); |
michael@0 | 25 | ok(Math.abs(v.currentTime - seekTime) < 0.01, "seeked: currentTime must be seekTime"); |
michael@0 | 26 | is(v.seeking, false, "seeking flag on end should be false"); |
michael@0 | 27 | finish(); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | v.addEventListener("loadedmetadata", startTest, false); |
michael@0 | 31 | v.addEventListener("seeking", seekStarted, false); |
michael@0 | 32 | v.addEventListener("seeked", seekEnded, false); |
michael@0 | 33 | } |