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

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

Issue 294343004: New SSL interstitial (behind Finch flag) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed spurious OVERRIDE Created 6 years, 6 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textDirection">
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport"
6 content="initial-scale=1, minimum-scale=1, width=device-width">
7 <title i18n-content="tabTitle"></title>
8 <link rel="stylesheet" href="overridable_v2.css">
9 <script src="../../../../ui/webui/resources/js/util.js"></script>
10 <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
11 <script src="ssl_errors_common.js"></script>
12 <script src="overridable_v2.js"></script>
13 </head>
14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
15 <div class="interstitial-wrapper">
16 <div class="icon"></div>
17 <div id="main-message">
18 <h1 i18n-content="heading"></h1>
19 <p i18n-values=".innerHTML:primaryParagraph"></p>
20 </div>
21 <div class="nav-wrapper">
22 <button i18n-content="safetyButtonText" id="safety-button"></button>
23 <a href="#" id="details-button" i18n-content="openDetails"></a>
24 </div>
25 <div id="details" class="hidden">
26 <p i18n-values=".innerHTML:explanationParagraph"></p>
27 <p i18n-values=".innerHTML:proceedParagraph"></p>
28 </div>
29 </div>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ssl/overridable_v2.css ('k') | chrome/browser/resources/ssl/overridable_v2.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698