| <html manifest="quota-origin-continued-download.manifest"> |
| <script> |
| // This is expected to succeed when the quota is reached, download completes, the user is prompted, and they increase storage. |
| applicationCache.oncached = function() { parent.postMessage("PASS - cached iframe", "*"); }; |
| applicationCache.onerror = function() { parent.postMessage("FAIL - error caching iframe, expected this to succeed with the quota increased automatically", "*"); }; |
| applicationCache.onupdateready = function() { parent.postMessage("FAIL - update ready, all caches should have been deleted before this test", "*"); }; |
| applicationCache.onnoupdate = function() { parent.postMessage("FAIL - no update iframe, all caches should have been deleted before this test", "*"); }; |
| </script> |
| </html> |