Chromium Code Reviews| 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..f85f05b75727b69c2d405b6dce1c66e63b9260ca 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" |
| + jsdisplay="!isPhishing && isMainFrame" |
| src="images/malware_icon_v2.png" alt="" /> |
| - <img id="subresource-icon" class="float" jsdisplay="!isMainFrame" |
| + <img id="subresource-icon" class="float" |
| + jsdisplay="!isPhishing && !isMainFrame" |
| src="images/subresource_icon.png" alt="" /> |
| + <img id="phishing-icon" class="float" 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,7 @@ |
| <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> |
|
Dan Beam
2012/09/13 04:54:26
nit: 80 cols
mattm
2012/09/13 20:12:07
Done.
|
| </span> |
| <span id="proceed-span" class="advanced" hidden> |
| <a id="proceed" href="#" i18n-content="proceed"></a> |