Files
Kmake/test/fixtures/wpt/FileAPI/url/resources/revoke-helper.js
2026-05-26 23:36:42 -07:00

10 lines
408 B
JavaScript

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');
});