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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2455613002: Fix index used to join results of DOM.getDocument and CSS.getLayoutTreeAndStyles (Closed)
Patch Set: Created 4 years, 1 month 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": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": 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 2893 matching lines...) Expand 10 before | Expand all | Expand 10 after
2904 { "name": "startCharacterIndex", "type": "integer", "descrip tion": "The starting index in characters, for this post layout textbox substring ." }, 2904 { "name": "startCharacterIndex", "type": "integer", "descrip tion": "The starting index in characters, for this post layout textbox substring ." },
2905 { "name": "numCharacters", "type": "integer", "description": "The number of characters in this post layout textbox substring." } 2905 { "name": "numCharacters", "type": "integer", "description": "The number of characters in this post layout textbox substring." }
2906 ], 2906 ],
2907 "description": "Details of post layout rendered text positions. The exact layout should not be regarded as stable and may change between version s.", 2907 "description": "Details of post layout rendered text positions. The exact layout should not be regarded as stable and may change between version s.",
2908 "experimental": true 2908 "experimental": true
2909 }, 2909 },
2910 { 2910 {
2911 "id": "LayoutTreeNode", 2911 "id": "LayoutTreeNode",
2912 "type": "object", 2912 "type": "object",
2913 "properties": [ 2913 "properties": [
2914 { "name": "backendNodeId", "$ref": "DOM.BackendNodeId", "des cription": "The BackendNodeId of the related DOM node." }, 2914 { "name": "nodeId", "$ref": "DOM.BackendNodeId", "descriptio n": "The id of the related DOM node matching one from DOM.GetDocument." },
dgozman 2016/10/26 17:24:39 I think the $ref should be changed as well.
alex clarke (OOO till 29th) 2016/10/27 10:51:11 Done.
2915 { "name": "boundingBox", "$ref": "DOM.Rect", "description": "The absolute position bounding box." }, 2915 { "name": "boundingBox", "$ref": "DOM.Rect", "description": "The absolute position bounding box." },
2916 { "name": "layoutText", "type": "string", "optional": true, "description": "Contents of the LayoutText if any" }, 2916 { "name": "layoutText", "type": "string", "optional": true, "description": "Contents of the LayoutText if any" },
2917 { "name": "inlineTextNodes", "type": "array", "optional": tr ue, "items": { "$ref": "InlineTextBox" }, "description": "The post layout inline text nodes, if any." }, 2917 { "name": "inlineTextNodes", "type": "array", "optional": tr ue, "items": { "$ref": "InlineTextBox" }, "description": "The post layout inline text nodes, if any." },
2918 { "name": "styleIndex", "type": "integer", "optional": true, "description": "Index into the computedStyles array returned by getLayoutTreeAn dStyles." } 2918 { "name": "styleIndex", "type": "integer", "optional": true, "description": "Index into the computedStyles array returned by getLayoutTreeAn dStyles." }
2919 ], 2919 ],
2920 "description": "Details of an element in the DOM tree with a Lay outObject.", 2920 "description": "Details of an element in the DOM tree with a Lay outObject.",
2921 "experimental": true 2921 "experimental": true
2922 }, 2922 },
2923 { 2923 {
2924 "id": "ComputedStyle", 2924 "id": "ComputedStyle",
(...skipping 1674 matching lines...) Expand 10 before | Expand all | Expand 10 after
4599 "description": "Informs that port was successfully bound and got a specified connection id.", 4599 "description": "Informs that port was successfully bound and got a specified connection id.",
4600 "parameters": [ 4600 "parameters": [
4601 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4601 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4602 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4602 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4603 ], 4603 ],
4604 "handlers": ["browser"] 4604 "handlers": ["browser"]
4605 } 4605 }
4606 ] 4606 ]
4607 }] 4607 }]
4608 } 4608 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698