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

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: Followed edward's suggestions 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="ssl_errors_common.js"></script>
11 <script src="overridable_v2.js"></script>
12 </head>
13 <body il18n-values=".style.fontFamily:fontFamily;.style.fontSize:fontsize">
Bernhard Bauer 2014/05/28 13:17:48 i18n-values.
felt 2014/06/02 17:58:46 No wonder! I thought perhaps the default font on L
14 <div class="interstitial-wrapper">
15 <div class="icon"></div>
16 <div id="main-message">
17 <h1 i18n-content="heading"></h1>
18 <p i18n-values=".innerHTML:primaryParagraph"></p>
19 </div>
20 <div class="nav-wrapper">
21 <button i18n-content="safetyButtonText" id="safety-button"></button>
22 <a href="javascript:void(0)" id="details-button"
23 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

Powered by Google App Engine
This is Rietveld 408576698