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

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

Issue 10905117: Safebrowsing malware interstitial UI tweaks. (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 56892c9ae2f2f052f4592a291a579b7de9988c0b..32ef56472042d373dbebae5aba193d9858466a42 100644
--- a/chrome/browser/resources/safe_browsing/malware_block_v2.html
+++ b/chrome/browser/resources/safe_browsing/malware_block_v2.html
@@ -7,16 +7,20 @@
<script src="../shared/js/util.js"></script>
<script src="malware_block_v2.js"></script>
</head>
-<body>
+<body i18n-values=".style.fontFamily:fontfamily">
<table width="100%" cellspacing="0" cellpadding="0">
<td class="cell" valign="middle" align="center">
<div class="box">
- <img src="../../../app/theme/%DISTRIBUTION%/product_logo_name_108.png"
- class="logo">
+ <div>
+ <img id="logo" alt="">
+ </div>
+
+ <img id="malware-icon" class="float" jsdisplay="isMainFrame"
+ src="images/malware_icon_v2.png" alt="" />
+ <img id="subresource-icon" class="float" jsdisplay="!isMainFrame"
+ src="images/subresource_icon.png" alt="" />
<div id=headline i18n-content="headLine"></div>
- <img class="float" src="images/malware_icon_v2.jpg"
- width=200 height=200 alt="Malware Icon" />
<div class="main" i18n-content="description1"></div>
<div class="main" i18n-content="description2"></div>
<div class="main">
@@ -24,28 +28,30 @@
<a id="learn-more-link" href="#" i18n-content="learnMore"></a>
</div>
- <div class="main submission">
- <button id="back" i18n-content="back_button"></button>
- </div>
-
<div class="clear"></div>
- <div id="see-more-contents" hidden>
- <div class="dropdown" i18n-values=".innerHTML:description4"></div>
- <div class="dropdown">
- <a id="show-diagnostic-link" href="#" i18n-content="details"
- jsdisplay="displayShowDiagnostic"></a>
- </div>
- </div>
+ <div class="submission">
+ <button id="back" i18n-content="back_button"></button>
- <hr>
+ <span id="see-more-contents" hidden>
+ <span class="advanced">
+ <a id="show-diagnostic-link" href="#" i18n-content="details"></a>
+ </span>
+ <span id="proceed-span" class="advanced" hidden>
+ <a id="proceed" href="#" i18n-content="proceed"></a>
+ </span>
+ </span>
- <footer>
- <a id="see-more-link" class="float" href="#">
+ <a id="see-more-link" class="advanced" href="#">
<span id="see-more-text" i18n-content="seeMore"></span>
- <span id="see-less-text" i18n-content="seeLess" hidden></span>
+ <span id="see-less-text" hidden>«</span>
</a>
- <div class="checkbox" jsdisplay="displaycheckbox">
+ </div>
+
+ <footer jsdisplay="displaycheckbox">
+ <hr>
+
+ <div class="checkbox">
<label>
<input id="check-report" type="checkbox"
jsvalues=".checked:boxchecked">

Powered by Google App Engine
This is Rietveld 408576698