Index: Source/devtools/protocol.json |
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
index f93ff09a0dc9845e0fc0337a3cbad082077bca15..0932b6dd4e313a047a0be95c95629a0b7a1c6dec 100644 |
--- a/Source/devtools/protocol.json |
+++ b/Source/devtools/protocol.json |
@@ -4955,5 +4955,40 @@ |
"hidden": true |
} |
] |
+ }, |
+ { |
+ "domain": "Security", |
+ "description": "Security", |
+ "hidden": true, |
+ "types": [ |
+ { |
+ "id": "SecurityState", |
+ "type": "string", |
+ "enum": ["unknown", "http", "insecure", "warning", "secure"], |
+ "description": "The security level of a page or resource." |
+ } |
+ ], |
+ "commands": [ |
+ { |
+ "name": "enable", |
+ "description": "Enables tracking security state changes.", |
+ "handlers": ["browser"] |
+ }, |
+ { |
+ "name": "disable", |
+ "description": "Disables tracking security state changes.", |
+ "handlers": ["browser"] |
+ } |
+ ], |
+ "events": [ |
+ { |
+ "name": "securityStateChanged", |
+ "description": "The security state of the page changed.", |
+ "parameters": [ |
+ { "name": "securityState", "$ref": "SecurityState", "description": "Security state." } |
+ ], |
+ "handlers": ["browser"] |
+ } |
+ ] |
}] |
} |