Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(689)

Unified Diff: components/security_interstitials/core/browser/resources/ssl.js

Issue 2412993002: Make PEM debugging section fixed width in the SSL interstitial (Closed)
Patch Set: Embiggen font size Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/security_interstitials/core/browser/resources/ssl.js
diff --git a/components/security_interstitials/core/browser/resources/ssl.js b/components/security_interstitials/core/browser/resources/ssl.js
index 2c1a2b572bd27725d65c0d9959a31cbccf59f333..57d9815710483796469a95cb6af13f85d540ad6d 100644
--- a/components/security_interstitials/core/browser/resources/ssl.js
+++ b/components/security_interstitials/core/browser/resources/ssl.js
@@ -12,7 +12,8 @@ function setupSSLDebuggingInfo() {
appendDebuggingField('Issuer', loadTimeData.getString('issuer'));
appendDebuggingField('Expires on', loadTimeData.getString('expirationDate'));
appendDebuggingField('Current date', loadTimeData.getString('currentDate'));
- appendDebuggingField('PEM encoded chain', loadTimeData.getString('pem'));
+ appendDebuggingField('PEM encoded chain', loadTimeData.getString('pem'),
+ 'debugging-content-pem');
$('error-code').addEventListener('click', toggleDebuggingInfo);
}

Powered by Google App Engine
This is Rietveld 408576698