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

Side by Side Diff: chrome/browser/resources/safe_browsing_multiple_threat_block.html

Issue 14752005: Finch experiments on SSL, malware, and phishing interstitials (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Browsertest trybot fix Created 7 years, 7 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"> 2 <html id="template_root">
3 <head> 3 <head>
4 <title i18n-content="title"></title> 4 <title i18n-content="title"></title>
5 <style> 5 <style>
6 body { 6 body {
7 background-color:#500; 7 background-color:#500;
8 font-family:Helvetica,Arial,sans-serif; 8 font-family:Helvetica,Arial,sans-serif;
9 margin:0px; 9 margin:0px;
10 } 10 }
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 var isMalware = event.currentTarget.getAttribute('chromiumIsMalware'); 109 var isMalware = event.currentTarget.getAttribute('chromiumIsMalware');
110 var cmd = isMalware ? 'showDiagnostic:' : 'reportError:'; 110 var cmd = isMalware ? 'showDiagnostic:' : 'reportError:';
111 sendCommand(cmd + id); 111 sendCommand(cmd + id);
112 return false; 112 return false;
113 } 113 }
114 </script> 114 </script>
115 </head> 115 </head>
116 116
117 <body oncontextmenu="return false;"> 117 <body oncontextmenu="return false;">
118 <div class="background"> 118 <div class="background">
119 <img src="ssl_roadblock_background.png" width="100%" height="100%" 119 <img src="ssl/roadblock_background.png" width="100%" height="100%"
120 alt="background" onmousedown="return false;"> 120 alt="background" onmousedown="return false;">
121 </div> 121 </div>
122 <table width="100%" cellspacing="0" cellpadding="0"> 122 <table width="100%" cellspacing="0" cellpadding="0">
123 <td class="cell" valign="middle" align="center"> 123 <td class="cell" valign="middle" align="center">
124 <div class="box"> 124 <div class="box">
125 <div class="icon"> 125 <div class="icon">
126 <img src="../../../ui/webui/resources/images/phishing_icon.png" alt="Mal ware Icon" 126 <img src="../../../ui/webui/resources/images/phishing_icon.png" alt="Mal ware Icon"
127 onmousedown="return false;"> 127 onmousedown="return false;">
128 </div> 128 </div>
129 <div class="title" i18n-content="headLine"></div> 129 <div class="title" i18n-content="headLine"></div>
(...skipping 27 matching lines...) Expand all
157 onclick="proceed();"></button><br> 157 onclick="proceed();"></button><br>
158 <button name="back_button" i18n-content="back_button" 158 <button name="back_button" i18n-content="back_button"
159 onclick="takeMeBack()"></button> 159 onclick="takeMeBack()"></button>
160 </form> 160 </form>
161 </div> 161 </div>
162 </div> 162 </div>
163 </td> 163 </td>
164 </table> 164 </table>
165 </body> 165 </body>
166 </html> 166 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698