Files
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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>