blob: 7c69a5c7ad394645a965ea4b27ad5fb735dc231b [file] [log] [blame]
<html manifest="resources/different-scheme.manifest">
<body>
<p>Test that application cache doesn't block loading resources with different schemes.</p>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function test()
{
var ifr = document.createElement("iframe");
ifr.setAttribute("src", "javascript:parent.success(), 'PASS'");
document.body.appendChild(ifr);
}
function success()
{
document.body.replaceChild(document.createTextNode("SUCCESS"), document.getElementsByTagName("iframe")[0]);
if (window.testRunner)
testRunner.notifyDone();
}
applicationCache.oncached = test;
applicationCache.onnoupdate = test;
</script>
<body>
</html>