summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_not_reset_playbackRate_when_removing_nonloaded_media_from_document.html
blob: f1b8cc8b1543b73f33c69fc645628f32f0a166c4 (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
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html>
<head>
  <title>Do not reset playback rate when removing non-loaded media from a document</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="manifest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script class="testbody" type="text/javascript">
/**
 * When removing media from a document, it should only trigger internal pause,
 * instead of the pause method, which would trigger loading process and reset
 * the media's playback rate for non-loaded media.
 */
async function startTest() {
  info(`create a media and append it to a document`);
  const audio = document.createElement("audio");
  document.body.appendChild(audio);

  info(`change audio's playbackRate and remove it from a document`);
  const expectedRate = 0.1;
  audio.playbackRate = expectedRate;
  await once(audio, "ratechange");
  is(audio.playbackRate, expectedRate,
    `${audio.playbackRate} is equal to ${expectedRate}`);
  audio.remove();

  info(`queue a macrotask to check if the playback rate is still unchanged`);
  setTimeout(() => {
    // If we unexpectedly reset the playback rate, it would happen in a
    // microtask when removing media from a document [1] (Await a stable state),
    // which would always be run before the macrotask.
    // [1] https://html.spec.whatwg.org/#playing-the-media-resource:remove-an-element-from-a-document
    is(audio.playbackRate, expectedRate,
      `${audio.playbackRate} is equal to ${expectedRate}`);
    SimpleTest.finish();
  }, 0);
}

SimpleTest.waitForExplicitFinish();
onload = startTest;

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