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

Unified Diff: chrome/browser/resources/safe_browsing/malware_block_v2.html

Issue 10928173: Safe Browsing phishing interstitial redesign. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 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/safe_browsing/malware_block_v2.html
diff --git a/chrome/browser/resources/safe_browsing/malware_block_v2.html b/chrome/browser/resources/safe_browsing/malware_block_v2.html
index 32ef56472042d373dbebae5aba193d9858466a42..869f05b8b903ee6f6136547aadb185f9c271a764 100644
--- a/chrome/browser/resources/safe_browsing/malware_block_v2.html
+++ b/chrome/browser/resources/safe_browsing/malware_block_v2.html
@@ -15,10 +15,14 @@
<img id="logo" alt="">
</div>
- <img id="malware-icon" class="float" jsdisplay="isMainFrame"
+ <img id="malware-icon" class="float icon"
+ jsdisplay="!isPhishing && isMainFrame"
src="images/malware_icon_v2.png" alt="" />
- <img id="subresource-icon" class="float" jsdisplay="!isMainFrame"
+ <img id="subresource-icon" class="float icon"
+ jsdisplay="!isPhishing && !isMainFrame"
src="images/subresource_icon.png" alt="" />
+ <img id="phishing-icon" class="float icon" jsdisplay="isPhishing"
+ src="images/phishing_icon.png" alt="" />
<div id=headline i18n-content="headLine"></div>
<div class="main" i18n-content="description1"></div>
@@ -36,6 +40,8 @@
<span id="see-more-contents" hidden>
<span class="advanced">
<a id="show-diagnostic-link" href="#" i18n-content="details"></a>
+ <a id="report-error-link" href="#"
+ i18n-content="report_error"></a>
</span>
<span id="proceed-span" class="advanced" hidden>
<a id="proceed" href="#" i18n-content="proceed"></a>

Powered by Google App Engine
This is Rietveld 408576698