| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 <script> | 100 <script> |
| 101 document.addEventListener('DOMContentLoaded', setDirectionSensitiveImages); | 101 document.addEventListener('DOMContentLoaded', setDirectionSensitiveImages); |
| 102 </script> | 102 </script> |
| 103 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei
ght="100%" alt="background" onmousedown="return false;"></div> | 103 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei
ght="100%" alt="background" onmousedown="return false;"></div> |
| 104 <table width="100%" cellspacing="0" cellpadding="0"> | 104 <table width="100%" cellspacing="0" cellpadding="0"> |
| 105 <td class="cell" valign="middle" align="center"> | 105 <td class="cell" valign="middle" align="center"> |
| 106 <div class="box"> | 106 <div class="box"> |
| 107 <div class="icon"><img src="ssl_roadblock_icon.png" alt="SSL Error Icon" o
nmousedown="return false;"></div> | 107 <div class="icon"><img src="ssl_roadblock_icon.png" alt="SSL Error Icon" o
nmousedown="return false;"></div> |
| 108 <div class="title" i18n-content="headLine"></div> | 108 <div class="title" i18n-content="headLine"></div> |
| 109 <div class="main" i18n-values=".innerHTML:description"></div> | 109 <div class="main" i18n-values=".innerHTML:description"></div> |
| 110 <div class="main" i18n-values=".innerHTML:shouldNotProceed"></div> |
| 110 <div class="main"> | 111 <div class="main"> |
| 111 <form class="submission"> | 112 <form class="submission"> |
| 112 <input type="button" i18n-values="value:proceed" name="proceed" class=
"proceedbutton" onClick="sendCommand(1);"> | 113 <input type="button" i18n-values="value:proceed" name="proceed" class=
"proceedbutton" onClick="sendCommand(1);"> |
| 113 <input type="button" i18n-values="value:exit" name="exit" onClick="sen
dCommand(0);"> | 114 <input type="button" i18n-values="value:exit" name="exit" onClick="sen
dCommand(0);"> |
| 114 </form> | 115 </form> |
| 115 </div> | 116 </div> |
| 116 <div class="example" id="more_info_short"> | 117 <div class="example" id="more_info_short"> |
| 117 <!-- | 118 <!-- |
| 118 // The img madness here is due to the inlining of the html file | 119 // The img madness here is due to the inlining of the html file |
| 119 // resources. The script that does this looks for subresources like | 120 // resources. The script that does this looks for subresources like |
| (...skipping 10 matching lines...) Expand all Loading... |
| 130 <p i18n-values=".innerHTML:moreInfo1"></p> | 131 <p i18n-values=".innerHTML:moreInfo1"></p> |
| 131 <p i18n-values=".innerHTML:moreInfo2"></p> | 132 <p i18n-values=".innerHTML:moreInfo2"></p> |
| 132 <p i18n-values=".innerHTML:moreInfo3"></p> | 133 <p i18n-values=".innerHTML:moreInfo3"></p> |
| 133 <p i18n-values=".innerHTML:moreInfo4"></p> | 134 <p i18n-values=".innerHTML:moreInfo4"></p> |
| 134 <p i18n-values=".innerHTML:moreInfo5"></p> | 135 <p i18n-values=".innerHTML:moreInfo5"></p> |
| 135 </div> | 136 </div> |
| 136 </td> | 137 </td> |
| 137 </table> | 138 </table> |
| 138 </body> | 139 </body> |
| 139 </html> | 140 </html> |
| OLD | NEW |