summaryrefslogtreecommitdiffstats
path: root/dom/worklet/tests/test_import_with_cache.html
blob: de1744f9cc8215ece06dee0d88a08a22d647393d (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>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();
  function loading() {
    audioContext.audioWorklet.addModule("server_import_with_cache.sjs")
    .then(() => {
      ok(true, "Import should load a resource.");
    }, () => {
      ok(false, "Import should load a resource.");
    })
    .then(() => {
      done();
    });
  }

  var count = 0;
  const MAX = 10;

  function done() {
    if (++count == MAX) {
      SimpleTest.finish();
    }
  }

  for (var i = 0; i < MAX; ++i) {
    loading();
  }
}
</script>
</body>
</html>