blob: 3ac6423f4a8eb069af4b1320e30166d4dc0fc4f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<title>document.write</title>
<script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
<script>
test(
function() {
document.write("PASS");
assert_equals(document.body.textContent, "PASS");
}
);
</script>
<div id="log"></div>
|