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

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

Issue 8856010: Remove the wording that suggests it is possible to proceed after fatal SSL error. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/ssl/ssl_blocking_page.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/ssl/ssl_blocking_page.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698