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

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: Rebased 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 3874 matching lines...) Expand 10 before | Expand all | Expand 10 after
3885 "description": "DOM breakpoint type." 3885 "description": "DOM breakpoint type."
3886 }, 3886 },
3887 { 3887 {
3888 "id": "EventListener", 3888 "id": "EventListener",
3889 "type": "object", 3889 "type": "object",
3890 "description": "Object event listener.", 3890 "description": "Object event listener.",
3891 "properties": [ 3891 "properties": [
3892 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 3892 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
3893 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 3893 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
3894 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 3894 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." },
3895 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." } 3895 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." },
3896 { "name": "listenerType", "type": "string", "enum": ["normal ", "frameworkUser", "frameworkInternal"], "optional": true, "hidden": true,"desc ription": "Type of event listener handler."}
3896 ], 3897 ],
3897 "hidden": true 3898 "hidden": true
3898 } 3899 }
3899 ], 3900 ],
3900 "commands": [ 3901 "commands": [
3901 { 3902 {
3902 "name": "setDOMBreakpoint", 3903 "name": "setDOMBreakpoint",
3903 "parameters": [ 3904 "parameters": [
3904 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to set breakpoint on." }, 3905 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id entifier of the node to set breakpoint on." },
3905 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the operation to stop upon." } 3906 { "name": "type", "$ref": "DOMBreakpointType", "description" : "Type of the operation to stop upon." }
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
5147 ], 5148 ],
5148 "returns": [ 5149 "returns": [
5149 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5150 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5150 ], 5151 ],
5151 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5152 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5152 "hidden": true 5153 "hidden": true
5153 } 5154 }
5154 ] 5155 ]
5155 }] 5156 }]
5156 } 5157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698