1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/base/content/test/general/gZipOfflineChild_uncompressed.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<html manifest="gZipOfflineChild.cacheManifest"> 1.5 +<head> 1.6 + <!-- This file is gzipped to create gZipOfflineChild.html --> 1.7 +<title></title> 1.8 +<script type="text/javascript"> 1.9 + 1.10 +function finish(success) { 1.11 + window.parent.postMessage(success, "*"); 1.12 +} 1.13 + 1.14 +applicationCache.oncached = function() { finish("oncache"); } 1.15 +applicationCache.onnoupdate = function() { finish("onupdate"); } 1.16 +applicationCache.onerror = function() { finish("onerror"); } 1.17 + 1.18 +</script> 1.19 +</head> 1.20 + 1.21 +<body> 1.22 +<h1>Child</h1> 1.23 +</body> 1.24 +</html>