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