blob: eb8b54948c30c832afb91c602c9ecd5a238635b8 (
plain)
1
2
3
4
5
6
7
8
9
|
<input type="text" onfocus="this.value=''" value="click to edit">
<p>Tests clicking on an input element that has a value that self-destructs. If the test succeeds, there should be a blinking caret in the text field.</p>
<script>
if (window.eventSender) {
eventSender.mouseMoveTo(15, 15);
eventSender.mouseDown();
eventSender.mouseUp();
}
</script>
|