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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html id="template-root" i18n-values="dir:textdirection">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="malware_block_v2.css">
7 <script src="../shared/js/util.js"></script>
8 <script src="malware_block_v2.js"></script>
9 </head>
10 <body>
11 <table width="100%" cellspacing="0" cellpadding="0">
12 <td class="cell" valign="middle" align="center">
13 <div class="box">
14 <img src="../../../app/theme/%DISTRIBUTION%/product_logo_name_108.png"
15 class="logo">
16
17 <div id=headline i18n-content="headLine"></div>
18 <img class="float" src="images/malware_icon_v2.jpg"
19 width=200 height=200 alt="Malware Icon" />
20 <div class="main" i18n-content="description1"></div>
21 <div class="main" i18n-content="description2"></div>
22 <div class="main">
23 <span i18n-content="description3"></span>
24 <a id="learn-more-link" href="#" i18n-content="learnMore"></a>
25 </div>
26
27 <div class="main submission">
28 <button id="back" i18n-content="back_button"></button>
29 </div>
30
31 <div class="clear"></div>
32
33 <div id="see-more-contents" hidden>
34 <div class="dropdown" i18n-values=".innerHTML:description4"></div>
35 <div class="dropdown">
36 <a id="show-diagnostic-link" href="#" i18n-content="details"
37 jsdisplay="displayShowDiagnostic"></a>
38 </div>
39 </div>
40
41 <hr>
42
43 <footer>
44 <a id="see-more-link" class="float" href="#">
45 <span id="see-more-text" i18n-content="seeMore"></span>
46 <span id="see-less-text" i18n-content="seeLess" hidden></span>
47 </a>
48 <div class="checkbox" jsdisplay="displaycheckbox">
49 <label>
50 <input id="check-report" type="checkbox"
51 jsvalues=".checked:boxchecked">
52 <span i18n-values=".innerHTML:confirm_text"></span>
53 </label>
54 </div>
55 </footer>
56 </div>
57 </td>
58 </table>
59 </body>
60 </html>
61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698