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

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

Powered by Google App Engine
This is Rietveld 408576698