summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/ajax/offline/460353_iframe_ownmanifest.html
blob: 2bcdb4611ed2b9b3e9b03e8d368661a3c4248c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html xmlns="http://www.w3.org/1999/xhtml" manifest="updatingManifest.sjs">
<head>
<title>Bug 460353, iframe with a different manifest reference</title>

<script type="text/javascript">

applicationCache.onerror = function() {
  parent.frameOnUpdate("diff", false);
}

applicationCache.oncached = function() {
  parent.frameOnUpdate("diff", true, applicationCache.status);
}

</script>

</head>
<body onload="parent.frameOnLoad('diff', applicationCache.status);">
  This is an iframe with a different manifest reference
</body>
</html>