2010-03-12 13:53:36 -08:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" manifest="http://mochi.test:8888/tests/dom/tests/mochitest/ajax/offline/simpleManifest.cacheManifest">
|
2008-01-28 23:54:54 -08:00
|
|
|
<head>
|
|
|
|
<title>identical manifest test</title>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="text/javascript" src="/tests/dom/tests/mochitest/ajax/offline/offlineTests.js"></script>
|
2008-11-05 16:01:06 -08:00
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
2008-01-28 23:54:54 -08:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
var gGotChecking = false;
|
|
|
|
var gGotDownloading = false;
|
|
|
|
|
|
|
|
function noUpdate()
|
|
|
|
{
|
|
|
|
OfflineTest.ok(gGotChecking, "Should get a checking event");
|
|
|
|
OfflineTest.ok(!gGotDownloading, "Should not get a downloading event");
|
|
|
|
|
|
|
|
// The document that requested the manifest should be in the cache
|
|
|
|
OfflineTest.checkCache(window.location.href, true);
|
|
|
|
|
2010-03-12 13:53:36 -08:00
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/tests/SimpleTest/SimpleTest.js", true);
|
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/MochiKit/packed.js", true);
|
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/tests/dom/tests/mochitest/ajax/offline/offlineTests.js", true);
|
2008-01-28 23:54:54 -08:00
|
|
|
|
|
|
|
OfflineTest.teardown();
|
|
|
|
|
|
|
|
OfflineTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
function manifestUpdated()
|
|
|
|
{
|
|
|
|
OfflineTest.ok(gGotChecking, "Should get a checking event");
|
|
|
|
OfflineTest.ok(gGotDownloading, "Should get a downloading event");
|
|
|
|
|
|
|
|
// The manifest itself should be in the cache
|
2010-03-12 13:53:36 -08:00
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/tests/dom/tests/mochitest/ajax/offline/simpleManifest.cacheManifest", true);
|
2008-01-28 23:54:54 -08:00
|
|
|
|
|
|
|
// The document that requested the manifest should be in the cache
|
|
|
|
OfflineTest.checkCache(window.location.href, true);
|
|
|
|
|
|
|
|
// The entries from the manifest should be in the cache
|
2010-03-12 13:53:36 -08:00
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/tests/SimpleTest/SimpleTest.js", true);
|
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/MochiKit/packed.js", true);
|
|
|
|
OfflineTest.checkCache("http://mochi.test:8888/tests/dom/tests/mochitest/ajax/offline/offlineTests.js", true);
|
2008-01-28 23:54:54 -08:00
|
|
|
|
|
|
|
// The bad entries from the manifest should not be in the cache
|
2010-03-12 13:53:36 -08:00
|
|
|
OfflineTest.checkCache("https://mochi.test:8888/MochiKit/packed.js", false);
|
2008-01-28 23:54:54 -08:00
|
|
|
OfflineTest.checkCache("bad:/uri/invalid", false);
|
|
|
|
|
|
|
|
// Now make sure applicationCache.update() does what we expect.
|
|
|
|
applicationCache.oncached = OfflineTest.failEvent;
|
|
|
|
applicationCache.onnoupdate = OfflineTest.priv(noUpdate);
|
|
|
|
|
|
|
|
gGotChecking = false;
|
|
|
|
gGotDownloading = false;
|
|
|
|
applicationCache.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (OfflineTest.setup()) {
|
|
|
|
applicationCache.onerror = OfflineTest.failEvent;
|
|
|
|
applicationCache.onnoupdate = OfflineTest.failEvent;
|
2008-11-05 16:01:06 -08:00
|
|
|
applicationCache.onudpateready = OfflineTest.failEvent;
|
2008-01-28 23:54:54 -08:00
|
|
|
|
|
|
|
applicationCache.onchecking = function() { gGotChecking = true; };
|
|
|
|
applicationCache.ondownloading = function() { gGotDownloading = true; };
|
|
|
|
applicationCache.oncached = OfflineTest.priv(manifestUpdated);
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|