Chromium Code Reviews| 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> |