| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |