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
/
fast
/
parser
/
resources
/
document-open-in-unload-inner.html
blob
93988e59c5ddfa2e5157ea187e2ccf1cb2aee709
1
This test passes if it doesn't crash.
2
<iframe
src
=
"data:text/plain,Hi"
></iframe>
3
<script>
4
frames
[
0
].
onunload
=
function
() {
5
document
.
open
();
6
document
.
write
(
"PASS"
);
7
document
.
close
();
8
parent
.
postMessage
(
"Done"
,
"*"
);
9
};
10
</script>