blob: 682938a66403c6cf1079459986664cb12f7c7c2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* global context testDone:true */
var cache = null;
var name = "https_" + context;
var urlBase = "https://example.com/tests/dom/cache/test/mochitest";
var url1 = urlBase + "/test_cache.js";
var url2 = urlBase + "/test_cache_add.js";
function addOpaque(c, url) {
return fetch(new Request(url, { mode: "no-cors" })).then(function (response) {
return c.put(url, response);
});
}
caches
.open(name)
.then(function (c) {
cache = c;
return Promise.all([addOpaque(cache, url1), addOpaque(cache, url2)]);
})
.then(function () {
return cache.delete(url1);
})
.then(function (result) {
ok(result, "Cache entry should be deleted");
return cache.delete(url2);
})
.then(function (result) {
ok(result, "Cache entry should be deleted");
cache = null;
return caches.delete(name);
})
.then(function (result) {
ok(result, "Cache should be deleted");
testDone();
});
|