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

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

Issue 1149713006: [DevTools] Removed DOMAgent.getEventListenerForNode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@extract-event-listeners-tree-outline
Patch Set: Created 5 years, 7 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 2323 matching lines...) Expand 10 before | Expand all | Expand 10 after
2334 }, 2334 },
2335 { 2335 {
2336 "name": "removeAttribute", 2336 "name": "removeAttribute",
2337 "parameters": [ 2337 "parameters": [
2338 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the element to remove attribute from." }, 2338 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the element to remove attribute from." },
2339 { "name": "name", "type": "string", "description": "Name of the attribute to remove." } 2339 { "name": "name", "type": "string", "description": "Name of the attribute to remove." }
2340 ], 2340 ],
2341 "description": "Removes attribute with given name from an elemen t with given id." 2341 "description": "Removes attribute with given name from an elemen t with given id."
2342 }, 2342 },
2343 { 2343 {
2344 "name": "getEventListenersForNode",
2345 "parameters": [
2346 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get listeners for." },
2347 { "name": "objectGroup", "type": "string", "optional": true, "description": "Symbolic group name for handler value. Handler value is not ret urned without this parameter specified." }
2348 ],
2349 "returns": [
2350 { "name": "listeners", "type": "array", "items": { "$ref": " EventListener" }, "description": "Array of relevant listeners." }
yurys 2015/05/21 15:20:45 EventListener type definition should be removed fr
kozy 2015/05/22 10:57:21 Done.
2351 ],
2352 "description": "Returns event listeners relevant to the node.",
2353 "hidden": true
2354 },
2355 {
2356 "name": "getOuterHTML", 2344 "name": "getOuterHTML",
2357 "parameters": [ 2345 "parameters": [
2358 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get markup for." } 2346 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get markup for." }
2359 ], 2347 ],
2360 "returns": [ 2348 "returns": [
2361 { "name": "outerHTML", "type": "string", "description": "Out er HTML markup." } 2349 { "name": "outerHTML", "type": "string", "description": "Out er HTML markup." }
2362 ], 2350 ],
2363 "description": "Returns node's HTML markup." 2351 "description": "Returns node's HTML markup."
2364 }, 2352 },
2365 { 2353 {
(...skipping 2610 matching lines...) Expand 10 before | Expand all | Expand 10 after
4976 ], 4964 ],
4977 "returns": [ 4965 "returns": [
4978 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4966 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4979 ], 4967 ],
4980 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4968 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4981 "hidden": true 4969 "hidden": true
4982 } 4970 }
4983 ] 4971 ]
4984 }] 4972 }]
4985 } 4973 }
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