mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
24 lines
737 B
JavaScript
24 lines
737 B
JavaScript
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';
|
|
|
|
caches.open(name).then(function(c) {
|
|
cache = c;
|
|
return cache.addAll([new Request(url1, { mode: 'no-cors' }),
|
|
new Request(url2, { mode: 'no-cors' })]);
|
|
}).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();
|
|
});
|