summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/appcache/document-write-html-element.html
blob: 83954bb1da90b197c12a9b02d5b1f68b6f9ac34e (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
<script>
if (window.layoutTestController) {
    layoutTestController.dumpAsText();
    layoutTestController.waitUntilDone();
}

window.onload = function()
{
    document.write("<html manifest='resources/document-write-html-element.manifest'>");
    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>