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

Unified Diff: components/security_interstitials/core/browser/resources/interstitial_webview_quiet.html

Issue 2854263003: Add quiet safe browsing interstitial for WebView (Closed)
Patch Set: Common CSS changes Created 3 years, 8 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: components/security_interstitials/core/browser/resources/interstitial_webview_quiet.html
diff --git a/components/security_interstitials/core/browser/resources/interstitial_webview_quiet.html b/components/security_interstitials/core/browser/resources/interstitial_webview_quiet.html
new file mode 100644
index 0000000000000000000000000000000000000000..029cb4ee8809257a4bf48dbc3827f071fb096a1b
--- /dev/null
+++ b/components/security_interstitials/core/browser/resources/interstitial_webview_quiet.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<html i18n-values="dir:textdirection;lang:language">
+<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="interstitial_common.css">
+ <link rel="stylesheet" href="interstitial_webview_quiet.css">
+ <script src="../../../../../ui/webui/resources/js/util.js"></script>
+ // <script src="interstitial_webview_quiet.js"></script>
felt 2017/05/05 04:35:01 Why the // ?
edwardjung 2017/05/08 16:27:33 I'll remove the details to a new CL
+</head>
+<body id="body">
+ <div class="interstitial-wrapper">
+ <div id="main-content">
+ <div class="icon"></div>
+ <div id="main-message">
+ <h1>
+ <span i18n-content="heading"></span>
+ <a id="details-button" i18n-content="openDetails"></a>
+ </h1>
+ </div>
+ </div>
+ <div id="details" class="hidden">
+ <p i18n-values=".innerHTML:explanationParagraph"></p>
+ <button i18n-content="closeDetails" id="hide-details-button"></button>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698