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

Side by Side Diff: LayoutTests/fast/events/touch/gesture/gesture-tap-frame-scrolled-expected.txt

Issue 641063003: Pass correct client coordinates for mouse events synthesized from a GestureTap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments Created 6 years, 2 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 1
2 Verifies that a tap occuring in a scrolled iframe has the correct co-ordinates 2 Verifies that a tap occuring in a scrolled iframe has the correct co-ordinates
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 6
7 Sending GestureTapDown to 25,19 7 Sending GestureTapDown to 30,27
8 Sending GestureShowPress 8 Sending GestureShowPress
9 Sending GestureTap 9 Sending GestureTap
10 Received mousemove in child frame 10 Received mousemove in child frame
11 PASS event.screenX is point.x 11 PASS event.screenX is pointInWindow.x
12 PASS event.screenY is point.y 12 PASS event.screenY is pointInWindow.y
13 PASS event.clientX is 50 / 2 13 PASS event.clientX is pointInFrame.x
14 PASS event.clientY is 50 / 2 + 7 14 PASS event.clientY is pointInFrame.y
15 PASS event.pageX is pointInFrame.x + frameScrollOffset.x
16 PASS event.pageY is pointInFrame.y + frameScrollOffset.y
15 Received mousedown in child frame 17 Received mousedown in child frame
16 PASS event.screenX is point.x 18 PASS event.screenX is pointInWindow.x
17 PASS event.screenY is point.y 19 PASS event.screenY is pointInWindow.y
18 PASS event.clientX is 50 / 2 20 PASS event.clientX is pointInFrame.x
19 PASS event.clientY is 50 / 2 + 7 21 PASS event.clientY is pointInFrame.y
22 PASS event.pageX is pointInFrame.x + frameScrollOffset.x
23 PASS event.pageY is pointInFrame.y + frameScrollOffset.y
20 Received mouseup in child frame 24 Received mouseup in child frame
21 PASS event.screenX is point.x 25 PASS event.screenX is pointInWindow.x
22 PASS event.screenY is point.y 26 PASS event.screenY is pointInWindow.y
23 PASS event.clientX is 50 / 2 27 PASS event.clientX is pointInFrame.x
24 PASS event.clientY is 50 / 2 + 7 28 PASS event.clientY is pointInFrame.y
29 PASS event.pageX is pointInFrame.x + frameScrollOffset.x
30 PASS event.pageY is pointInFrame.y + frameScrollOffset.y
25 Received click in child frame 31 Received click in child frame
26 PASS event.screenX is point.x 32 PASS event.screenX is pointInWindow.x
27 PASS event.screenY is point.y 33 PASS event.screenY is pointInWindow.y
28 PASS event.clientX is 50 / 2 34 PASS event.clientX is pointInFrame.x
29 PASS event.clientY is 50 / 2 + 7 35 PASS event.clientY is pointInFrame.y
36 PASS event.pageX is pointInFrame.x + frameScrollOffset.x
37 PASS event.pageY is pointInFrame.y + frameScrollOffset.y
30 PASS eventReceived.mousemove is true 38 PASS eventReceived.mousemove is true
31 PASS eventReceived.mousedown is true 39 PASS eventReceived.mousedown is true
32 PASS eventReceived.mouseup is true 40 PASS eventReceived.mouseup is true
33 PASS eventReceived.click is true 41 PASS eventReceived.click is true
34 PASS successfullyParsed is true 42 PASS successfullyParsed is true
35 43
36 TEST COMPLETE 44 TEST COMPLETE
37 45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698