mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
430 B
HTML
21 lines
430 B
HTML
|
<html manifest="offlineChild2.cacheManifest">
|
||
|
<head>
|
||
|
<title></title>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function finish(success) {
|
||
|
window.parent.postMessage(success ? "success" : "failure", "*");
|
||
|
}
|
||
|
|
||
|
applicationCache.oncached = function() { finish(true); }
|
||
|
applicationCache.onnoupdate = function() { finish(true); }
|
||
|
applicationCache.onerror = function() { finish(false); }
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Child</h1>
|
||
|
</body>
|
||
|
</html>
|