1 <html manifest=
"reload-iframe.manifest">
7 var req
= new XMLHttpRequest();
8 req
.open("GET", "resources/not-in-cache.txt", false);
10 parent
.postMessage("FAIL: Loading an uncached resource didn't raise an exception", "*");
12 parent
.postMessage("SUCCESS", "*");
16 applicationCache
.onnoupdate = function() { parent
.postMessage("Frame loaded", "*") }
17 applicationCache
.oncached = function() { parent
.postMessage("Frame loaded", "*") }