summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasource/test/test_SplitAppendDelay.html
blob: 40183c3db05d6446b248d3af20a00f1661062cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML>
<html>
<head>
  <title>MSE: append segments with delay</title>
  <script 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();
SimpleTest.requestFlakyTimeout("untriaged");

runWithMSE(async (ms, v) => {
  await once(ms, "sourceopen");
  const sb = ms.addSourceBuffer("video/webm");

  const arrayBuffer = await fetchWithXHR("seek.webm");
  sb.appendBuffer(new Uint8Array(arrayBuffer, 0, 318));
  v.play();
  await once(sb, "updateend");
  await wait(1000);
  sb.appendBuffer(new Uint8Array(arrayBuffer, 318));
  await once(sb, "updateend");
  ms.endOfStream();
  await once(v, "ended");
  // XXX: Duration should be exactly 4.0, see bug 1065207.
  ok(Math.abs(v.duration - 4) <= 0.002, "Video has correct duration");
  ok(Math.abs(v.currentTime - 4) <= 0.002, "Video has played to end");
  SimpleTest.finish();
});

</script>
</pre>
</body>
</html>