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

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

Issue 10694107: Revert 145523 - Add a policy to disable proceeding through the Safe Browsing interstitials. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 | 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 <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"> 146 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei ght="100%" alt="background" onmousedown="return false;"/></div>
147 <img src="ssl_roadblock_background.png" width="100%" height="100%"
148 alt="background" onmousedown="return false;">
149 </div>
150 <table width="100%" cellspacing="0" cellpadding="0"> 147 <table width="100%" cellspacing="0" cellpadding="0">
151 <td class="cell" valign="middle" align="center"> 148 <td class="cell" valign="middle" align="center">
152 <div class="box"> 149 <div class="box">
153 <div class="icon"> 150 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Malware Icon" onmousedown="return false;"/></div>
154 <img src="shared/images/phishing_icon.png" alt="Malware Icon"
155 onmousedown="return false;">
156 </div>
157 <div class="title" i18n-content="headLine"></div> 151 <div class="title" i18n-content="headLine"></div>
158 <div class="main" i18n-values=".innerHTML:description1"></div> 152 <div class="main" i18n-values=".innerHTML:description1"></div>
159 <div class="main" i18n-values=".innerHTML:description2"></div> 153 <div class="main" i18n-values=".innerHTML:description2"></div>
160 <div id="detailinfo" class="main" i18n-values=".innerHTML:description5"> 154 <div class="main" i18n-values=".innerHTML:description5" id="detailinfo" st yle="display:block"></div>
161 </div>
162 155
163 <div class="main"> 156 <div class="main">
164 <form class="submission"> 157 <form class="submission">
165 <button id="back" class="green" i18n-content="back_button" 158 <input type="button" class="green" id="back" i18n-values="value:back_b utton" onclick="sendCommand('takeMeBack')">
166 onclick="sendCommand('takeMeBack')"></button>
167 <br> 159 <br>
168 </form> 160 </form>
169 </div> 161 </div>
170 162
171 <div class="main" i18n-values=".innerHTML:description3" 163 <div class="main" i18n-values=".innerHTML:description3"></div>
172 jsdisplay="!proceedDisabled"></div>
173 164
174 <div class="main footer" jsdisplay="displaycheckbox"> 165 <div class="main footer" jsdisplay="displaycheckbox">
175 <label class="checkbox" for="checkreport"> 166 <label class="checkbox" for="checkreport">
176 <input id="checkreport" name="checked" type="checkbox" 167 <input name="checked" id="checkreport" type="checkbox"
177 jsvalues=".checked:boxchecked" onclick="savePreference()"> 168 jsvalues=".checked:boxchecked" onclick="savePreference()">
178 <span i18n-values=".innerHTML:confirm_text"></span> 169 <span i18n-values=".innerHTML:confirm_text"></span>
179 </label> 170 </label>
180 </div> 171 </div>
181 172
182 </div> 173 </div>
183 </td> 174 </td>
184 </table> 175 </table>
185 </body> 176 </body>
186 </html> 177 </html>
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.cc ('k') | chrome/browser/resources/safe_browsing_multiple_threat_block.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698