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

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

Issue 1309403002: Show closed/open shadow root in inspector (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test expectation for breadcrumb Created 5 years, 3 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 | Annotate | Revision Log
« 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 2238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2249 "scrollbar-track-piece", 2249 "scrollbar-track-piece",
2250 "scrollbar-corner", 2250 "scrollbar-corner",
2251 "resizer", 2251 "resizer",
2252 "input-list-button" 2252 "input-list-button"
2253 ], 2253 ],
2254 "description": "Pseudo element type." 2254 "description": "Pseudo element type."
2255 }, 2255 },
2256 { 2256 {
2257 "id": "ShadowRootType", 2257 "id": "ShadowRootType",
2258 "type": "string", 2258 "type": "string",
2259 "enum": ["user-agent", "author"], 2259 "enum": ["user-agent", "open", "closed"],
2260 "description": "Shadow root type." 2260 "description": "Shadow root type."
2261 }, 2261 },
2262 { 2262 {
2263 "id": "Node", 2263 "id": "Node",
2264 "type": "object", 2264 "type": "object",
2265 "properties": [ 2265 "properties": [
2266 { "name": "nodeId", "$ref": "NodeId", "description": "Node i dentifier that is passed into the rest of the DOM messages as the <code>nodeId</ code>. Backend will only push node with given <code>id</code> once. It is aware of all requested nodes and will only fire DOM events for nodes known to the clie nt." }, 2266 { "name": "nodeId", "$ref": "NodeId", "description": "Node i dentifier that is passed into the rest of the DOM messages as the <code>nodeId</ code>. Backend will only push node with given <code>id</code> once. It is aware of all requested nodes and will only fire DOM events for nodes known to the clie nt." },
2267 { "name": "nodeType", "type": "integer", "description": "<co de>Node</code>'s nodeType." }, 2267 { "name": "nodeType", "type": "integer", "description": "<co de>Node</code>'s nodeType." },
2268 { "name": "nodeName", "type": "string", "description": "<cod e>Node</code>'s nodeName." }, 2268 { "name": "nodeName", "type": "string", "description": "<cod e>Node</code>'s nodeName." },
2269 { "name": "localName", "type": "string", "description": "<co de>Node</code>'s localName." }, 2269 { "name": "localName", "type": "string", "description": "<co de>Node</code>'s localName." },
(...skipping 2901 matching lines...) Expand 10 before | Expand all | Expand 10 after
5171 ], 5171 ],
5172 "returns": [ 5172 "returns": [
5173 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5173 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5174 ], 5174 ],
5175 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5175 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5176 "hidden": true 5176 "hidden": true
5177 } 5177 }
5178 ] 5178 ]
5179 }] 5179 }]
5180 } 5180 }
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