-
-
Save applecool/52899e634564a7d421fb5b0c2006f707 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setEvents(var event,x,y) | |
{ | |
de[0].triggerEventHandler(event,{pageX:x,pageY:y}); | |
} | |
EventEmit(var event,x,y,expectx,expecty) | |
{ | |
setEvents(event,x,y); | |
expect(expectx,expecty); | |
reser(); | |
} | |
setEvents('mousedown',100,100); | |
for(i=0;i<2;i=i+5) | |
EventEmit('mousemove',140+i,110+i,40+i,10+i); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment