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

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

Issue 1268353005: [DevTools] Support JQuery event listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
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 3832 matching lines...) Expand 10 before | Expand all | Expand 10 after
3843 "description": "DOM breakpoint type." 3843 "description": "DOM breakpoint type."
3844 }, 3844 },
3845 { 3845 {
3846 "id": "EventListener", 3846 "id": "EventListener",
3847 "type": "object", 3847 "type": "object",
3848 "description": "Object event listener.", 3848 "description": "Object event listener.",
3849 "properties": [ 3849 "properties": [
3850 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 3850 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
3851 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 3851 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
3852 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 3852 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
3853 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." } 3853 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." },
3854 { "name": "handlerType", "type": "string", "enum": ["general ", "frameworksResolved", "frameworksInternal"], "optional": true, "description": "Type of event listener handler."}
yurys 2015/08/13 23:49:07 hidden: true Normal, FrameworkInternal, CalledByF
kozy 2015/08/14 17:07:03 Done.
3854 ], 3855 ],
3855 "hidden": true 3856 "hidden": true
3856 } 3857 }
3857 ], 3858 ],
3858 "commands": [ 3859 "commands": [
3859 { 3860 {
3860 "name": "setDOMBreakpoint", 3861 "name": "setDOMBreakpoint",
3861 "parameters": [ 3862 "parameters": [
3862 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to set breakpoint on." }, 3863 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to set breakpoint on." },
3863 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the operation to stop upon." } 3864 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the operation to stop upon." }
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
5105 ], 5106 ],
5106 "returns": [ 5107 "returns": [
5107 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5108 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5108 ], 5109 ],
5109 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5110 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5110 "hidden": true 5111 "hidden": true
5111 } 5112 }
5112 ] 5113 ]
5113 }] 5114 }]
5114 } 5115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698