| Index: Source/devtools/protocol.json
|
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
|
| index a416fc447e1c9073b6b8c7c98149cb8d92c31d2c..354239a6a9a18dba68c64556e3b78a56566ff3c5 100644
|
| --- a/Source/devtools/protocol.json
|
| +++ b/Source/devtools/protocol.json
|
| @@ -3844,6 +3844,15 @@
|
| "description": "Unique snapshot identifier."
|
| },
|
| {
|
| + "id": "ScrollRect",
|
| + "type": "object",
|
| + "description": "Rectangle where scrolling happens on the main thread.",
|
| + "properties": [
|
| + { "name": "rect", "$ref": "DOM.Rect", "description": "Rectangle itself." },
|
| + { "name": "type", "type": "string", "enum": ["RepaintsOnScroll", "TouchEventHandler", "WheelEventHandler"], "description": "Reason for rectangle to force scrolling on the main thread" }
|
| + ]
|
| + },
|
| + {
|
| "id": "Layer",
|
| "type": "object",
|
| "description": "Information about a compositing layer.",
|
| @@ -3860,7 +3869,8 @@
|
| { "name": "anchorY", "type": "number", "optional": true, "description": "Transform anchor point Y, absent if no transform specified" },
|
| { "name": "anchorZ", "type": "number", "optional": true, "description": "Transform anchor point Z, absent if no transform specified" },
|
| { "name": "paintCount", "type": "integer", "description": "Indicates how many time this layer has painted." },
|
| - { "name": "invisible", "type": "boolean", "optional": true, "description": "Set if layer is not visible." }
|
| + { "name": "invisible", "type": "boolean", "optional": true, "description": "Set if layer is not visible." },
|
| + { "name": "scrollRects", "type": "array", "items": { "$ref": "ScrollRect"}, "optional": true, "description": "Rectangles scrolling on main thread only."}
|
| ]
|
| },
|
| {
|
|
|