Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../../resources/testharness.js"></script> | |
| 3 <script src="../../../resources/testharnessreport.js"></script> | |
| 4 <div style="height:1000px"><span contenteditable id="target">abcאב&# x5D2;</span></div> | |
| 5 <div id="log"></div> | |
| 6 <script> | |
| 7 test(function(){ | |
| 8 var y = target.offsetTop + target.offsetHeight / 2; | |
|
yosin_UTC9
2016/05/13 05:09:21
Please notify this test script requires |eventSend
yoichio
2016/05/13 07:49:10
Done.
| |
| 9 eventSender.dragMode = false; | |
| 10 eventSender.mouseMoveTo(target.offsetLeft + target.offsetWidth, y); | |
| 11 eventSender.mouseDown(); | |
| 12 eventSender.mouseMoveTo(target.offsetLeft + target.offsetWidth - 10, y); | |
| 13 }); | |
| 14 </script> | |
| OLD | NEW |