mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
42
dom/tests/mochitest/ajax/offline/test_obsolete.html
Normal file
42
dom/tests/mochitest/ajax/offline/test_obsolete.html
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue