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

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

Issue 10855260: Safe Browsing malware interstitial redesign field trial. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile warning Created 8 years, 4 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
new file mode 100644
index 0000000000000000000000000000000000000000..56892c9ae2f2f052f4592a291a579b7de9988c0b
--- /dev/null
+++ b/chrome/browser/resources/safe_browsing/malware_block_v2.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html id="template-root" i18n-values="dir:textdirection">
+<head>
+ <meta charset="utf-8">
+ <title i18n-content="title"></title>
+ <link rel="stylesheet" href="malware_block_v2.css">
+ <script src="../shared/js/util.js"></script>
+ <script src="malware_block_v2.js"></script>
+</head>
+<body>
+ <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 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">
+ <span i18n-content="description3"></span>
+ <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>
+
+ <hr>
+
+ <footer>
+ <a id="see-more-link" class="float" href="#">
+ <span id="see-more-text" i18n-content="seeMore"></span>
+ <span id="see-less-text" i18n-content="seeLess" hidden></span>
+ </a>
+ <div class="checkbox" jsdisplay="displaycheckbox">
+ <label>
+ <input id="check-report" type="checkbox"
+ jsvalues=".checked:boxchecked">
+ <span i18n-values=".innerHTML:confirm_text"></span>
+ </label>
+ </div>
+ </footer>
+ </div>
+ </td>
+ </table>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698