Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: LayoutTests/fast/events/touch/touch-before-pressing-spin-button.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 <style type="text/css"> 5 <style type="text/css">
6 #box { 6 #box {
7 background-color:blue; 7 background-color:blue;
8 width:100px; 8 width:100px;
9 height:100px; 9 height:100px;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 21
22 var numberInput = document.getElementById('number'); 22 var numberInput = document.getElementById('number');
23 eventSender.mouseMoveTo(numberInput.offsetLeft + numberInput.offsetWidth - 1 0, numberInput.offsetTop + numberInput.offsetHeight / 4); 23 eventSender.mouseMoveTo(numberInput.offsetLeft + numberInput.offsetWidth - 1 0, numberInput.offsetTop + numberInput.offsetHeight / 4);
24 eventSender.mouseDown(); 24 eventSender.mouseDown();
25 eventSender.mouseUp(); 25 eventSender.mouseUp();
26 shouldBe('numberInput.value', '"2"'); 26 shouldBe('numberInput.value', '"2"');
27 } else { 27 } else {
28 debug('Needs eventSender.'); 28 debug('Needs eventSender.');
29 } 29 }
30 </script> 30 </script>
31 <script src="../../js/resources/js-test-post.js"></script>
32 </body> 31 </body>
33 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698