| Index: chrome/browser/resources/ssl/interstitial_v2.js
|
| diff --git a/chrome/browser/resources/ssl/interstitial_v2.js b/chrome/browser/resources/ssl/interstitial_v2.js
|
| index c250196b48d6ef379d7692b15121cd67c1ede6e0..13c4f4ae2ae1580792f0c14d82a3ebd93b1a16e2 100644
|
| --- a/chrome/browser/resources/ssl/interstitial_v2.js
|
| +++ b/chrome/browser/resources/ssl/interstitial_v2.js
|
| @@ -31,7 +31,10 @@ function setupEvents() {
|
| });
|
| }
|
|
|
| - if (!(ssl && overridable)) { // Overridable SSL page doesn't have this link.
|
| + if (ssl && overridable) {
|
| + $('proceed-link').classList.add('small-link');
|
| + } else {
|
| + // Overridable SSL page doesn't have this link.
|
| $('help-link').addEventListener('click', function(event) {
|
| if (ssl)
|
| sendCommand(CMD_HELP);
|
|
|