browser/base/content/test/general/gZipOfflineChild_uncompressed.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:753bdbe1b443
1 <html manifest="gZipOfflineChild.cacheManifest">
2 <head>
3 <!-- This file is gzipped to create gZipOfflineChild.html -->
4 <title></title>
5 <script type="text/javascript">
6
7 function finish(success) {
8 window.parent.postMessage(success, "*");
9 }
10
11 applicationCache.oncached = function() { finish("oncache"); }
12 applicationCache.onnoupdate = function() { finish("onupdate"); }
13 applicationCache.onerror = function() { finish("onerror"); }
14
15 </script>
16 </head>
17
18 <body>
19 <h1>Child</h1>
20 </body>
21 </html>

mercurial