Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Side by Side Diff: Source/devtools/Inspector-1.1.json

Issue 237313003: CSS shapes support in Web Inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review comments Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 1815 matching lines...) Expand 10 before | Expand all | Expand 10 after
1826 { 1826 {
1827 "id": "BoxModel", 1827 "id": "BoxModel",
1828 "type": "object", 1828 "type": "object",
1829 "hidden": true, 1829 "hidden": true,
1830 "properties": [ 1830 "properties": [
1831 { "name": "content", "$ref": "Quad", "description": "Content box" }, 1831 { "name": "content", "$ref": "Quad", "description": "Content box" },
1832 { "name": "padding", "$ref": "Quad", "description": "Padding box" }, 1832 { "name": "padding", "$ref": "Quad", "description": "Padding box" },
1833 { "name": "border", "$ref": "Quad", "description": "Border b ox" }, 1833 { "name": "border", "$ref": "Quad", "description": "Border b ox" },
1834 { "name": "margin", "$ref": "Quad", "description": "Margin b ox" }, 1834 { "name": "margin", "$ref": "Quad", "description": "Margin b ox" },
1835 { "name": "width", "type": "integer", "description": "Node w idth" }, 1835 { "name": "width", "type": "integer", "description": "Node w idth" },
1836 { "name": "height", "type": "integer", "description": "Node height" } 1836 { "name": "height", "type": "integer", "description": "Node height" },
1837 { "name": "shapeOutside", "type": "string", "description": " CSS Shape Outside" }
1837 ], 1838 ],
1838 "description": "Box model." 1839 "description": "Box model."
1839 }, 1840 },
1840 { 1841 {
1841 "id": "Rect", 1842 "id": "Rect",
1842 "type": "object", 1843 "type": "object",
1843 "hidden": true, 1844 "hidden": true,
1844 "properties": [ 1845 "properties": [
1845 { "name": "x", "type": "number", "description": "X coordinat e" }, 1846 { "name": "x", "type": "number", "description": "X coordinat e" },
1846 { "name": "y", "type": "number", "description": "Y coordinat e" }, 1847 { "name": "y", "type": "number", "description": "Y coordinat e" },
(...skipping 2120 matching lines...) Expand 10 before | Expand all | Expand 10 after
3967 "parameters": [ 3968 "parameters": [
3968 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 3969 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
3969 ] 3970 ]
3970 }, 3971 },
3971 { 3972 {
3972 "name": "tracingComplete" 3973 "name": "tracingComplete"
3973 } 3974 }
3974 ] 3975 ]
3975 }] 3976 }]
3976 } 3977 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698