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

Unified Diff: LayoutTests/fast/events/touch/gesture/focus-selectionchange-on-tap-expected.txt

Issue 353893002: Remove mouse-related hit tests during a GestureTap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Improve focus test Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/events/touch/gesture/focus-selectionchange-on-tap-expected.txt
diff --git a/LayoutTests/fast/events/touch/gesture/focus-selectionchange-on-tap-expected.txt b/LayoutTests/fast/events/touch/gesture/focus-selectionchange-on-tap-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9c70202d86bd1bfad39bf32c470f2ce54c36ede9
--- /dev/null
+++ b/LayoutTests/fast/events/touch/gesture/focus-selectionchange-on-tap-expected.txt
@@ -0,0 +1,43 @@
+Verifies that a GestureTap triggers focus and selectionchange if and only if mousedown isn't prevented.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Tap on input field but consume mousedown
+Sending GestureTapDown
+Sending GestureShowPress
+Sending GestureTap
+Received mouseover on target
+Received mousemove on target
+Received mousedown on target
+Received mouseup on target
+Received click on target
+PASS tapHandled is true
+PASS isFocused(target) is false
+
+Tap on input field without consuming mousedown
+Sending GestureTapDown
+Sending GestureShowPress
+Sending GestureTap
+Received mousemove on target
+Received mousedown on target
+Received mouseup on target
+Received click on target
+PASS tapHandled is false
+Received selectionchange on #document anchor=BODY[2]
+PASS isFocused(target) is true
+
+Tap elsewhere to clear focus
+Sending GestureTapDown
+Sending GestureShowPress
+Sending GestureTap
+Received mouseout on target
+PASS tapHandled is false
+Received selectionchange on #document anchor=#text[0]
+Received selectionchange on #document anchor=#text[0]
+PASS isFocused(target) is false
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Powered by Google App Engine
This is Rietveld 408576698