repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
http
/
tests
/
navigation
/
resources
/
subframe-with-unload-handler-in-parent.html
blob
eec5d3eedd76a55d0b5391aa0fe3f5b012c4e4d7
1
<html>
2
<head>
3
<script>
4
function
unload
() {
5
window
.
parent
.
imageLoad
();
6
}
7
8
function
load
() {
9
window
.
top
.
test
();
10
}
11
</script>
12
</head>
13
<body
onload
=
"load();"
onunload
=
"unload();"
>
14
This subframe has an unload handler.
15
</body>
16
</html>