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