| 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 a96834de5db7e5efed5a21243c0c2666b587398a..2248895b83db66c37ff85ba0efd88d2bd0dd3b3f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
|
| @@ -865,8 +865,7 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
|
| var table = new WebInspector.SecurityDetailsTable();
|
| connectionSection.appendChild(table.element());
|
| table.addRow("Protocol", originState.securityDetails.protocol);
|
| - if (originState.securityDetails.keyExchange)
|
| - table.addRow("Key Exchange", originState.securityDetails.keyExchange);
|
| + table.addRow("Key Exchange", originState.securityDetails.keyExchange);
|
| if (originState.securityDetails.keyExchangeGroup)
|
| table.addRow("Key Exchange Group", originState.securityDetails.keyExchangeGroup);
|
| table.addRow("Cipher", originState.securityDetails.cipher + (originState.securityDetails.mac ? " with " + originState.securityDetails.mac : ""));
|
|
|