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