Sign in
webkit
/
WebKit
/
84c082c1adc8c505a644dc9092e891f52c30e8c0
/
.
/
LayoutTests
/
imported
/
blink
/
fast
/
parser
/
resources
/
document-open-in-unload-inner.html
blob: 93988e59c5ddfa2e5157ea187e2ccf1cb2aee709 [
file
] [
log
] [
blame
]
This test passes if it doesn't crash.
<iframe
src
=
"data:text/plain,Hi"
></iframe>
<script>
frames
[
0
].
onunload
=
function
()
{
document
.
open
();
document
.
write
(
"PASS"
);
document
.
close
();
parent
.
postMessage
(
"Done"
,
"*"
);
};
</script>