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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/dom-statistics-expected.txt

Issue 2566493004: [DevTools] removed inspector/dom-statistics.html-disabled (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/dom-statistics.html-disabled ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 Tests that per document Node count is correctly calculated by the Memory agent. Bug 74100. Bug 74298.
3
4 result = [
5 {
6 "title": "div",
7 "size": 1,
8 "nodeCount": [
9 {
10 "nodeName": "div",
11 "count": 1
12 }
13 ],
14 "listenerCount": [
15 {
16 "type": "mouseover",
17 "count": 1
18 },
19 {
20 "type": "click",
21 "count": 1
22 }
23 ]
24 },
25 {
26 "title": "div",
27 "size": 1,
28 "nodeCount": [
29 {
30 "nodeName": "div",
31 "count": 1
32 }
33 ],
34 "listenerCount": [
35 {
36 "type": "mouseover",
37 "count": 1
38 },
39 {
40 "type": "click",
41 "count": 1
42 }
43 ]
44 },
45 {
46 "title": "#document",
47 "documentURI": "...about:blank",
48 "size": 3,
49 "nodeCount": [
50 {
51 "nodeName": "body",
52 "count": 1
53 },
54 {
55 "nodeName": "head",
56 "count": 1
57 },
58 {
59 "nodeName": "html",
60 "count": 1
61 }
62 ],
63 "listenerCount": []
64 },
65 {
66 "title": "#document",
67 "documentURI": "...dom-statistics.html",
68 "size": 23,
69 "nodeCount": [
70 {
71 "nodeName": "#text",
72 "count": 13
73 },
74 {
75 "nodeName": "a",
76 "count": 2
77 },
78 {
79 "nodeName": "body",
80 "count": 1
81 },
82 {
83 "nodeName": "div",
84 "count": 1
85 },
86 {
87 "nodeName": "head",
88 "count": 1
89 },
90 {
91 "nodeName": "html",
92 "count": 1
93 },
94 {
95 "nodeName": "iframe",
96 "count": 1
97 },
98 {
99 "nodeName": "p",
100 "count": 1
101 },
102 {
103 "nodeName": "script",
104 "count": 2
105 }
106 ],
107 "listenerCount": [
108 {
109 "type": "click",
110 "count": 2
111 },
112 {
113 "type": "mouseover",
114 "count": 1
115 }
116 ]
117 }
118 ]
119
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/dom-statistics.html-disabled ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698