summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/WorkerDebuggerGlobalScope.enterEventLoop_childWorker.js
blob: 7f33253af997d92cc4a93b08ab22a717f4e912af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";

function f() {
  debugger;
}

self.onmessage = function(event) {
  switch (event.data) {
    case "ping":
      debugger;
      postMessage("pong");
      break;
  }
};