| Index: third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
|
| index 616e1996a78d168d55ce6b981ccceb5afe3e069e..11dafd2c13d97e9836074a84e9fc012c588583d8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
|
| @@ -828,6 +828,8 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
|
| connectionSection.appendChild(table.element());
|
| table.addRow("Protocol", originState.securityDetails.protocol);
|
| table.addRow("Key Exchange", originState.securityDetails.keyExchange);
|
| + if (originState.securityDetails.keyExchangeGroup)
|
| + table.addRow("Key Exchange Group", originState.securityDetails.keyExchangeGroup);
|
| table.addRow("Cipher Suite", originState.securityDetails.cipher + (originState.securityDetails.mac ? " with " + originState.securityDetails.mac : ""));
|
|
|
| // Create the certificate section outside the callback, so that it appears in the right place.
|
|
|