blob: fc498220cc7c50678c40f2f60c1f9c96269a028d [file] [log] [blame]
<html>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
document.removeChild(document.documentElement);
var newHTML = document.createElement("html");
newHTML.setAttribute("manifest", "resources/insert-html-element-with-manifest.manifest");
document.appendChild(newHTML);
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>