blob: c3e05b64b1a6c8e6dc1bb28c14055f13138ac73d (
plain)
1
2
3
4
5
6
7
8
9
|
self.addEventListener('message', e => {
URL.revokeObjectURL(e.data.url);
// Registering a new object URL will make absolutely sure that the revocation
// has propagated. Without this at least in chrome it is possible for the
// below postMessage to arrive at its destination before the revocation has
// been fully processed.
URL.createObjectURL(new Blob([]));
self.postMessage('revoked');
});
|