Chromium Code Reviews| Index: third_party/WebKit/Source/core/inspector/browser_protocol.json |
| diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
| index 6527abc46147dfce17a799ed161709ebaff09425..c67f958a7726ed94f5ea9c0da24f4cdb3e75efe2 100644 |
| --- a/third_party/WebKit/Source/core/inspector/browser_protocol.json |
| +++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
| @@ -2525,7 +2525,8 @@ |
| "name": "getNodeForLocation", |
| "parameters": [ |
| { "name": "x", "type": "integer", "description": "X coordinate." }, |
| - { "name": "y", "type": "integer", "description": "Y coordinate." } |
| + { "name": "y", "type": "integer", "description": "Y coordinate." }, |
| + { "name": "includeUserAgentShadowDOM", "type": "boolean", "optional": true, "description": "False to skip to the nearest non-UA shadow root ancestor (default: true)." } |
|
pfeldman
2017/03/22 01:11:02
You should make it false by default, it is fine if
|
| ], |
| "returns": [ |
| { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node at given coordinates." } |