mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +09:00
24 lines
443 B
HTML
24 lines
443 B
HTML
<html manifest="missing.cacheManifest">
|
|
<head>
|
|
<title>missing test</title>
|
|
<script type="text/javascript">
|
|
|
|
function obsolete(evt)
|
|
{
|
|
window.opener.ok(false, "Got an 'obsolete' event");
|
|
window.opener.finish();
|
|
}
|
|
|
|
function error(evt) {
|
|
window.opener.ok(true, "Got an 'error' event");
|
|
window.opener.finish();
|
|
}
|
|
|
|
applicationCache.onobsolete = obsolete;
|
|
applicationCache.onerror = error;
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1></h1>
|
|
</body> </html>
|