Chromium Code Reviews| Index: Source/devtools/protocol.json |
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
| index 9378033393aa9cf47102fed80dea1bd642a49b1a..c3d56da4dba05b05ff2a4dee50e8f2ad512ea393 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", "description": "Shape outside co-ordinates" } |
|
pfeldman
2014/05/02 07:21:54
"optional": true
Habib Virji
2014/05/02 09:39:22
Done.
|
| ], |
| "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 co-ordinate details" }, |
| + { "name": "marginShape", "type": "array", "items": { "type": "any"}, "description": "Margin shape bounds" } |
| + ], |
| + "description": "CSS Shape Outside details." |
| + }, |
| + { |
| "id": "Rect", |
| "type": "object", |
| "hidden": true, |