Sign in
webkit
/
WebKit
/
b4234713c85383e00e81c500ff74ee340e8a262a
/
.
/
LayoutTests
/
fast
/
events
/
resources
/
subframe-stop-load-in-unload-handler-using-document-write.html
blob: f8664cf27d28a69d2b7b13ca2263a21d96f811e5 [
file
] [
log
] [
blame
]
<script>
window
.
location
=
"pass.html"
;
window
.
onunload
=
function
()
{
document
.
write
(
"document.write"
);
setTimeout
(
"parent.log('You wanted to go to: '+ location.href); parent.fail()"
,
500
);
}
</script>