blob: 5ac439fcb56db4796d3d28a620a9b3ef3f49c8bb [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
You should see "\tHello World" in the text field below<br />
<input id="inputElem" type="text" value=" Hello World">
<pre id="console"></pre>
<script>
if (window.testRunner) {
var inputElem = document.getElementById("inputElem");
document.getElementById("console").appendChild(document.createTextNode(inputElem.value));
}
</script>