summaryrefslogtreecommitdiffstats
path: root/dom/worklet/tests/test_basic.html
blob: b13cadd6d186480295485d104f90a5099b2b438e (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Worklet</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript" src="common.js"></script>
</head>
<body>

<script type="application/javascript">

function configureTest() {
  return SpecialPowers.pushPrefEnv(
    {"set": [["dom.audioworklet.enabled", true],
             ["dom.worklet.enabled", true]]});
}

// This function is called into an iframe.
function runTestInIframe() {
  var audioContext = new AudioContext();
  ok(!!audioContext.audioWorklet, "audioContext.audioWorklet exists");

  // First loading
  audioContext.audioWorklet.addModule("common.js")
  .then(() => {
    ok(true, "Import should load a resource.");
  })

  // Second loading - same file
  .then(() => {
    return audioContext.audioWorklet.addModule("common.js")
  })
  .then(() => {
    ok(true, "Import should load a resource.");
  })

  // 3rd loading - a network error
  .then(() => {
    return audioContext.audioWorklet.addModule("404.js");
  })
  .then(() => {
    ok(false, "The loading should fail.");
  }, () => {
    ok(true, "The loading should fail.");
  })

  // 4th loading - a network error
  .then(() => {
    return audioContext.audioWorklet.addModule("404.js");
  })
  .then(() => {
    ok(false, "The loading should fail.");
  }, () => {
    ok(true, "The loading should fail.");
  })

  // done
  .then(() => {
    SimpleTest.finish();
  });
}

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