mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
25 lines
650 B
HTML
25 lines
650 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" manifest="simpleManifest.cacheManifest">
|
|
<head>
|
|
<title>Bug 460353, iframe with a different manifest reference</title>
|
|
|
|
<script type="text/javascript">
|
|
|
|
applicationCache.onerror = function() {
|
|
parent.frameOnUpdate("same", false);
|
|
}
|
|
|
|
applicationCache.oncached = function() {
|
|
parent.frameOnUpdate("same", true, applicationCache.status);
|
|
}
|
|
|
|
applicationCache.onnoupdate = function() {
|
|
parent.frameOnUpdate("same", true, applicationCache.status);
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="parent.frameOnLoad('same', applicationCache.status);">
|
|
This is an iframe with the same manifest reference
|
|
</body>
|
|
</html>
|