Sign in
webkit
/
WebKit
/
c76c58243e3b15757ea8668f43536a601f3d5c6f
/
.
/
LayoutTests
/
fast
/
parser
/
body-should-exist-after-open-close.html
blob: 2e693e9355b16307f7918835243a4a42827467b6 [
file
] [
log
] [
blame
]
<body>
<iframe></iframe>
<script>
if
(
window
.
testRunner
)
testRunner
.
dumpAsText
();
var
doc
=
frames
[
0
].
document
;
doc
.
open
();
doc
.
close
();
document
.
write
(
doc
.
body
.
toString
()
==
"[object HTMLBodyElement]"
?
"PASS"
:
"FAIL"
);
</script>