Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <html manifest="offlineChild2.cacheManifest">
2 <head>
3 <title></title>
4 <script type="text/javascript">
6 function finish(success) {
7 window.parent.postMessage(success ? "success" : "failure", "*");
8 }
10 applicationCache.oncached = function() { finish(true); }
11 applicationCache.onnoupdate = function() { finish(true); }
12 applicationCache.onerror = function() { finish(false); }
14 </script>
15 </head>
17 <body>
18 <h1>Child</h1>
19 </body>
20 </html>