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