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

Side by Side Diff: LayoutTests/fast/forms/select/listbox-disabled-scroll-no-onchange.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 <script src="../resources/common.js"></script> 5 <script src="../resources/common.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p id="description"></p> 8 <p id="description"></p>
9 <select id="test" disabled size=3"> 9 <select id="test" disabled size=3">
10 <option selected>foo1</option> 10 <option selected>foo1</option>
(...skipping 16 matching lines...) Expand all
27 $('test').addEventListener('change', handleChange); 27 $('test').addEventListener('change', handleChange);
28 if (!window.eventSender) { 28 if (!window.eventSender) {
29 debug('Click and drag the select element using the mouse. It should not fire onchange event.'); 29 debug('Click and drag the select element using the mouse. It should not fire onchange event.');
30 } else { 30 } else {
31 mouseMoveToIndexInListbox(1, 'test'); 31 mouseMoveToIndexInListbox(1, 'test');
32 eventSender.mouseDown(0); 32 eventSender.mouseDown(0);
33 mouseMoveToIndexInListbox(2, 'test'); 33 mouseMoveToIndexInListbox(2, 'test');
34 eventSender.mouseUp(0); 34 eventSender.mouseUp(0);
35 } 35 }
36 </script> 36 </script>
37 <script src="../../js/resources/js-test-post.js"></script>
38 </html> 37 </html>
39 38
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698