summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/WorkerDebugger.console_debugger.js
blob: a8b2493200252922f2becf55345b227d68e3c88e (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
"use strict";

function ok(a, msg) {
  postMessage(JSON.stringify({ type: "status", what: !!a, msg }));
}

function is(a, b, msg) {
  ok(a === b, msg);
}

function finish() {
  postMessage(JSON.stringify({ type: "finish" }));
}

function magic() {
  console.log("Hello from the debugger script!");

  var foo = retrieveConsoleEvents();
  ok(Array.isArray(foo), "We received an array.");
  ok(foo.length >= 2, "At least 2 messages.");

  is(
    foo[0].arguments[0],
    "Can you see this console message?",
    "First message ok."
  );
  is(
    foo[1].arguments[0],
    "Can you see this second console message?",
    "Second message ok."
  );

  setConsoleEventHandler(function (consoleData) {
    is(consoleData.arguments[0], "Random message.", "Random message ok!");

    // The consoleEventHandler can be null.
    setConsoleEventHandler(null);

    finish();
  });
}

this.onmessage = function (event) {
  switch (event.data) {
    case "do magic":
      magic();
      break;
  }
};