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

Side by Side Diff: Source/devtools/protocol.json

Issue 1042853004: [DevTools] Event Listeners Sidebar shows window listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/devtools/front_end/sdk/DOMModel.js ('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
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after
2125 "description": "DOM interaction is implemented in terms of mirro r objects that represent the actual DOM nodes. DOMNode is a base node mirror typ e." 2125 "description": "DOM interaction is implemented in terms of mirro r objects that represent the actual DOM nodes. DOMNode is a base node mirror typ e."
2126 }, 2126 },
2127 { 2127 {
2128 "id": "EventListener", 2128 "id": "EventListener",
2129 "type": "object", 2129 "type": "object",
2130 "hidden": true, 2130 "hidden": true,
2131 "properties": [ 2131 "properties": [
2132 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 2132 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
2133 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 2133 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
2134 { "name": "isAttribute", "type": "boolean", "description": " <code>EventListener</code>'s isAttribute." }, 2134 { "name": "isAttribute", "type": "boolean", "description": " <code>EventListener</code>'s isAttribute." },
2135 { "name": "nodeId", "$ref": "NodeId", "description": "Target <code>DOMNode</code> id." }, 2135 { "name": "nodeId", "$ref": "NodeId", "optional": true, "des cription": "If present contains target <code>DOMNode</code> id otherwise target is window." },
pfeldman 2015/03/30 14:36:20 Why would it be in DOM domain? For example, it mig
kozy 2015/03/31 20:09:15 I suppose that supporting it for workers should be
2136 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 2136 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
2137 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." } 2137 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." }
2138 ], 2138 ],
2139 "description": "DOM interaction is implemented in terms of mirro r objects that represent the actual DOM nodes. DOMNode is a base node mirror typ e." 2139 "description": "DOM interaction is implemented in terms of mirro r objects that represent the actual DOM nodes. DOMNode is a base node mirror typ e."
2140 }, 2140 },
2141 { 2141 {
2142 "id": "RGBA", 2142 "id": "RGBA",
2143 "type": "object", 2143 "type": "object",
2144 "properties": [ 2144 "properties": [
2145 { "name": "r", "type": "integer", "description": "The red co mponent, in the [0-255] range." }, 2145 { "name": "r", "type": "integer", "description": "The red co mponent, in the [0-255] range." },
(...skipping 2939 matching lines...) Expand 10 before | Expand all | Expand 10 after
5085 ], 5085 ],
5086 "returns": [ 5086 "returns": [
5087 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5087 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5088 ], 5088 ],
5089 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5089 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5090 "hidden": true 5090 "hidden": true
5091 } 5091 }
5092 ] 5092 ]
5093 }] 5093 }]
5094 } 5094 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/DOMModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698