Html程序  |  20行  |  565 B

<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>