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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/ssl/overridable_v2.html
diff --git a/chrome/browser/resources/ssl/overridable_v2.html b/chrome/browser/resources/ssl/overridable_v2.html
new file mode 100644
index 0000000000000000000000000000000000000000..913c8ff94a58bf8e127b6e1f035dcf65a236a056
--- /dev/null
+++ b/chrome/browser/resources/ssl/overridable_v2.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textDirection">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport"
+ content="initial-scale=1, minimum-scale=1, width=device-width">
+ <title i18n-content="tabTitle"></title>
+ <link rel="stylesheet" href="overridable_v2.css">
+ <script src="../../../../ui/webui/resources/js/util.js"></script>
+ <script src="ssl_errors_common.js"></script>
+ <script src="overridable_v2.js"></script>
+ </head>
+<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
+ <div class="interstitial-wrapper">
+ <div class="icon"></div>
+ <div id="main-message">
+ <h1 i18n-content="heading"></h1>
+ <p i18n-values=".innerHTML:primaryParagraph"></p>
+ </div>
+ <div class="nav-wrapper">
+ <button i18n-content="safetyButtonText" id="safety-button"></button>
+ <a href="javascript:void(0)" id="details-button"
+ i18n-content="openDetails"></a>
+ </div>
+ <div id="details" class="hidden">
+ <p i18n-values=".innerHTML:explanationParagraph"></p>
+ <p i18n-values=".innerHTML:proceedParagraph"></p>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698