• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html>
2<body>
3<script>
4if (window.layoutTestController) {
5    layoutTestController.waitUntilDone();
6    layoutTestController.dumpAsText();
7}
8
9window.addEventListener("message", function(e) {
10    document.getElementById("result").innerHTML = e.data;
11    if (window.layoutTestController)
12        layoutTestController.notifyDone();
13}, false);
14</script>
15<p>Test that a resource from a different https origin is not cached.</p>
16<div id=result></div>
17<iframe src="https://127.0.0.1:8443/appcache/resources/different-https-origin-resource.html"></iframe>
18</body>
19</html>
20