Sign in
chromium
/
external
/
w3c
/
web-platform-tests
/
refs/heads/active-script-webidl-callbacks
/
.
/
html
/
webappapis
/
dynamic-markup-insertion
/
document-write
/
047-1.html
blob: 6a43faec51071fec146390475adcd12bad3d23a6 [
file
] [
log
] [
blame
] [
edit
]
<script>
onload
=
opener
.
t
.
step_func_done
(
function
()
{
document
.
write
(
"<body>Filler Text<div id='log'></div>"
);
opener
.
assert_equals
(
document
.
body
.
textContent
,
"Filler Text"
);
});
</script>
<body>
FAIL