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

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

Issue 1142283004: Implement a Hit Test Cache. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix comments from tdresser Created 5 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
OLDNEW
(Empty)
1 Ensure hit test cache works in correct scenarios of scrolling, dom and style cha nges.
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 PASS successfullyParsed is true
10
11 TEST COMPLETE
12 Hit test main div
13 ---------------------
14 PASS document.elementFromPoint(60,60) is internals.elementFromPointNoCache(docum ent, 60, 60)
15 PASS hitTestCountDelta() is 2
16 PASS hitTestCacheHitsDelta() is 0
17 PASS document.elementFromPoint(60,60) is internals.elementFromPointNoCache(docum ent, 60, 60)
18 PASS hitTestCountDelta() is 2
19 PASS hitTestCacheHitsDelta() is 1
20
21 Hit test fixed div after scroll
22 ---------------------
23 PASS document.elementFromPoint(12,12) is internals.elementFromPointNoCache(docum ent, 12, 12)
24 PASS hitTestCountDelta() is 2
25 PASS hitTestCacheHitsDelta() is 0
26 PASS document.elementFromPoint(10,60) is internals.elementFromPointNoCache(docum ent, 10, 60)
27 PASS hitTestCountDelta() is 2
28 PASS hitTestCacheHitsDelta() is 0
29 PASS document.elementFromPoint(12,12) is internals.elementFromPointNoCache(docum ent, 12, 12)
30 PASS hitTestCountDelta() is 2
31 PASS hitTestCacheHitsDelta() is 0
32
33 Hit test after style change
34 ---------------------
35 PASS document.elementFromPoint(12,12) is internals.elementFromPointNoCache(docum ent, 12, 12)
36 PASS hitTestCountDelta() is 2
37 PASS hitTestCacheHitsDelta() is 0
38 PASS document.elementFromPoint(12,12) is internals.elementFromPointNoCache(docum ent, 12, 12)
39 PASS hitTestCountDelta() is 2
40 PASS hitTestCacheHitsDelta() is 0
41
42 Hit test after dom manipulation
43 ---------------------
44 PASS document.elementFromPoint(12,12) is internals.elementFromPointNoCache(docum ent, 12, 12)
45 PASS hitTestCountDelta() is 2
46 PASS hitTestCacheHitsDelta() is 0
47 PASS document.elementFromPoint(12,12) is internals.elementFromPointNoCache(docum ent, 12, 12)
48 PASS hitTestCountDelta() is 2
49 PASS hitTestCacheHitsDelta() is 0
50 PASS successfullyParsed is true
51
52 TEST COMPLETE
53
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698