OLD | NEW |
---|---|
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 Loading... | |
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": "nodeHighlightedInOverlay", | |
dgozman
2015/10/13 01:42:54
We don't mention overlay in DOM domain. Let's call
sergeyv
2015/10/13 21:24:18
Done.
| |
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 Loading... | |
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 } |
OLD | NEW |