mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
488 B
HTML
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>
|