| OLD | NEW |
| 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 4937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4948 "parameters": [ | 4948 "parameters": [ |
| 4949 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID
of node to get accessibility node for." } | 4949 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID
of node to get accessibility node for." } |
| 4950 ], | 4950 ], |
| 4951 "returns": [ | 4951 "returns": [ |
| 4952 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } | 4952 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } |
| 4953 ], | 4953 ], |
| 4954 "description": "Fetches the accessibility node for this DOM node
, if it exists.", | 4954 "description": "Fetches the accessibility node for this DOM node
, if it exists.", |
| 4955 "hidden": true | 4955 "hidden": true |
| 4956 } | 4956 } |
| 4957 ] | 4957 ] |
| 4958 }, |
| 4959 { |
| 4960 "domain": "Security", |
| 4961 "description": "Security", |
| 4962 "hidden": true, |
| 4963 "types": [ |
| 4964 { |
| 4965 "id": "SecurityState", |
| 4966 "type": "string", |
| 4967 "enum": ["unknown", "http", "insecure", "warning", "secure"], |
| 4968 "description": "The security level of a page or resource." |
| 4969 } |
| 4970 ], |
| 4971 "commands": [ |
| 4972 { |
| 4973 "name": "enable", |
| 4974 "description": "Enables tracking security state changes.", |
| 4975 "handlers": ["browser"] |
| 4976 }, |
| 4977 { |
| 4978 "name": "disable", |
| 4979 "description": "Disables tracking security state changes.", |
| 4980 "handlers": ["browser"] |
| 4981 } |
| 4982 ], |
| 4983 "events": [ |
| 4984 { |
| 4985 "name": "securityStateChanged", |
| 4986 "description": "The security state of the page changed.", |
| 4987 "parameters": [ |
| 4988 { "name": "securityState", "$ref": "SecurityState", "descrip
tion": "Security state." } |
| 4989 ], |
| 4990 "handlers": ["browser"] |
| 4991 } |
| 4992 ] |
| 4958 }] | 4993 }] |
| 4959 } | 4994 } |
| OLD | NEW |