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

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

Issue 354613002: Add test to track the number of hit tests on various events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Apply CR feedback 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/fast/events/hit-test-counts.html ('k') | Source/core/rendering/RenderView.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS successfullyParsed is true
7
8 TEST COMPLETE
9 Event on a simple div
10 ---------------------
11 Initial: 0
12 MouseMove: 1
13 MouseDown: 3
14 MouseUp: 1
15 Wheel: 1
16 TouchStart: 1
17 TouchMove: 0
18 TouchEnd: 0
19 GestureTapDown: 3
20 GestureShowPress: 5
21 GestureTap: 7
22 GestureScrollBegin: 2
23 GestureTapCancel: 2
24 GestureScrollUpdate: 0
25 GestureScrollEnd: 0
26
27 Event entirely over one iframe nested in another
28 ---------------------
29 Initial: 0 0 0
30 MouseMove: 1 1 1
31 MouseDown: 2 2 3
32 MouseUp: 1 1 1
33 Wheel: 1 1 1
34 TouchStart: 1 1 1
35 TouchMove: 0 0 0
36 TouchEnd: 0 0 0
37 GestureTapDown: 5 5 5
38 GestureShowPress: 7 7 7
39 GestureTap: 3 3 7
40 GestureScrollBegin: 4 4 4
41 GestureTapCancel: 2 2 2
42 GestureScrollUpdate: 0 0 0
43 GestureScrollEnd: 0 0 0
44
45 Event near boundary of two iframes
46 ---------------------
47 Initial: 0 0 0
48 MouseMove: 1 1 1
49 MouseDown: 2 3 0
50 MouseUp: 1 1 0
51 Wheel: 1 1 0
52 TouchStart: 1 1 0
53 TouchMove: 0 0 0
54 TouchEnd: 0 0 0
55 GestureTapDown: 5 14 50
56 GestureShowPress: 7 19 67
57 GestureTap: 3 7 0
58 GestureScrollBegin: 3 3 0
59 GestureTapCancel: 2 2 0
60 GestureScrollUpdate: 0 0 0
61 GestureScrollEnd: 0 0 0
62
63
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/hit-test-counts.html ('k') | Source/core/rendering/RenderView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698