Chromium Code Reviews| Index: chrome/browser/resources/ssl/interstitial_v2.html |
| diff --git a/chrome/browser/resources/ssl/interstitial_v2.html b/chrome/browser/resources/ssl/interstitial_v2.html |
| index faaca6a136b1f89410efc48afad9cce77db3a27a..f80158602e971f6b9d166e49e5dfa3d5cedfe1b2 100644 |
| --- a/chrome/browser/resources/ssl/interstitial_v2.html |
| +++ b/chrome/browser/resources/ssl/interstitial_v2.html |
| @@ -9,22 +9,26 @@ |
| <script src="../../../../ui/webui/resources/js/util.js"></script> |
| <script src="../../../../ui/webui/resources/js/load_time_data.js"></script> |
| <script src="ssl_errors_common.js"></script> |
| + <script src="../safe_browsing/safe_browsing_v3.js"></script> |
|
Bernhard Bauer
2014/06/09 10:04:03
The versioning is getting a bit confusing here. Wh
felt
2014/06/09 14:24:09
Yeah, I have some regrets. I started off with V2 b
Bernhard Bauer
2014/06/09 14:45:41
Hrm, ok. Can you at least triple-pinky-promise me
felt
2014/06/09 15:24:02
Triple-pinky-promised. I want to move all of the n
|
| <script src="interstitial_v2.js"></script> |
| </head> |
| -<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| +<body id="body" |
| + i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| <div class="interstitial-wrapper"> |
| - <div class="icon"></div> |
| + <div class="icon" id="icon"></div> |
| <div id="main-message"> |
| <h1 i18n-content="heading"></h1> |
| <p i18n-values=".innerHTML:primaryParagraph"></p> |
| + <p id="second-paragraph" class="hidden"></p> |
| + <p id="third-paragraph" class="hidden"></p> |
| </div> |
| <div class="nav-wrapper"> |
| <button i18n-content="primaryButtonText" id="primary-button"></button> |
| <a href="#" id="details-button" i18n-content="openDetails"></a> |
| </div> |
| <div id="details" class="hidden"> |
| - <p i18n-values=".innerHTML:explanationParagraph"></p> |
| - <p i18n-values=".innerHTML:finalParagraph"></p> |
| + <p id="explanation-paragraph" class="hidden"></p> |
| + <p id="final-paragraph" class="hidden"></p> |
| </div> |
| </div> |
| </body> |