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

Unified Diff: chrome/browser/resources/ssl/roadblock.html

Issue 437113002: Delete the old SSL interstitial and Finch trial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing IDS_FLAGS_SSL_INTERSTITIAL strings Created 6 years, 4 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
« no previous file with comments | « chrome/browser/resources/ssl/interstitial_v2.js ('k') | chrome/browser/resources/ssl/roadblock.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ssl/roadblock.html
diff --git a/chrome/browser/resources/ssl/roadblock.html b/chrome/browser/resources/ssl/roadblock.html
deleted file mode 100644
index af1c1a31fbc834184f23425f0ab2aa52bc6a647c..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/ssl/roadblock.html
+++ /dev/null
@@ -1,98 +0,0 @@
-<!DOCTYPE html>
-<html i18n-values="dir:textdirection">
-<head>
- <meta charset="utf-8">
- <title i18n-content="title"></title>
- <style type="text/css">
-
- html {
- background-color: rgb(252, 195, 59);
- height: 100%;
- }
-
- body {
- font-family: Helvetica, Arial, sans-serif;
- margin: 0;
- }
-
- .box {
- -webkit-box-shadow: 3px 3px 8px #200;
- background-color: white;
- border-radius: 5px;
- color: black;
- font-size: 10pt;
- line-height: 16pt;
- margin: 40px auto auto auto;
- max-width: 800px;
- min-width: 500px;
- padding: 20px;
- position: relative;
- width: 80%;
- }
-
- .main {
- margin: 1em 80px;
- }
-
- .more {
- border-top: 1px solid #ccc;
- margin: 0 80px;
- padding-top: 6px;
- }
-
- .more-info-title {
- margin-left: 5px;
- margin-right: 5px;
- }
-
- .more-link {
- color: #0000FF;
- cursor: pointer;
- text-decoration: underline;
- }
-
- #roadblock-icon {
- background-image: url('images/roadblock.png');
- height: 53px;
- position: absolute;
- width: 64px;
- }
-
- .title {
- color: #660000;
- font-size: 18pt;
- font-weight: bold;
- line-height: 140%;
- margin: 0 77px 6pt;
- }
-
- summary:focus {
- outline: none;
- }
- </style>
- <script src="../../../../ui/webui/resources/js/assert.js"></script>
- <script src="ssl_errors_common.js"></script>
- <script src="roadblock.js"></script>
-</head>
-<body>
- <div class="box">
- <div class="icon" id="roadblock-icon"></div>
- <div class="title" i18n-content="headLine"></div>
- <div class="main" i18n-values=".innerHTML:description;dir:textdirection"></div>
- <div class="main" i18n-values=".innerHTML:reasonForNotProceeding"></div>
- <div class="main">
- <button i18n-content="proceed" id="proceed-button" hidden></button>
- <button i18n-content="exit" id="exit-button"></button>
- </div>
- <details class="more">
- <summary><span class="more-link" i18n-content="moreInfoTitle" id="more-info-title"></span></summary>
- <p i18n-values=".innerHTML:moreInfo1"></p>
- <p i18n-values=".innerHTML:moreInfo2"></p>
- <p i18n-values=".innerHTML:moreInfo3"></p>
- <p i18n-values=".innerHTML:moreInfo4"></p>
- <p i18n-values=".innerHTML:moreInfo5"></p>
- </details>
- </div>
-</table>
-</body>
-</html>
« no previous file with comments | « chrome/browser/resources/ssl/interstitial_v2.js ('k') | chrome/browser/resources/ssl/roadblock.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698