Home | History | Annotate | Download | only in resources
      1 <html manifest="origins-with-appcache-iframe.manifest">
      2 <script>
      3 // iframe-1 is expected to succeed.
      4 applicationCache.oncached = function() { parent.postMessage("created_cache", "*"); };
      5 applicationCache.onerror = function() { parent.postMessage("FAIL - error caching iframe, expected this to succeed", "*"); };
      6 applicationCache.onnoupdate = function() { parent.postMessage("FAIL - no update iframe, all caches should have been deleted before this test", "*"); };
      7 
      8 </script>
      9 </html>
     10