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-10.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-10.html')
-rw-r--r-- | dom/media/test/test_seek-10.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dom/media/test/test_seek-10.html b/dom/media/test/test_seek-10.html new file mode 100644 index 000000000..7a16397b3 --- /dev/null +++ b/dom/media/test/test_seek-10.html @@ -0,0 +1,56 @@ +<!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 = 10; + +function test_seek10(v, seekTime, is, ok, finish) { + +// Test bug 523335 - ensure that if we close a stream while seeking, we +// don't hang during shutdown. This test won't "fail" per se if it's regressed, +// it will instead start to cause random hangs in the mochitest harness on +// shutdown. + +function startTest() { + // Must be duration*0.9 rather than seekTime, else we don't hit that problem. + // This is probably due to the seek bisection finishing too quickly, before + // we can close the stream. + v.currentTime = v.duration * 0.9; +} + +function done(evt) { + ok(true, "We don't acutally test anything..."); + finish(); +} + +function seeking() { + ok(v.currentTime >= seekTime - 0.1, "Video currentTime should be around " + seekTime + ": " + v.currentTime); + v.onerror = done; + v.src = "not a valid video file."; + v.load(); // Cause the existing stream to close. +} + +v.addEventListener("loadeddata", startTest, false); +v.addEventListener("seeking", seeking, false); + +} + +manager.runTests(createTestArray(), startTest); + +</script> +</pre> +</body> +</html> |