Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / tab-in-input.html
blob01a635a55252f4cb4d8a80eecbf61a83d6b689ca
1 <script>
2 if (window.testRunner)
3 window.testRunner.dumpAsText();
4 </script>
5 You should see "\tHello World" in the text field below<br />
6 <input id="inputElem" type="text" value=" Hello World">
7 <pre id="console"></pre>
8 <script>
9 if (window.testRunner) {
10 var inputElem = document.getElementById("inputElem");
11 document.getElementById("console").appendChild(document.createTextNode(inputElem.value));
13 </script>