Chromium Code Reviews| Index: Source/devtools/protocol.json |
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
| index 9378033393aa9cf47102fed80dea1bd642a49b1a..e7b7b86f2383247ff92760721de00426ac3dd76e 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 co-ordinates" } |
| ], |
| "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" }, |
|
pfeldman
2014/05/02 10:49:23
coordinate
Habib Virji
2014/05/02 11:11:28
Ok will update.
Habib Virji
2014/05/02 11:38:52
Done.
|
| + { "name": "marginShape", "type": "array", "items": { "type": "any"}, "description": "Margin shape bounds" } |
| + ], |
| + "description": "CSS Shape Outside details." |
| + }, |
| + { |
| "id": "Rect", |
| "type": "object", |
| "hidden": true, |