| 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="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <script type="text/javascript"> | 7 <script type="text/javascript"> |
| 8 description('Tests for the onspeechchange event with <input type="text" speec
h>.'); | 8 description('Tests for the onspeechchange event with <input type="text" speec
h>.'); |
| 9 | 9 |
| 10 var results; | 10 var results; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 var y = input.offsetTop + input.offsetHeight / 2; | 34 var y = input.offsetTop + input.offsetHeight / 2; |
| 35 eventSender.mouseMoveTo(x, y); | 35 eventSender.mouseMoveTo(x, y); |
| 36 eventSender.mouseDown(); | 36 eventSender.mouseDown(); |
| 37 eventSender.mouseUp(); | 37 eventSender.mouseUp(); |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 | 40 |
| 41 window.onload = run; | 41 window.onload = run; |
| 42 window.jsTestIsAsync = true; | 42 window.jsTestIsAsync = true; |
| 43 </script> | 43 </script> |
| 44 <script src="../js/resources/js-test-post.js"></script> | |
| 45 <input id='speechInput' x-webkit-speech onwebkitspeechchange="onSpeechChange(eve
nt)"> | 44 <input id='speechInput' x-webkit-speech onwebkitspeechchange="onSpeechChange(eve
nt)"> |
| 46 </body> | 45 </body> |
| 47 </html> | 46 </html> |
| OLD | NEW |