Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textfield-outline.html
blob38dc7c6e4f6f7bd7ec811987c1d0c8a360ad6bd4
1 <html>
2 <head>
3 <script>
4 function test()
6 var tf = document.getElementById('tf');
7 tf.focus();
8 if (window.testRunner) {
9 eventSender.keyDown("a");
10 eventSender.keyDown("b");
11 eventSender.keyDown("c");
14 </script>
15 </head>
16 <body onload="test()">
17 This tests that a negative outline-offset won't get in the way of a cursor in a text control.<br>
18 <input id="tf" style="font-size: 20px; border: solid thin black;" value="This tests that typing doesn't cut holes in the focus outline"></input>
19 </body>
20 </html>