Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html manifest="missing.cacheManifest">
2 <head>
3 <title>missing test</title>
4 <script type="text/javascript">
6 function obsolete(evt)
7 {
8 window.opener.ok(false, "Got an 'obsolete' event");
9 window.opener.finish();
10 }
12 function error(evt) {
13 window.opener.ok(true, "Got an 'error' event");
14 window.opener.finish();
15 }
17 applicationCache.onobsolete = obsolete;
18 applicationCache.onerror = error;
19 </script>
20 </head>
22 <body>
23 <h1></h1>
24 </body> </html>