<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<meta name="description" content="This tests html output" /> | |
<title>html innerHTML test</title> | |
</head> | |
<body> | |
<span>Content:</span> | |
<pre id="content">placeholder</pre> | |
<div></div> | |
<span></span> | |
<b>test</b> | |
<br> | |
<script> | |
if (window.testRunner) | |
testRunner.dumpAsText(); | |
document.getElementById("content").firstChild.nodeValue = document.documentElement.innerHTML; | |
</script> | |
</body> | |
</html> |