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

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: Merge with trunk Created 6 years, 6 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
(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
7 PASS successfullyParsed is true
8
9 TEST COMPLETE
10 Event on a simple div
11 ---------------------
12 Initial: 0
13 MouseMove: 1
14 MouseDown: 3
15 MouseUp: 1
16 Wheel: 1
17 TouchStart: 1
18 TouchMove: 0
19 TouchEnd: 0
20 GestureTapDown: 3
21 GestureShowPress: 5
22 GestureTap: 7
23 GestureScrollBegin: 2
24 GestureTapCancel: 2
25 GestureScrollUpdate: 0
26 GestureScrollEnd: 0
27
28 Event over one iframe nested in another
29 ---------------------
30 Initial: 0 0 0
31 MouseMove: 1 1 1
32 MouseDown: 2 2 3
33 MouseUp: 1 1 1
34 Wheel: 1 1 1
35 TouchStart: 1 1 1
36 TouchMove: 0 0 0
37 TouchEnd: 0 0 0
38 GestureTapDown: 5 5 5
39 GestureShowPress: 7 7 7
40 GestureTap: 3 3 7
41 GestureScrollBegin: 4 4 4
42 GestureTapCancel: 2 2 2
43 GestureScrollUpdate: 0 0 0
44 GestureScrollEnd: 0 0 0
45
46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698