Wed, 31 Dec 2014 06:55:46 +0100
Added tag TORBROWSER_REPLICA for changeset 6474c204b198
michael@0 | 1 | function run_test() |
michael@0 | 2 | { |
michael@0 | 3 | do_get_profile(); |
michael@0 | 4 | |
michael@0 | 5 | // Open but let OCEA throw |
michael@0 | 6 | asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 7 | new OpenCallback(NEW|THROWAVAIL, null, null, function(entry) { |
michael@0 | 8 | // Try it again, should go |
michael@0 | 9 | asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 10 | new OpenCallback(NEW, "c1m", "c1d", function(entry) { |
michael@0 | 11 | // ...and check |
michael@0 | 12 | asyncOpenCacheEntry("http://c/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null, |
michael@0 | 13 | new OpenCallback(false, "c1m", "c1d", function(entry) { |
michael@0 | 14 | finish_cache2_test(); |
michael@0 | 15 | }) |
michael@0 | 16 | ); |
michael@0 | 17 | }) |
michael@0 | 18 | ); |
michael@0 | 19 | }) |
michael@0 | 20 | ); |
michael@0 | 21 | |
michael@0 | 22 | do_test_pending(); |
michael@0 | 23 | } |
michael@0 | 24 |