| 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 d4421424d10881a3da18992ade69f5798072a1be..06ab02196c0bf58a8c3ef53e2a6b8bd6903b275c 100644
|
| --- a/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| +++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json
|
| @@ -747,6 +747,21 @@
|
| "handlers": ["browser"]
|
| },
|
| {
|
| + "name": "setVisualTransformOverride",
|
| + "description": "Overrides the visible area of the page in the frame. In effect, moves the specified area of the page into the top-left corner of the frame.",
|
| + "parameters": [
|
| + { "name": "x", "type": "number", "description": "X coordinate of top-left corner of the area (CSS pixels)." },
|
| + { "name": "y", "type": "number", "description": "Y coordinate of top-left corner of the area (CSS pixels)." },
|
| + { "name": "width", "type": "number", "description": "Width of the area (CSS pixels)." },
|
| + { "name": "height", "type": "number", "description": "Height of the area (CSS pixels)." },
|
| + { "name": "scale", "type": "number", "optional": true, "description": "Scale to apply to the selected area (default 1.0)." }
|
| + ]
|
| + },
|
| + {
|
| + "name": "clearVisualTransformOverride",
|
| + "description": "Clears any active visual transform override."
|
| + },
|
| + {
|
| "name": "resetPageScaleFactor",
|
| "description": "Requests that page scale factor is reset to initial values."
|
| },
|
|
|