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

Side by Side Diff: LayoutTests/fast/events/onchange-range-slider.html

Issue 10783036: Merge 122224 - Input type=range issue with events not being raised when value set in js (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 </head> 4 </head>
5 <body> 5 <body>
6 <p>This test verifies that updating the slider for an input element with type=ra nge fires a change event.</p> 6 <p>This test verifies that updating the slider for an input element with type=ra nge fires a change event.</p>
7 7
8 <!-- See bug 84674 --> 8 <!-- See bug 84674 -->
9 <input id="slider" type="range" min="0" max="3" value="0"></input> 9 <input id="slider" type="range" min="0" max="3" value="0"></input>
10 <pre id="console"></pre> 10 <pre id="console"></pre>
(...skipping 27 matching lines...) Expand all
38 eventSender.mouseMoveTo(x, y); 38 eventSender.mouseMoveTo(x, y);
39 eventSender.mouseDown(); 39 eventSender.mouseDown();
40 eventSender.mouseUp(); 40 eventSender.mouseUp();
41 41
42 if (!receivedChangeEvent) 42 if (!receivedChangeEvent)
43 testFailed('Change event not fired.'); 43 testFailed('Change event not fired.');
44 } 44 }
45 </script> 45 </script>
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/click-range-slider-expected.txt ('k') | LayoutTests/fast/events/onchange-range-slider-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698