Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / input-type-text-unconfirmed-inline-input.html
blob857a63e8ab731d6bb64c4e82b1cb795006823ce9
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <html>
3 <head><title>Unconfirmed inline input in <input type=text></title></head>
5 <script>
7 function dump(s) {
8 if (s == "")
9 alert("Field appears empty");
10 else
11 alert("Field contents: " + s);
14 </script>
16 <p>Enter some text using inline input (e.g. Kotoeri Hiragana) and click the button without closing the input area.</p>
17 <p><input type=text id=input value="" size=57><input type=button value="test" onClick="dump(document.getElementById('input').value)"></div>
18 <p>The alert should show the inline input text, but without the bug fix it shows empty text.</p>
20 </body></html>