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

Side by Side Diff: chrome/browser/resources/ssl/blocking.html

Issue 437113002: Delete the old SSL interstitial and Finch trial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing IDS_FLAGS_SSL_INTERSTITIAL strings Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/ssl/blocking.css ('k') | chrome/browser/resources/ssl/blocking.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textDirection">
3 <head>
4 <meta name="viewport" content="width=device-width, initial-scale=1.0,
5 maximum-scale=1.0, user-scalable=no">
6 <meta charset="utf-8">
7 <title i18n-content="title"></title>
8 <link rel="stylesheet" href="../../../renderer/resources/neterror.css">
9 <link rel="stylesheet" href="blocking.css">
10 <script src="../../../../ui/webui/resources/js/util.js"></script>
11 <script src="../../../renderer/resources/neterror.js"></script>
12 <script src="ssl_errors_common.js"></script>
13 <script src="blocking.js"></script>
14 </head>
15 <body>
16 <div id="main-frame-error">
17 <div id="box">
18 <div id="content-top">
19 <h1>
20 <div>
21 <img class="icon" id="icon-lock">
22 </div>
23 <span i18n-content="headline"></span>
24 </h1>
25 <p i18n-values=".innerHTML:message" class="explanation-par"></p>
26 <div id="buttons">
27 <button id="reload-button" i18n-content="reloadMsg"
28 class="blue-button text-button"></button>
29 <button id="more-less-button" i18n-content="more"
30 class="text-button"></button>
31 </div>
32 </div>
33 <div id="help-box-outer" class="hidden">
34 <div id="help-box-inner">
35 <div class="ssl-help-box-inner">
36 <h2 i18n-content="moreTitle"></h2>
37 <p i18n-values=".innerHTML:moreMessage"></p>
38 </div>
39 <div class="ssl-help-box-inner">
40 <h2 i18n-content="techTitle"></h2>
41 <p>
42 <span i18n-content="failure"></span><br>
43 <span i18n-content="errorType"></span><br>
44 <span i18n-content="subject"></span><br>
45 <span i18n-content="issuer"></span><br>
46 <span i18n-content="fingerprint"></span>
47 </p>
48 </div>
49 </div>
50 </div>
51 </div>
52 </div>
53 </body>
54 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ssl/blocking.css ('k') | chrome/browser/resources/ssl/blocking.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698