mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
42 lines
1,020 B
HTML
42 lines
1,020 B
HTML
<html>
|
|
<head>
|
|
<title>Test obsolete application caches</title>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script type="text/javascript">
|
|
|
|
var gTestWin;
|
|
|
|
SpecialPowers.pushPermissions([{'type': 'offline-app', 'allow': true, 'context': document}], startTest);
|
|
|
|
function startTest() {
|
|
// Make the obsoleting.sjs return a valid manifest
|
|
var req = new XMLHttpRequest();
|
|
req.open("GET", "http://mochi.test:8888/tests/dom/tests/mochitest/ajax/offline/obsoletingManifest.sjs?state=manifestPresent");
|
|
req.setRequestHeader("Content-Type", "text/cache-manifest");
|
|
req.send("");
|
|
req.onreadystatechange = function() {
|
|
if (req.readyState == 4) {
|
|
// now this will properly load the manifest.
|
|
gTestWin = window.open("obsolete.html");
|
|
}
|
|
}
|
|
}
|
|
|
|
function finish() {
|
|
gTestWin.close();
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|