Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / forms / textfield-outline.html
blob935467d2f0f6d7c124204691cc607d2f8d3702ba
1 <html>
2 <head>
3 <script>
4 function test()
6 var tf = document.getElementById('tf');
7 tf.focus();
8 if (window.layoutTestController) {
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>