blob: f1559aca39b6d4ff079cff9f41bae3409062ff09 [file] [log] [blame]
importScripts('test-helpers.sub.js');
var page_url = normalizeURL('../clients-matchall-on-evaluation.https.html');
self.clients.matchAll({includeUncontrolled: true})
.then(function(clients) {
clients.forEach(function(client) {
if (client.url == page_url)
client.postMessage('matched');
});
});