blob: 4539ca6dd0b900f5bae2248538b2cd5c1ae4140c [file] [log] [blame]
<html>
<div></div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
var div = document.getElementsByTagName("div")[0];
div.innerHTML = '<html manifest="resources/insert-html-element-with-manifest.manifest">'
window.onload = function()
{
applicationCache.oncached = function() {
alert("FAIL: appcache cached");
}
applicationCache.onnoupdate = function() {
alert("FAIL: appcache noupdate");
}
applicationCache.onerror = function() {
alert("FAIL: appcache error");
}
setTimeout(function() {
document.write("DONE. Passed if there were no alerts displayed.");
if (window.testRunner)
testRunner.notifyDone();
}, 100);
}
</script>