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..50d6abf9ad5ccb5b72ece8655da7105f725e8b20 |
| --- /dev/null |
| +++ b/components/security_interstitials/core/browser/resources/interstitial_webview_quiet.html |
| @@ -0,0 +1,32 @@ |
| +<!doctype html> |
| +<html dir="$i18n{textdirection}" lang="$i18n{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="chrome://resources/css/text_defaults_md.css"> |
| + <link rel="stylesheet" href="interstitial_common.css"> |
| + <link rel="stylesheet" href="interstitial_webview_quiet.css"> |
| + <script src="../../../../../ui/webui/resources/js/util.js"></script> |
| +</head> |
| +<body id="body" jsvalues=".className:is_giant ? 'giant' : ''"> |
|
Dan Beam
2017/05/16 03:37:30
do you need to use jsvalues to do this?
edwardjung
2017/05/16 13:59:10
Removed. Switched to using JS.
|
| + <div class="interstitial-wrapper"> |
| + <div id="main-content"> |
| + <div class="icon"></div> |
| + <div id="main-message"> |
| + <h1> |
| + <span>$i18n{heading}</span> |
| + <a id="details-link">$i18n{openDetails}</a> |
| + </h1> |
| + </div> |
| + </div> |
| + <div id="details" class="hidden"> |
| + <p> |
| + $i18n{explanationParagraph} |
| + <a id="proceed-link">$i18n{proceedLink}</a> |
| + </p> |
| + </div> |
| + </div> |
| +</body> |
| +</html> |