summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/tab-in-input.html
blob: 01a635a55252f4cb4d8a80eecbf61a83d6b689ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
	if (window.testRunner)
	    window.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>