mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 08:19:55 +00:00
20 lines
466 B
HTML
20 lines
466 B
HTML
<!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>
|