blob: f2890005dafd5f15f8f8e77e3b2e0d65698b2911 [file] [log] [blame]
<html>
<body>
<script>
function imageLoad() {
var img = new Image(1, 1);
// We're using a redirect here because it guarantees that if we're
// receiving callbacks in a detached Frame, we'll acceess members
// that are now invalid (e.g., DocumentLoaders).
img.src = "redirect302.pl";
document.getElementsByTagName("body")[0].appendChild(img);
window.top.finish();
}
</script>
<iframe src="subframe-with-unload-handler-in-parent.html">
</body>
</html>