summaryrefslogtreecommitdiffstats
path: root/dom/worklet/tests/test_console.html
blob: bc27fa9bf5228635e116fb34c75926150eb6d74b (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Worklet - Console</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">
const WORKLET_SCRIPT = "worklet_console.js";

function configureTest() {
  function consoleListener() {
    SpecialPowers.addObserver(this, "console-api-log-event");
  }

  consoleListener.prototype  = {
    observe(aSubject, aTopic, aData) {
      if (aTopic == "console-api-log-event") {
        var obj = aSubject.wrappedJSObject;
        if (obj.arguments[0] == "Hello world from a worklet") {
          ok(true, "Message received \\o/");
          is(obj.filename,
             new URL(WORKLET_SCRIPT, document.baseURI).toString());

          SpecialPowers.removeObserver(this, "console-api-log-event");
          SimpleTest.finish();
          return;
        }
      }
    }
  }

  var cl = new consoleListener();

  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();
  audioContext.audioWorklet.addModule(WORKLET_SCRIPT);
}

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