Sign in
chromium
/
external
/
w3c
/
web-platform-tests
/
refs/heads/active-script-webidl-callbacks
/
.
/
html
/
webappapis
/
dynamic-markup-insertion
/
opening-the-input-stream
/
document.open-03-frame.html
blob: a4b370cea41fb2d379b0350639aaeec4f169191d [
file
] [
log
] [
blame
] [
edit
]
<!DOCTYPE html>
<script>
onload
=
function
()
{
document
.
open
();
document
.
close
();
parent
.
report
(
window
.
setTimeout
===
setTimeout
,
true
,
"setTimeout"
);
parent
.
report
(
window
===
this
,
true
,
"this"
);
parent
.
done
();
}
</script>