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

Unified Diff: chrome/browser/resources/ssl/interstitial_v2.html

Issue 319193002: Update the malware interstitial to have the new layout (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased again Created 6 years, 6 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
« no previous file with comments | « chrome/browser/resources/ssl/interstitial_v2.css ('k') | chrome/browser/resources/ssl/interstitial_v2.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d1a06cd72f160819216f06f9ad4d5d4ab24133ce..01e188b8687a7cd0368152ba05bf6ca6bdb2297a 100644
--- a/chrome/browser/resources/ssl/interstitial_v2.html
+++ b/chrome/browser/resources/ssl/interstitial_v2.html
@@ -9,22 +9,28 @@
<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>
<script src="interstitial_v2.js"></script>
</head>
-<body i18n-values=".style.fontFamily:fontfamily">
+<body id="body" i18n-values=".style.fontFamily:fontfamily">
<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>
<p id="error-code" class="hidden"></p>
</div>
</div>
« no previous file with comments | « chrome/browser/resources/ssl/interstitial_v2.css ('k') | chrome/browser/resources/ssl/interstitial_v2.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698