diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/media/test/test_seek-6.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/media/test/test_seek-6.html')
-rw-r--r-- | dom/media/test/test_seek-6.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dom/media/test/test_seek-6.html b/dom/media/test/test_seek-6.html new file mode 100644 index 000000000..2c1063dd4 --- /dev/null +++ b/dom/media/test/test_seek-6.html @@ -0,0 +1,65 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Media test: seek tests</title> + <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> + <script type="text/javascript" src="manifest.js"></script> + <script type="text/javascript" src="seek_support.js"></script> +</head> +<body> +<pre id="test"> +<script class="testbody" type="text/javascript"> + +// The data being used in these tests is specified in manifest.js. +// The functions to build the test array and to run a specific test are in +// seek_support.js. + +const SEEK_TEST_NUMBER = 6; + +function test_seek6(v, seekTime, is, ok, finish) { + +// Test for bug identified by Chris Pearce in comment 40 on +// bug 449159. +var seekCount = 0; +var completed = false; +var interval; +var sum = 0; + +function poll() { + sum += v.currentTime; +} + +function startTest() { + if (completed) + return; + interval = setInterval(poll, 10); + v.currentTime = Math.random() * v.duration; +} + +function seekEnded() { + if (completed) + return; + + seekCount++; + ok(true, "Seek " + seekCount); + if (seekCount == 3) { + clearInterval(interval); + completed = true; + finish(); + } else { + v.currentTime = Math.random() * v.duration; + } +} + +v.addEventListener("loadedmetadata", startTest, false); +v.addEventListener("seeked", seekEnded, false); + +} + +manager.runTests(createTestArray(), startTest); + +</script> +</pre> +</body> +</html> |