Sign in
webkit
/
WebKit
/
3d0b42cd8733f1288f0258cb4ec38a61fc1b4d9e
/
.
/
LayoutTests
/
http
/
tests
/
navigation
/
resources
/
subframe-with-unload-handler-in-parent.html
blob: eec5d3eedd76a55d0b5391aa0fe3f5b012c4e4d7 [
file
] [
log
] [
blame
]
<html>
<head>
<script>
function
unload
()
{
window
.
parent
.
imageLoad
();
}
function
load
()
{
window
.
top
.
test
();
}
</script>
</head>
<body
onload
=
"
load
();
"
onunload
=
"
unload
();
"
>
This subframe has an unload handler.
</body>
</html>