blob: 904cc5d9a5321cc49646bfd953b3a81abe15d8ee (
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>
|