summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/ajax/offline/test_missingManifest.html
blob: 1d7bc83ece392a84ab69f4d4868dd19fbc12a8e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
<title>Test missing manifest</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;

SimpleTest.waitForExplicitFinish();

SpecialPowers.pushPermissions([{'type': 'offline-app', 'allow': true, 'context': document}], startTest);

function startTest() {
  // now this will properly load the manifest.
  gTestWin = window.open("missing.html");
}

function finish() {
  gTestWin.close();
  SimpleTest.finish();
}

</script>

</head>

<body>

</body>
</html>