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

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

Issue 1403853002: Devtools: DOM inspection follows inspect cursor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 5 years, 2 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 2902 matching lines...) Expand 10 before | Expand all | Expand 10 after
2913 "hidden": true 2913 "hidden": true
2914 }, 2914 },
2915 { 2915 {
2916 "name": "distributedNodesUpdated", 2916 "name": "distributedNodesUpdated",
2917 "parameters": [ 2917 "parameters": [
2918 { "name": "insertionPointId", "$ref": "NodeId", "description ": "Insertion point where distrubuted nodes were updated." }, 2918 { "name": "insertionPointId", "$ref": "NodeId", "description ": "Insertion point where distrubuted nodes were updated." },
2919 { "name": "distributedNodes", "type": "array", "items": { "$ ref": "BackendNode" }, "description": "Distributed nodes for given insertion poi nt." } 2919 { "name": "distributedNodes", "type": "array", "items": { "$ ref": "BackendNode" }, "description": "Distributed nodes for given insertion poi nt." }
2920 ], 2920 ],
2921 "description": "Called when distrubution is changed.", 2921 "description": "Called when distrubution is changed.",
2922 "hidden": true 2922 "hidden": true
2923 },
2924 {
2925 "name": "nodeHighlightRequested",
2926 "parameters": [
2927 {"name": "nodeId", "$ref": "NodeId"}
2928 ],
2929 "hidden": true
2923 } 2930 }
2924 ] 2931 ]
2925 }, 2932 },
2926 { 2933 {
2927 "domain": "CSS", 2934 "domain": "CSS",
2928 "hidden": true, 2935 "hidden": true,
2929 "description": "This domain exposes CSS read/write operations. All CSS o bjects (stylesheets, rules, and styles) have an associated <code>id</code> used in subsequent operations on the related object. Each object type has a specific <code>id</code> structure, and those are not interchangeable between objects of different kinds. CSS objects can be loaded using the <code>get*ForNode()</code> calls (which accept a DOM node id). A client can also discover all the existing stylesheets with the <code>getAllStyleSheets()</code> method (or keeping track o f the <code>styleSheetAdded</code>/<code>styleSheetRemoved</code> events) and su bsequently load the required stylesheet contents using the <code>getStyleSheet[T ext]()</code> methods.", 2936 "description": "This domain exposes CSS read/write operations. All CSS o bjects (stylesheets, rules, and styles) have an associated <code>id</code> used in subsequent operations on the related object. Each object type has a specific <code>id</code> structure, and those are not interchangeable between objects of different kinds. CSS objects can be loaded using the <code>get*ForNode()</code> calls (which accept a DOM node id). A client can also discover all the existing stylesheets with the <code>getAllStyleSheets()</code> method (or keeping track o f the <code>styleSheetAdded</code>/<code>styleSheetRemoved</code> events) and su bsequently load the required stylesheet contents using the <code>getStyleSheet[T ext]()</code> methods.",
2930 "types": [ 2937 "types": [
2931 { 2938 {
2932 "id": "StyleSheetId", 2939 "id": "StyleSheetId",
(...skipping 2366 matching lines...) Expand 10 before | Expand all | Expand 10 after
5299 ], 5306 ],
5300 "returns": [ 5307 "returns": [
5301 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5308 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5302 ], 5309 ],
5303 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5310 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5304 "hidden": true 5311 "hidden": true
5305 } 5312 }
5306 ] 5313 ]
5307 }] 5314 }]
5308 } 5315 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/DOMModel.js ('k') | third_party/WebKit/Source/web/InspectorOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698