blob: 5e988f79efa102d9215a2798a00000f5ef13e632 [file] [log] [blame]
<!doctype html>
<title>document.write</title>
<script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
<script>
var t = async_test();
t.step(function() {
document.write("<i");
});
</script>
>Filler Text</i>
<script>
t.step(function() {
assert_equals(document.body.childNodes[0].localName, "i");
assert_equals(document.body.childNodes[0].textContent, "Filler Text");
}
);
t.done();
</script>
<div id="log"></div>