| Index: Source/devtools/protocol.json
|
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
|
| index 9378033393aa9cf47102fed80dea1bd642a49b1a..d1782620ae5cf59b5029efe33d8b8333b44cf787 100644
|
| --- a/Source/devtools/protocol.json
|
| +++ b/Source/devtools/protocol.json
|
| @@ -1916,11 +1916,23 @@
|
| { "name": "border", "$ref": "Quad", "description": "Border box" },
|
| { "name": "margin", "$ref": "Quad", "description": "Margin box" },
|
| { "name": "width", "type": "integer", "description": "Node width" },
|
| - { "name": "height", "type": "integer", "description": "Node height" }
|
| + { "name": "height", "type": "integer", "description": "Node height" },
|
| + { "name": "shapeOutside", "$ref": "ShapeOutsideInfo", "optional": true, "description": "Shape outside coordinates" }
|
| ],
|
| "description": "Box model."
|
| },
|
| {
|
| + "id": "ShapeOutsideInfo",
|
| + "type": "object",
|
| + "hidden": true,
|
| + "properties": [
|
| + { "name": "bounds", "$ref": "Quad", "description": "Shape bounds" },
|
| + { "name": "shape", "type": "array", "items": { "type": "any"}, "description": "Shape coordinate details" },
|
| + { "name": "marginShape", "type": "array", "items": { "type": "any"}, "description": "Margin shape bounds" }
|
| + ],
|
| + "description": "CSS Shape Outside details."
|
| + },
|
| + {
|
| "id": "Rect",
|
| "type": "object",
|
| "hidden": true,
|
|
|