tenfourfox/browser/base/content/test/general/gZipOfflineChild_uncompressed.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
488 B
HTML

<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>