blob: 7d4539d50d2474c4ae22d40a3f89febdbf9beede [file] [log] [blame]
<html>
<!--
Generate this token with the command:
tools/origin_trials/generate_token.py http://127.0.0.1:8000 AppCache --expire-days=2000
-->
<meta http-equiv="origin-trial" content="AnwB3aSh6U8pmYtO/AzzxELSwk8BRJoj77nUnCq6u3N8LMJKlX/ImydQmXn3SgE0a+8RyowLbV835tXQHJMHuAEAAABQeyJvcmlnaW4iOiAiaHR0cDovLzEyNy4wLjAuMTo4MDAwIiwgImZlYXR1cmUiOiAiQXBwQ2FjaGUiLCAiZXhwaXJ5IjogMTc2MTE3NjE5OH0=">
<body>
<p>Test that offline applications' main resources are not affected by URL hashes.</p>
<p>Should say SUCCESS:</p>
<div id=result></div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function log(message)
{
document.getElementById("result").innerHTML += message + "<br>";
}
function setNetworkEnabled(state)
{
var req = new XMLHttpRequest;
req.open("GET", "/resources/network-simulator.php?command=" + (state ? "connect" : "disconnect"), false);
req.send("");
}
function frameCreated()
{
if (stage == 0) {
stage = 1;
setNetworkEnabled(false);
var ifr = document.createElement("iframe");
ifr.setAttribute("src", "/resources/network-simulator.php?path=/appcache/resources/main-resource-hash-frame.html#bar");
document.body.appendChild(ifr);
} else {
log("SUCCESS");
setNetworkEnabled(true);
if (window.testRunner)
testRunner.notifyDone()
}
}
window.addEventListener("message", frameCreated, false);
var stage = 0;
setNetworkEnabled(true);
var ifr = document.createElement("iframe");
ifr.setAttribute("src", "/resources/network-simulator.php?path=/appcache/resources/main-resource-hash-frame.html#foo");
document.body.appendChild(ifr);
</script>
</body>
</html>