| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <style> | |
| 4 #plugin { | |
| 5 width: 150px; | |
| 6 height: 150px; | |
| 7 } | |
| 8 </style> | |
| 9 </head> | |
| 10 | |
| 11 <body> | |
| 12 <embed id="plugin" type="application/x-webkit-test-webplugin" accepts-touch="raw
" print-event-details="true"></embed> | |
| 13 <script> | |
| 14 | |
| 15 if (!window.testRunner || !window.eventSender) { | |
| 16 document.write("This test does not work in manual mode."); | |
| 17 } else { | |
| 18 testRunner.dumpAsText(); | |
| 19 | |
| 20 var positionX = plugin.offsetLeft + 10; | |
| 21 var positionY = plugin.offsetTop + 10; | |
| 22 eventSender.addTouchPoint(positionX, positionY); | |
| 23 eventSender.touchStart(); | |
| 24 eventSender.updateTouchPoint(0, positionX + 10, positionY + 5); | |
| 25 eventSender.touchMove(); | |
| 26 eventSender.releaseTouchPoint(0); | |
| 27 eventSender.touchEnd(); | |
| 28 } | |
| 29 | |
| 30 </script> | |
| 31 </body> | |
| 32 </html> | |
| 33 | |
| OLD | NEW |