Lines Matching refs:URL
17 const url = URL.createObjectURL(blob);
27 const url = URL.createObjectURL(blob);
30 // Revoke the object URL. Request should take a reference to the blob as
32 // revoke the URL before calling fetch().
33 URL.revokeObjectURL(url);
38 }, 'Revoke blob URL after creating Request, will fetch');
43 const url = URL.createObjectURL(blob);
49 // Revoke the object URL. fetch should have already resolved the blob URL.
50 URL.revokeObjectURL(url);
53 }, 'Revoke blob URL after calling fetch, fetch should succeed');