summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/non-automated/navigator-onLine.js
blob: 592b286bb35261c75f79cd395012e7e894053719 (plain)
1
2
3
4
5
6
7
8
9
10
11
if ('onmessage' in self) { // dedicated worker
  onmessage = function(e) {
    postMessage(navigator.onLine);
  }
} else { // shared worker
  onconnect = function(e) {
    e.ports[0].onmessage = function(e) {
      this.postMessage(navigator.onLine);
    }
  }
}