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

Side by Side Diff: chrome/browser/resources/safe_browsing_phishing_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: Removed self-closing <img> tags 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 <script> 108 <script>
109 function sendCommand(cmd) { 109 function sendCommand(cmd) {
110 window.domAutomationController.setAutomationId(1); 110 window.domAutomationController.setAutomationId(1);
111 window.domAutomationController.send(cmd); 111 window.domAutomationController.send(cmd);
112 } 112 }
113 </script> 113 </script>
114 114
115 </head> 115 </head>
116 <body oncontextmenu="return false;"> 116 <body oncontextmenu="return false;">
117 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei ght="100%" alt="background" onmousedown="return false;"></div> 117 <div class="background">
118 <img src="ssl_roadblock_background.png" width="100%" height="100%"
119 alt="background" onmousedown="return false;">
120 </div>
118 <table width="100%" cellspacing="0" cellpadding="0"> 121 <table width="100%" cellspacing="0" cellpadding="0">
119 <td class="cell" valign="middle" align="center"> 122 <td class="cell" valign="middle" align="center">
120 <div class="box"> 123 <div class="box">
121 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Phishing Warning Icon" onmousedown="return false;"></div> 124 <div class="icon">
125 <img src="shared/images/phishing_icon.png" alt="Phishing Warning Icon"
126 onmousedown="return false;">
127 </div>
122 <div class="title" i18n-content="headLine"></div> 128 <div class="title" i18n-content="headLine"></div>
123 <div class="main" i18n-values=".innerHTML:description1"></div> 129 <div class="main" i18n-values=".innerHTML:description1"></div>
124 <div class="main"> 130 <div class="main">
125 <form class="submission"> 131 <form class="submission">
126 <input type="button" class="green" id="back" i18n-values="value:back_b utton" onclick="sendCommand('takeMeBack')"> 132 <button id="back" class="green" i18n-content="back_button"
133 onclick="sendCommand('takeMeBack')"></button>
127 </form> 134 </form>
128 </div> 135 </div>
129 <div class="main"><a href="" i18n-content="description2" onclick="sendComm and('learnMore'); return false;"></a></div> 136 <div class="main">
130 <div class="main"><a href="" onclick="sendCommand('reportError'); return f alse;" onmousedown="return false;" i18n-content="report_error"></a></div> 137 <a href="" i18n-content="description2"
131 <div class="main" i18n-values=".innerHTML:description3"></div> 138 onclick="sendCommand('learnMore'); return false;"></a>
139 </div>
140 <div class="main">
141 <a href="" onclick="sendCommand('reportError'); return false;"
142 onmousedown="return false;" i18n-content="report_error"></a>
143 </div>
144 <div class="main" i18n-values=".innerHTML:description3"
145 jsdisplay="!proceedDisabled"></div>
132 </div> 146 </div>
133 </td> 147 </td>
134 </table> 148 </table>
135 </body> 149 </body>
136 </html> 150 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698