mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
13 lines
293 B
HTML
13 lines
293 B
HTML
<!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>
|