Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/events/hit-test-counts-expected.txt

Issue 490783003: Reduce hit test on ShowPress by moving event targeting to WebViewImpl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove unnecessary headers Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/page/EventHandler.h » ('j') | Source/core/page/EventHandler.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Count how many hit tests are required for various event scenarios. Hit tests can be expensive and it's often tempting to add more. These values should only ever be changed to go down, not up. 1 Count how many hit tests are required for various event scenarios. Hit tests can be expensive and it's often tempting to add more. These values should only ever be changed to go down, not up.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS successfullyParsed is true 6 PASS successfullyParsed is true
7 7
8 TEST COMPLETE 8 TEST COMPLETE
9 Event on a simple div 9 Event on a simple div
10 --------------------- 10 ---------------------
11 Initial: 0 11 Initial: 0
12 MouseMove: 1 12 MouseMove: 1
13 MouseDown: 3 13 MouseDown: 3
14 MouseUp: 1 14 MouseUp: 1
15 Wheel: 1 15 Wheel: 1
16 TouchStart: 1 16 TouchStart: 1
17 TouchMove: 0 17 TouchMove: 0
18 TouchEnd: 0 18 TouchEnd: 0
19 GestureTapDown: 1 19 GestureTapDown: 1
20 GestureShowPress: 2 20 GestureShowPress: 1
Rick Byers 2014/08/22 14:49:57 woot! Thank you! Sorry I need to add one back (h
21 GestureTap: 7 21 GestureTap: 7
22 GestureScrollBegin: 1 22 GestureScrollBegin: 1
23 GestureTapCancel: 1 23 GestureTapCancel: 1
24 GestureScrollUpdate: 0 24 GestureScrollUpdate: 0
25 GestureScrollEnd: 0 25 GestureScrollEnd: 0
26 26
27 Event entirely over one iframe nested in another 27 Event entirely over one iframe nested in another
28 --------------------- 28 ---------------------
29 Initial: 0 0 0 29 Initial: 0 0 0
30 MouseMove: 1 1 1 30 MouseMove: 1 1 1
31 MouseDown: 2 2 3 31 MouseDown: 2 2 3
32 MouseUp: 1 1 1 32 MouseUp: 1 1 1
33 Wheel: 1 1 1 33 Wheel: 1 1 1
34 TouchStart: 1 1 1 34 TouchStart: 1 1 1
35 TouchMove: 0 0 0 35 TouchMove: 0 0 0
36 TouchEnd: 0 0 0 36 TouchEnd: 0 0 0
37 GestureTapDown: 1 1 1 37 GestureTapDown: 1 1 1
38 GestureShowPress: 2 2 2 38 GestureShowPress: 1 1 1
39 GestureTap: 3 3 7 39 GestureTap: 3 3 7
40 GestureScrollBegin: 1 1 1 40 GestureScrollBegin: 1 1 1
41 GestureTapCancel: 1 1 1 41 GestureTapCancel: 1 1 1
42 GestureScrollUpdate: 0 0 0 42 GestureScrollUpdate: 0 0 0
43 GestureScrollEnd: 0 0 0 43 GestureScrollEnd: 0 0 0
44 44
45 Event near boundary of two iframes 45 Event near boundary of two iframes
46 --------------------- 46 ---------------------
47 Initial: 0 0 0 47 Initial: 0 0 0
48 MouseMove: 1 1 1 48 MouseMove: 1 1 1
49 MouseDown: 2 3 0 49 MouseDown: 2 3 0
50 MouseUp: 1 1 0 50 MouseUp: 1 1 0
51 Wheel: 1 1 0 51 Wheel: 1 1 0
52 TouchStart: 1 1 0 52 TouchStart: 1 1 0
53 TouchMove: 0 0 0 53 TouchMove: 0 0 0
54 TouchEnd: 0 0 0 54 TouchEnd: 0 0 0
55 GestureTapDown: 1 4 16 55 GestureTapDown: 1 4 16
56 GestureShowPress: 2 8 32 56 GestureShowPress: 1 4 16
57 GestureTap: 3 12 32 57 GestureTap: 3 12 33
58 GestureScrollBegin: 1 1 0 58 GestureScrollBegin: 1 1 0
59 GestureTapCancel: 1 1 0 59 GestureTapCancel: 1 1 0
60 GestureScrollUpdate: 0 0 0 60 GestureScrollUpdate: 0 0 0
61 GestureScrollEnd: 0 0 0 61 GestureScrollEnd: 0 0 0
62 62
63 63
OLDNEW
« no previous file with comments | « no previous file | Source/core/page/EventHandler.h » ('j') | Source/core/page/EventHandler.cpp » ('J')

Powered by Google App Engine