summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_play_promise_13.html
blob: aacab88895ac0b98fc93c8208b4698af89878a64 (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
47
48
49
<!DOCTYPE HTML>
<html>
<head>
  <title>Media test: promise-based play() method</title>
  <script 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>
</head>
<body>
<pre id="test">

<script>
// Name: loadAlgorithmDoesNotCancelTasks
// Case: re-invoke the load() on an element which had dispatched a task to resolve a promise.
// Expected result: the already dispatched promise should still be resolved with undefined.

let manager = new MediaTestManager;

function initTest(test, token) {
  manager.started(token);

  let element = document.createElement(getMajorMimeType(test.type));
  element.preload = "auto";
  element.src = test.name;

  // We must wait for "canplay" event; otherwise, invoke play() will lead to a
  // pending promise and will then be rejected by the following load().
  once(element, "canplay").then(() => {
    // The play() promise will be queued to be resolved immediately, which means
    // the promise is not in the pending list.
    element.play().then(
      (result) => {
        if (result == undefined) {
          ok(true, `${token} is resolved with ${result}.`);
        } else {
          ok(false, `${token} is resolved with ${result}.`);
        }
      },
      (error) => {
        ok(false, `${token} is rejected with ${error.name}.`);
      }
    ).then( () => { manager.finished(token); } );
    element.src = test.name; // Re-invoke the load algorithm again.
  });
}

manager.runTests(gSmallTests, initTest);

</script>