| OLD | NEW |
| 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 Loading... |
| 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="../security/resources/ssl_roadblock_background
.png" width="100%" height="100%" alt="background" onmousedown="return false;"></
div> | 117 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei
ght="100%" alt="background" onmousedown="return false;"></div> |
| 118 <table width="100%" cellspacing="0" cellpadding="0"> | 118 <table width="100%" cellspacing="0" cellpadding="0"> |
| 119 <td class="cell" valign="middle" align="center"> | 119 <td class="cell" valign="middle" align="center"> |
| 120 <div class="box"> | 120 <div class="box"> |
| 121 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Phishing
Warning Icon" onmousedown="return false;"></div> | 121 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Phishing
Warning Icon" onmousedown="return false;"></div> |
| 122 <div class="title" i18n-content="headLine"></div> | 122 <div class="title" i18n-content="headLine"></div> |
| 123 <div class="main" i18n-values=".innerHTML:description1"></div> | 123 <div class="main" i18n-values=".innerHTML:description1"></div> |
| 124 <div class="main"> | 124 <div class="main"> |
| 125 <form class="submission"> | 125 <form class="submission"> |
| 126 <input type="button" class="green" id="back" i18n-values="value:back_b
utton" onclick="sendCommand('takeMeBack')"> | 126 <input type="button" class="green" id="back" i18n-values="value:back_b
utton" onclick="sendCommand('takeMeBack')"> |
| 127 </form> | 127 </form> |
| 128 </div> | 128 </div> |
| 129 <div class="main"><a href="" i18n-content="description2" onclick="sendComm
and('learnMore'); return false;"></a></div> | 129 <div class="main"><a href="" i18n-content="description2" onclick="sendComm
and('learnMore'); return false;"></a></div> |
| 130 <div class="main"><a href="" onclick="sendCommand('reportError'); return f
alse;" onmousedown="return false;" i18n-content="report_error"></a></div> | 130 <div class="main"><a href="" onclick="sendCommand('reportError'); return f
alse;" onmousedown="return false;" i18n-content="report_error"></a></div> |
| 131 <div class="main" i18n-values=".innerHTML:description3"></div> | 131 <div class="main" i18n-values=".innerHTML:description3"></div> |
| 132 </div> | 132 </div> |
| 133 </td> | 133 </td> |
| 134 </table> | 134 </table> |
| 135 </body> | 135 </body> |
| 136 </html> | 136 </html> |
| OLD | NEW |