mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-15 03:16:39 +00:00
16 lines
404 B
HTML
16 lines
404 B
HTML
<!DOCTYPE html>
|
|
<html manifest="manifest.appcache">
|
|
<head>
|
|
<title>Test app</title>
|
|
</head>
|
|
<body>
|
|
<script type="application/javascript">
|
|
window.applicationCache.addEventListener('noupdate', function(aEvent) {
|
|
var iframe = document.getElementById('ifr');
|
|
iframe.src = "http://127.0.0.1:8888/chrome/toolkit/webapps/tests/app.sjs?appreq";
|
|
}, false);
|
|
</script>
|
|
<iframe id="ifr"></iframe>
|
|
</body>
|
|
</html>
|