summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/appcache/different-https-origin-resource-main.html
blob: 55e744fb1321d760d1d7eb421e2f17b11e5f5599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<body>
<script>
if (window.layoutTestController) {
    layoutTestController.waitUntilDone();
    layoutTestController.dumpAsText();
}

window.addEventListener("message", function(e) {
    document.getElementById("result").innerHTML = e.data; 
    if (window.layoutTestController)
        layoutTestController.notifyDone();
}, false);
</script>
<p>Test that a resource from a different https origin is not cached.</p>
<div id=result></div>
<iframe src="https://127.0.0.1:8443/appcache/resources/different-https-origin-resource.html"></iframe>
</body>
</html>