summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/match_all_advanced_worker.js
blob: d1bc5ab323b50a98f713c694988ffcc2d0b15798 (plain)
1
2
3
4
5
onmessage = function(e) {
  self.clients.matchAll().then(function(clients) {
    e.source.postMessage(clients.length);
  });
};