summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasource/test/test_ResumeAfterClearing_mp4.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/media/mediasource/test/test_ResumeAfterClearing_mp4.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-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/mediasource/test/test_ResumeAfterClearing_mp4.html')
-rw-r--r--dom/media/mediasource/test/test_ResumeAfterClearing_mp4.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/dom/media/mediasource/test/test_ResumeAfterClearing_mp4.html b/dom/media/mediasource/test/test_ResumeAfterClearing_mp4.html
new file mode 100644
index 000000000..b6769cb1b
--- /dev/null
+++ b/dom/media/mediasource/test/test_ResumeAfterClearing_mp4.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<html><head>
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">
+ <title>MSE: Don't get stuck buffering for too long when we have frames to show</title>
+ <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
+ <script type="text/javascript" src="mediasource.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
+</head>
+<body>
+<pre id="test"><script class="testbody" type="text/javascript">
+
+SimpleTest.waitForExplicitFinish();
+
+var receivedSourceOpen = false;
+runWithMSE(function(ms, v) {
+ ms.addEventListener("sourceopen", function() {
+ ok(true, "Receive a sourceopen event");
+ ok(!receivedSourceOpen, "Should only receive one sourceopen for this test");
+ receivedSourceOpen = true;
+ var sb = ms.addSourceBuffer("video/mp4");
+ ok(sb, "Create a SourceBuffer");
+
+ sb.addEventListener('error', (e) => { ok(false, "Got Error: " + e); SimpleTest.finish(); });
+ fetchAndLoad(sb, 'bipbop/bipbop', ['init'], '.mp4')
+ .then(function() {
+ var promises = [];
+ promises.push(fetchAndLoad(sb, 'bipbop/bipbop', range(1,3), '.m4s'));
+ promises.push(once(v, "loadeddata"));
+ return Promise.all(promises);
+ }).then(function() {
+ // clear the entire sourcebuffer.
+ sb.remove(0, 5);
+ return once(sb, "updateend");
+ }).then(function() {
+ v.play();
+ // We have nothing to play, waiting will be fired.
+ return once(v, "waiting");
+ }).then(function() {
+ var promises = [];
+ promises.push(once(v, "playing"));
+ promises.push(fetchAndLoad(sb, 'bipbop/bipbop', range(1,4), '.m4s'));
+ return Promise.all(promises);
+ }).then(function() {
+ ms.endOfStream();
+ var promises = [];
+ promises.push(once(ms, "sourceended"));
+ promises.push(once(v, "ended"));
+ return Promise.all(promises);
+ }).then(SimpleTest.finish.bind(SimpleTest));
+ });
+});
+</script>
+</pre>
+</body>
+</html>