summaryrefslogtreecommitdiffstats
path: root/devtools/shared/commands/resource/tests/test_service_worker.js
blob: 0ed8942239af08b0ca153e3aa67567304b1a23f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// We don't need any computation in the worker,
// but at least register a fetch listener so that
// we force instantiating the SW when loading the page.
self.onfetch = function () {
  // do nothing.
};