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

Side by Side Diff: LayoutTests/fast/forms/input-text-double-click.html

Issue 15508003: Revert "Don't force layout for mouse event hit tests" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <input type="text" value="word another"> 1 <input type="text" value="word another">
2 <p>Tests double-clicking on a word. If the test succeeds, the word "word" should be selected.</p> 2 <p>Tests double-clicking on a word. If the test succeeds, the word "word" should be selected.</p>
3 <script> 3 <script>
4 if (window.eventSender) { 4 if (window.eventSender) {
5 // Mouse events only work after an initial layout
6 document.body.offsetLeft;
7 eventSender.mouseMoveTo(15, 15); 5 eventSender.mouseMoveTo(15, 15);
8 eventSender.mouseDown(); 6 eventSender.mouseDown();
9 eventSender.mouseUp(); 7 eventSender.mouseUp();
10 eventSender.mouseDown(); 8 eventSender.mouseDown();
11 eventSender.mouseUp(); 9 eventSender.mouseUp();
12 } 10 }
13 </script> 11 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/input-text-click-outside.html ('k') | LayoutTests/fast/forms/input-text-drag-down.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698