OLD | NEW |
---|---|
1 importAutomationScript('/pointerevents/pointerevent_common_input.js'); | 1 importAutomationScript('/pointerevents/pointerevent_common_input.js'); |
2 | 2 |
3 function inject_input() { | 3 function inject_input() { |
4 return penMoveIntoTarget('#target0').then(function() { | 4 return penMoveIntoTarget('#target0').then(function() { |
5 penMoveToDocument(); | 5 penMoveToDocument(); |
6 }).then(function() { | |
Navid Zolghadr
2017/04/27 16:04:34
This one does nothing anyway as we are skipping th
lanwei
2017/04/27 20:18:20
Yes, this is just remind me that I need to change
| |
7 return penMoveIntoTarget('#target0'); | |
8 }).then(function() { | |
9 return penMoveToDocument(); | |
6 }); | 10 }); |
7 } | 11 } |
8 | |
OLD | NEW |