mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
976 B
JavaScript
29 lines
976 B
JavaScript
function run_test()
|
|
{
|
|
do_get_profile();
|
|
|
|
// Open but let OCEA throw
|
|
asyncOpenCacheEntry("http://d/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW|THROWAVAIL, null, null, function(entry) {
|
|
// Open but let OCEA throw ones again
|
|
asyncOpenCacheEntry("http://d/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW|THROWAVAIL, null, null, function(entry) {
|
|
// Try it again, should go
|
|
asyncOpenCacheEntry("http://d/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW, "d1m", "d1d", function(entry) {
|
|
// ...and check
|
|
asyncOpenCacheEntry("http://d/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NORMAL, "d1m", "d1d", function(entry) {
|
|
finish_cache2_test();
|
|
})
|
|
);
|
|
})
|
|
);
|
|
})
|
|
);
|
|
})
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|