| eventSender.keyDown("x"); |
| function sendDeleteKeyEvent() |
| eventSender.keyDown("delete"); |
| keyEventTime = event.timeStamp; |
| function searchEvent(event) |
| document.getElementById("times").innerHTML += " " + (Math.round((event.timeStamp - keyEventTime) / 100) / 10); |
| document.getElementById("search").select(); |
| setTimeout("testRunner.notifyDone()", 0); // Do it on a timer to avoid Windows DRT hanging. |
| testRunner.waitUntilDone(); |
| document.getElementById("search").focus(); |
| <body onload="startTest()"> |
| <p>This tests the delay between when you type and the search event fires.</p> |
| <p>As of this writing we can't use DOM events to type into a search field, so the test uses the event sender and only runs under DumpRenderTree.</p> |
| <p><input id="search" type="search" incremental onkeydown="keyEvent(event)" onsearch="searchEvent(event)"></p> |
| <div>The two rows below should match.</div> |
| <div>0.5 0.4 0.3 0.2 0.2 0</p> |