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

Side by Side Diff: Source/devtools/protocol.json

Issue 237313003: CSS shapes support in Web Inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated test to use inspector protocol instead of internals 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 1898 matching lines...) Expand 10 before | Expand all | Expand 10 after
1909 { 1909 {
1910 "id": "BoxModel", 1910 "id": "BoxModel",
1911 "type": "object", 1911 "type": "object",
1912 "hidden": true, 1912 "hidden": true,
1913 "properties": [ 1913 "properties": [
1914 { "name": "content", "$ref": "Quad", "description": "Content box" }, 1914 { "name": "content", "$ref": "Quad", "description": "Content box" },
1915 { "name": "padding", "$ref": "Quad", "description": "Padding box" }, 1915 { "name": "padding", "$ref": "Quad", "description": "Padding box" },
1916 { "name": "border", "$ref": "Quad", "description": "Border b ox" }, 1916 { "name": "border", "$ref": "Quad", "description": "Border b ox" },
1917 { "name": "margin", "$ref": "Quad", "description": "Margin b ox" }, 1917 { "name": "margin", "$ref": "Quad", "description": "Margin b ox" },
1918 { "name": "width", "type": "integer", "description": "Node w idth" }, 1918 { "name": "width", "type": "integer", "description": "Node w idth" },
1919 { "name": "height", "type": "integer", "description": "Node height" } 1919 { "name": "height", "type": "integer", "description": "Node height" },
1920 { "name": "shapeOutside", "type": "string", "description": " CSS Shape Outside" }
1920 ], 1921 ],
1921 "description": "Box model." 1922 "description": "Box model."
1922 }, 1923 },
1923 { 1924 {
1924 "id": "Rect", 1925 "id": "Rect",
1925 "type": "object", 1926 "type": "object",
1926 "hidden": true, 1927 "hidden": true,
1927 "properties": [ 1928 "properties": [
1928 { "name": "x", "type": "number", "description": "X coordinat e" }, 1929 { "name": "x", "type": "number", "description": "X coordinat e" },
1929 { "name": "y", "type": "number", "description": "Y coordinat e" }, 1930 { "name": "y", "type": "number", "description": "Y coordinat e" },
(...skipping 2180 matching lines...) Expand 10 before | Expand all | Expand 10 after
4110 { 4111 {
4111 "name": "dataAvailable", 4112 "name": "dataAvailable",
4112 "parameters": [ 4113 "parameters": [
4113 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4114 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4114 ], 4115 ],
4115 "handlers": ["browser", "frontend"] 4116 "handlers": ["browser", "frontend"]
4116 } 4117 }
4117 ] 4118 ]
4118 }] 4119 }]
4119 } 4120 }
OLDNEW
« Source/core/inspector/InspectorOverlay.cpp ('K') | « Source/devtools/Inspector-1.1.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698