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

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

Issue 10694037: Add a policy to disable proceeding through the Safe Browsing interstitials. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased, addressed comments, fixed jstemplate root in multi_threat_block page, added new browser ac… Created 8 years, 5 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
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 <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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 if (checkBox.checked) { 136 if (checkBox.checked) {
137 sendCommand('doReport'); 137 sendCommand('doReport');
138 } else { 138 } else {
139 sendCommand('dontReport'); 139 sendCommand('dontReport');
140 } 140 }
141 } 141 }
142 </script> 142 </script>
143 143
144 </head> 144 </head>
145 <body oncontextmenu="return false;"> 145 <body oncontextmenu="return false;">
146 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei ght="100%" alt="background" onmousedown="return false;"/></div> 146 <div class="background">
147 <img src="ssl_roadblock_background.png" width="100%" height="100%"
148 alt="background" onmousedown="return false;"/>
James Hawkins 2012/07/03 16:56:47 nit: Sorry I didn't spot this before. Don't close
Joao da Silva 2012/07/05 09:49:52 Done.
149 </div>
147 <table width="100%" cellspacing="0" cellpadding="0"> 150 <table width="100%" cellspacing="0" cellpadding="0">
148 <td class="cell" valign="middle" align="center"> 151 <td class="cell" valign="middle" align="center">
149 <div class="box"> 152 <div class="box">
150 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Malware Icon" onmousedown="return false;"/></div> 153 <div class="icon">
154 <img src="shared/images/phishing_icon.png" alt="Malware Icon"
155 onmousedown="return false;"/>
156 </div>
151 <div class="title" i18n-content="headLine"></div> 157 <div class="title" i18n-content="headLine"></div>
152 <div class="main" i18n-values=".innerHTML:description1"></div> 158 <div class="main" i18n-values=".innerHTML:description1"></div>
153 <div class="main" i18n-values=".innerHTML:description2"></div> 159 <div class="main" i18n-values=".innerHTML:description2"></div>
154 <div class="main" i18n-values=".innerHTML:description5" id="detailinfo" st yle="display:block"></div> 160 <div id="detailinfo" class="main" i18n-values=".innerHTML:description5">
161 </div>
155 162
156 <div class="main"> 163 <div class="main">
157 <form class="submission"> 164 <form class="submission">
158 <input type="button" class="green" id="back" i18n-values="value:back_b utton" onclick="sendCommand('takeMeBack')"> 165 <button id="back" class="green" i18n-content="back_button"
166 onclick="sendCommand('takeMeBack')"></button>
159 <br> 167 <br>
160 </form> 168 </form>
161 </div> 169 </div>
162 170
163 <div class="main" i18n-values=".innerHTML:description3"></div> 171 <div class="main" i18n-values=".innerHTML:description3"
172 jsdisplay="!proceedDisabled"></div>
164 173
165 <div class="main footer" jsdisplay="displaycheckbox"> 174 <div class="main footer" jsdisplay="displaycheckbox">
166 <label class="checkbox" for="checkreport"> 175 <label class="checkbox" for="checkreport">
167 <input name="checked" id="checkreport" type="checkbox" 176 <input id="checkreport" name="checked" type="checkbox"
168 jsvalues=".checked:boxchecked" onclick="savePreference()"> 177 jsvalues=".checked:boxchecked" onclick="savePreference()">
169 <span i18n-values=".innerHTML:confirm_text"></span> 178 <span i18n-values=".innerHTML:confirm_text"></span>
170 </label> 179 </label>
171 </div> 180 </div>
172 181
173 </div> 182 </div>
174 </td> 183 </td>
175 </table> 184 </table>
176 </body> 185 </body>
177 </html> 186 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698