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

Side by Side Diff: LayoutTests/fast/events/click-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
« no previous file with comments | « no previous file | LayoutTests/fast/events/click-range-slider-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>Test that click events are fired for a slider when the range of values is den se enough that the thumb element is repositioned under the cursor on mouse press .</p> 6 <p>Test that click events are fired for a slider when the range of values is den se enough that the thumb element is repositioned under the cursor on mouse press .</p>
7 7
8 <!-- See bug 84674 --> 8 <!-- See bug 84674 -->
9 <input id="slider" type="range" min="0" max="100" value="50"></input> 9 <input id="slider" type="range" min="0" max="100" value="50"></input>
10 <pre id="console"></pre> 10 <pre id="console"></pre>
(...skipping 30 matching lines...) Expand all
41 41
42 eventSender.mouseMoveTo(x + slider.clientWidth / 2, y); 42 eventSender.mouseMoveTo(x + slider.clientWidth / 2, y);
43 eventSender.mouseDown(); 43 eventSender.mouseDown();
44 eventSender.mouseUp(); 44 eventSender.mouseUp();
45 45
46 shouldBe("clickCount", "3"); 46 shouldBe("clickCount", "3");
47 } 47 }
48 </script> 48 </script>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/events/click-range-slider-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698