mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
29 lines
998 B
JavaScript
29 lines
998 B
JavaScript
function run_test()
|
|
{
|
|
do_get_profile();
|
|
|
|
// Open for write, write
|
|
asyncOpenCacheEntry("http://ro/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW, "a1m", "a1d", function(entry) {
|
|
// Open for read and check
|
|
asyncOpenCacheEntry("http://ro/", "disk", Ci.nsICacheStorage.OPEN_READONLY, null,
|
|
new OpenCallback(NORMAL, "a1m", "a1d", function(entry) {
|
|
// Open for rewrite (truncate), write different meta and data
|
|
asyncOpenCacheEntry("http://ro/", "disk", Ci.nsICacheStorage.OPEN_TRUNCATE, null,
|
|
new OpenCallback(NEW, "a2m", "a2d", function(entry) {
|
|
// Open for read and check
|
|
asyncOpenCacheEntry("http://ro/", "disk", Ci.nsICacheStorage.OPEN_READONLY, null,
|
|
new OpenCallback(NORMAL, "a2m", "a2d", function(entry) {
|
|
finish_cache2_test();
|
|
})
|
|
);
|
|
})
|
|
);
|
|
})
|
|
);
|
|
})
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|