OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description"></p> | 7 <p id="description"></p> |
8 | 8 |
9 <input id=search type=search value=query> | 9 <input id=search type=search value=query> |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 eventSender.mouseDown(); | 30 eventSender.mouseDown(); |
31 eventSender.mouseUp(); | 31 eventSender.mouseUp(); |
32 // Click the input element. The event should not be captured by the cancel butto
n. | 32 // Click the input element. The event should not be captured by the cancel butto
n. |
33 eventSender.mouseMoveTo(middleX, middleY); | 33 eventSender.mouseMoveTo(middleX, middleY); |
34 eventSender.mouseDown(); | 34 eventSender.mouseDown(); |
35 eventSender.mouseUp(); | 35 eventSender.mouseUp(); |
36 | 36 |
37 shouldBe('mouseDownCount', '2'); | 37 shouldBe('mouseDownCount', '2'); |
38 input.removeEventListener('focus', clearValue, false); | 38 input.removeEventListener('focus', clearValue, false); |
39 </script> | 39 </script> |
40 <script src="../../fast/js/resources/js-test-post.js"></script> | |
41 </body> | 40 </body> |
42 </html> | 41 </html> |
OLD | NEW |