Sign in
webkit
/
WebKit
/
473b92ed852160eab7c2365a49eda22bbbc97909
/
.
/
LayoutTests
/
imported
/
blink
/
http
/
tests
/
misc
/
detach-and-location-change-in-onload.html
blob: 45de3d66d0cc05485211913499f2593f0689e335 [
file
] [
log
] [
blame
]
<body>
<iframe
src
=
"data:text/html,"
></iframe>
<script>
if
(
window
.
testRunner
)
testRunner
.
dumpAsText
();
window
.
onload
=
function
()
{
var
f
=
window
.
frames
[
0
];
document
.
body
.
innerHTML
=
'PASS'
;
f
.
location
=
"about:blank"
;
}
</script>
</body>