| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 body { | 4 body { |
| 5 height: 2000px; | 5 height: 2000px; |
| 6 } | 6 } |
| 7 #plugin { | 7 #plugin { |
| 8 position: absolute; | 8 position: absolute; |
| 9 top: 500px; | 9 top: 500px; |
| 10 width: 150px; | 10 width: 150px; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 eventSender.gestureTap(positionX, positionY); | 35 eventSender.gestureTap(positionX, positionY); |
| 36 eventSender.gestureScrollBegin(positionX, positionY); | 36 eventSender.gestureScrollBegin(positionX, positionY); |
| 37 eventSender.gestureScrollUpdate(30, 0); | 37 eventSender.gestureScrollUpdate(30, 0); |
| 38 eventSender.gestureScrollUpdateWithoutPropagation(30, 0); | 38 eventSender.gestureScrollUpdateWithoutPropagation(30, 0); |
| 39 eventSender.gestureScrollEnd(0, 0); | 39 eventSender.gestureScrollEnd(0, 0); |
| 40 } | 40 } |
| 41 | 41 |
| 42 </script> | 42 </script> |
| 43 </body> | 43 </body> |
| 44 </html> | 44 </html> |
| OLD | NEW |