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

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: Renamed command 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
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..c1701d61f59001633ce9e954237e4c90d548da1e 100644
--- a/chrome/browser/resources/ssl/interstitial_v2.html
+++ b/chrome/browser/resources/ssl/interstitial_v2.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html i18n-values="dir:textDirection">
+<html i18n-values="dir:textdirection">
<head>
<meta charset="utf-8">
<meta name="viewport"
@@ -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>
<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>

Powered by Google App Engine
This is Rietveld 408576698