blob: 1a822fc78fc320e110c276885d537446f13e30b2 [file] [log] [blame]
<html manifest="THIS_FILE_DOES_NOT_EXIST.manifest">
<head>
<script type="text/javascript">
var onloadHasBeenCalled = false;
if (window.testRunner) {
testRunner.dumpAsText()
testRunner.waitUntilDone();
}
window.applicationCache.onchecking = function() {
if (onloadHasBeenCalled)
document.getElementById('result').innerHTML = "SUCCESS"
if (window.testRunner)
testRunner.notifyDone();
}
</script>
<script src="THIS_FILE_DOES_NOT_EXIST.js" type="text/javascript"></script>
</head>
<body onload="onloadHasBeenCalled = true">
Test that AppicationCache events are deferred until after onload has been fired.
<div id="result">FAILURE</div>
</body>
</html>