Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / long-text-in-input.html
blob612b64b9aa060374455f3d982284004b01b7b8fa
1 <body>
2 Passes if you see PASS in the text field below:<br>
3 <input dir=rtl id=inp size=3><!-- Hide blinking caret --><div style="display:inline-block;background:white; width:20px;height:2em;margin-left:-4px;vertical-align:middle"></div>
4 <script>
5 var text="Start of dummy text-"
6 while (text.length <= 65536)
8 text += text.length;
9 text += "abcdefghijklmn pqrstuvwxyz"
11 text += "-----PASS"
12 elm = document.getElementById("inp");
13 elm.value = text;
14 </script></body></html>