summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/appcache/insert-html-element-with-manifest.html
blob: 694392cb1d5b43485962c77b0feb76b7a4ed4e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<script>
if (window.layoutTestController) {
    layoutTestController.dumpAsText();
    layoutTestController.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.layoutTestController)
            layoutTestController.notifyDone();
    }, 100);
}
</script>